/* ==========================================================================
   WhiskyDB Enterprise Marketing Site - Luxury Dark Mode Design System
   ========================================================================== */

:root {
    /* Color Tokens */
    --bg-dark: #08090b;
    --bg-surface: #111318;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --amber-primary: #d9822b;
    --amber-glow: rgba(217, 130, 43, 0.35);
    --gold-highlight: #f3b64c;
    --gold-glow: rgba(243, 182, 76, 0.25);
    
    --success-green: #22c55e;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(243, 182, 76, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* Layout */
    --max-width: 1280px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Background Glowing Orbs */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 130, 43, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
}

.bg-glow-2 {
    top: 45%;
    right: 5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(243, 182, 76, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.text-gold {
    color: var(--gold-highlight);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--gold-highlight) 60%, var(--amber-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

/* Glass Card Utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    margin-top: 24px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-highlight) 0%, var(--amber-primary) 100%);
    color: #08090b;
    box-shadow: 0 8px 24px var(--amber-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--amber-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-highlight);
    border-color: var(--border-gold);
}

.btn-outline:hover {
    background: rgba(243, 182, 76, 0.1);
    border-color: var(--gold-highlight);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a:not([class*="btn"]) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:not([class*="btn"]):hover {
    color: var(--text-main);
}

.nav-btn-secondary {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn-primary {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--gold-highlight);
    color: #08090b;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1f 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(243, 182, 76, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-highlight);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-highlight);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-highlight);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
    font-size: 3.8rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    padding: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(17, 19, 24, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.5);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-top {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: -20px;
    right: -20px;
    animation-delay: 2.5s;
}

.floating-icon {
    font-size: 1.6rem;
}

.floating-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.trend-up {
    color: var(--success-green);
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Sections Common */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Demo Dashboard */
.demo-dashboard {
    padding: 32px;
    border-color: var(--border-gold);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.demo-controls {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr 1.4fr;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
}

.demo-select option {
    background: #111318;
    color: var(--text-main);
}

.demo-slider {
    width: 100%;
    accent-color: var(--gold-highlight);
    cursor: pointer;
}

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover, .filter-pill.active {
    background: var(--gold-glow);
    border-color: var(--gold-highlight);
    color: var(--text-main);
}

.demo-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 0.9rem;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success-green);
    box-shadow: 0 0 10px var(--success-green);
}

/* Spirits Cards Grid */
.spirits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.spirit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.spirit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 182, 76, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.spirit-type-badge {
    background: rgba(217, 130, 43, 0.15);
    color: var(--gold-highlight);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.spirit-age {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.spirit-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.spirit-distillery {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mash-bill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    display: flex;
    margin: 8px 0 4px;
}

.mash-corn { background: #f59e0b; }
.mash-rye { background: #ef4444; }
.mash-malt { background: #3b82f6; }
.mash-wheat { background: #10b981; }

.mash-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.card-meta-row {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    padding-top: 12px;
    border-top: 1px dashed var(--border-subtle);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-val {
    font-weight: 600;
    color: var(--text-main);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
}

.price-val-card {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-highlight);
}

.cask-tag {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.08);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

/* Architecture Grid */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.arch-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.arch-icon {
    font-size: 2.5rem;
}

.arch-card h3 {
    font-size: 1.4rem;
}

.arch-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.arch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.mini-tag {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--gold-highlight);
    border: 1px solid rgba(243, 182, 76, 0.2);
}

.provenance-banner {
    padding: 36px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.prov-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.prov-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.prov-code pre {
    background: #08090b;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #38bdf8;
    overflow-x: auto;
}

/* Pricing Grid */
.pricing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    background: rgba(255,255,255,0.04);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.toggle-label.active {
    color: var(--text-main);
}

.discount-badge {
    background: var(--success-green);
    color: #08090b;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 800;
    margin-left: 6px;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.15);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--gold-highlight);
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--amber-primary);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.popular-tier {
    border-color: var(--gold-highlight);
    box-shadow: 0 0 40px rgba(243, 182, 76, 0.15);
    transform: scale(1.03);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-highlight) 0%, var(--amber-primary) 100%);
    color: #08090b;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.card-header {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.tier-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    height: 44px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 16px;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.tier-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.tier-features li.disabled {
    color: var(--text-dim);
    text-decoration: line-through;
}

.check-icon { color: var(--success-green); font-weight: 800; }
.cross-icon { color: var(--text-dim); font-weight: 800; }

/* Quickstart Showcase */
.code-showcase {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.code-tabs {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 16px;
}

.code-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 24px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.code-tab:hover {
    color: var(--text-main);
}

.code-tab.active {
    color: var(--gold-highlight);
    border-bottom-color: var(--gold-highlight);
}

.copy-btn {
    margin-left: auto;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: rgba(255,255,255,0.15);
}

.code-content {
    padding: 28px;
    background: #08090b;
}

.code-pane {
    display: none;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e2e8f0;
    overflow-x: auto;
}

.code-pane.active {
    display: block;
}

.token-comment { color: #64748b; font-style: italic; }
.token-keyword { color: #f43f5e; }
.token-string { color: #10b981; }
.token-number { color: #f59e0b; }
.token-function { color: #38bdf8; }
.token-class { color: #a855f7; }

/* Footer */
.footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(8, 9, 11, 0.95);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-column h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.link-column a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.link-column a:hover {
    color: var(--gold-highlight);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas, .hero-stats {
        justify-content: center;
    }
    
    .architecture-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-controls {
        grid-template-columns: 1fr 1fr;
    }
    
    .provenance-banner, .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .demo-controls {
        grid-template-columns: 1fr;
    }
    
    .spirits-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
}

/* ==========================================================================
   Contact / Request form
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

.contact-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-select {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text-main);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: var(--text-dim);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--border-gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-select option {
    background: var(--bg-surface);
    color: var(--text-main);
}

.contact-success {
    text-align: center;
    padding: 24px 8px;
}

.contact-success-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-highlight);
    margin-bottom: 14px;
}

.contact-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-success-note a,
.contact-footnote a {
    color: var(--gold-highlight);
    text-decoration: underline;
}

.contact-success .btn {
    margin-top: 10px;
}

.contact-footnote {
    margin-top: 26px;
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-dim);
}
