/* ============================================
   Trump Gold Card - Official Government Style
   ============================================ */

:root {
    /* Gold Palette */
    --gold-primary: #C5A054;
    --gold-light: #D4B86A;
    --gold-dark: #A68A3E;
    --gold-gradient: linear-gradient(135deg, #D4B86A 0%, #C5A054 50%, #A68A3E 100%);

    /* Sunset/Sky Colors */
    --sunset-orange: #E8944A;
    --sunset-pink: #D4728C;
    --sky-blue: #4A7BA8;
    --mountain-dark: #2C3E50;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --gray-light: #F5F5F5;
    --gray-medium: #6B7280;
    --gray-dark: #374151;
    --navy: #1F2937;
    --black: #111827;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   Top Navigation
   ============================================ */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.gov-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.nav-apply-btn {
    background: transparent;
    color: var(--white);
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-apply-btn:hover {
    background: var(--white);
    color: var(--navy);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-right: 16px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn svg {
    transition: transform 0.3s ease;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 140px;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--gray-dark);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown button:hover {
    background: var(--cream);
}

.lang-dropdown button.active {
    background: var(--gold-light);
    color: var(--white);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.3) 0%,
            rgba(0,0,0,0.1) 30%,
            rgba(0,0,0,0) 50%,
            rgba(0,0,0,0.2) 100%
        ),
        linear-gradient(180deg,
            #1a1a2e 0%,
            #16213e 10%,
            #1a1a2e 20%,
            #4a3f35 40%,
            #6d5a48 50%,
            #c9a052 60%,
            #e8b84a 70%,
            #f4c850 75%,
            #e89f4a 85%,
            #d4728c 95%,
            #2c2c3c 100%
        );
    z-index: -2;
}

.mountain-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 600"><path fill="%231a1a2e" d="M0 600V300L200 350L400 280L600 320L800 250L1000 300L1200 270L1440 320V600z"/><path fill="%232d2d42" opacity="0.8" d="M0 600V350L150 380L350 320L550 360L750 300L950 350L1150 310L1350 350L1440 330V600z"/><path fill="%233d3d52" opacity="0.6" d="M0 600V400L100 420L300 380L500 410L700 370L900 400L1100 380L1300 410L1440 390V600z"/></svg>') center bottom/cover no-repeat;
    z-index: -1;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 400;
    line-height: 1;
    color: var(--white);
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.title-line.gold {
    color: var(--gold-light);
    text-shadow: 2px 4px 20px rgba(197, 160, 84, 0.4);
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-subtitle span {
    display: block;
}

.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 16px 48px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(197, 160, 84, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 84, 0.5);
}

.cta-button.light {
    background: var(--white);
    color: var(--gold-dark);
}

.cta-button.center-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
}

/* Gold Card Visual */
.hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.gold-card {
    width: 380px;
    height: 240px;
    background: var(--gold-gradient);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 2px 0 rgba(255,255,255,0.2) inset;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.gold-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.gold-card.small {
    width: 280px;
    height: 176px;
    transform: perspective(1000px) rotateY(10deg) rotateX(-5deg);
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.3) 45%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0.3) 55%,
        transparent 60%
    );
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.card-content {
    position: relative;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.card-eagle {
    font-size: 48px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: auto;
}

.card-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-top: 4px;
}

.card-chip {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #f0d78c 0%, #c9a227 100%);
    border-radius: 6px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3);
}

.card-chip::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.1) 3px,
        rgba(0,0,0,0.1) 6px
    );
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.benefits-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    color: var(--black);
    margin-bottom: 24px;
}

.section-title .gold {
    color: var(--gold-primary);
}

.benefits-tabs {
    display: inline-flex;
    gap: 8px;
    background: var(--gray-light);
    padding: 6px;
    border-radius: 30px;
}

.tab-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-medium);
    cursor: pointer;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--white);
    color: var(--gold-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.benefits-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.benefits-cards .benefit-card {
    max-width: 500px;
    width: 100%;
}

.benefit-card {
    background: var(--cream);
    border: 1px solid rgba(197, 160, 84, 0.2);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 40px rgba(197, 160, 84, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.laurel-icon {
    width: 100%;
    height: 100%;
    color: var(--gold-primary);
}

.benefit-flag {
    width: 40px;
    border-radius: 3px;
}

.benefit-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.benefit-title-row h3 {
    margin-bottom: 0;
}

.coming-soon {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(197, 160, 84, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

.benefit-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.benefit-card .small-text {
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 16px;
    font-style: italic;
}

/* ============================================
   Process Section
   ============================================ */

.process {
    padding: var(--section-padding) 24px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.step {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 20px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.step p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.7;
}

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

.process-tagline h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
}

.process-tagline h2.gold {
    color: var(--gold-primary);
}

.floating-card {
    position: absolute;
    right: -50px;
    bottom: 60px;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}

/* ============================================
   Quotes Section
   ============================================ */

.quotes {
    padding: var(--section-padding) 24px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.quotes-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.quote-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-slide.active {
    opacity: 1;
    position: relative;
}

.quote-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,160,84,0.1) 0%, transparent 50%);
    z-index: -1;
}

blockquote {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 40px;
    text-align: center;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(197,160,84,0.4);
}

.trump-image::before { content: '45'; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.lutnick-image::before { content: 'HL'; font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.noem-image::before { content: 'KN'; font-family: var(--font-display); font-size: 20px; font-weight: 600; }

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-size: 14px;
    color: var(--gray-medium);
}

.quote-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.quote-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-dot.active {
    background: var(--gold-primary);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
    padding: var(--section-padding) 24px;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-light);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-arrow {
    font-size: 24px;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.faq-answer p + p {
    margin-top: 12px;
}

.faq-answer a {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* ============================================
   Pre-Footer
   ============================================ */

.pre-footer {
    padding: 80px 24px;
    background:
        linear-gradient(180deg,
            #f8c547 0%,
            #e8a445 30%,
            #d48040 60%,
            #8b5a3c 100%
        );
    position: relative;
    overflow: hidden;
}

.pre-footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pre-footer h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.eagle-container {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: 300px;
    height: 350px;
    z-index: 1;
}

.eagle-image {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 240"><text x="50%" y="50%" font-size="120" text-anchor="middle" dominant-baseline="middle">🦅</text></svg>') center/contain no-repeat;
    filter: drop-shadow(4px 4px 20px rgba(0,0,0,0.3));
    animation: eagleHover 4s ease-in-out infinite;
}

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

/* ============================================
   Footer
   ============================================ */

.main-footer {
    background: var(--navy);
    padding: 60px 24px 40px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.gold-card-icon {
    width: 50px;
    height: 32px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-content .gov-badge {
    color: rgba(255,255,255,0.8);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--gold-light);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-email {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Apply Page Styles
   ============================================ */

.apply-page {
    min-height: 100vh;
    background: var(--gray-light);
    padding-top: 80px;
}

.apply-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.apply-card {
    background: var(--white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.apply-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

/* Card Selection */
.card-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.card-option {
    padding: 28px 32px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.card-option:hover {
    border-color: var(--gold-light);
    background: var(--cream);
}

.card-option.selected {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(197,160,84,0.05) 0%, rgba(197,160,84,0.1) 100%);
}

.card-option h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.card-option p {
    font-size: 15px;
    color: var(--gray-dark);
}

/* Form Styles */
.application-form {
    display: none;
}

.application-form.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 32px;
}

.form-card-icon {
    width: 60px;
    height: 38px;
    background: var(--gold-gradient);
    border-radius: 6px;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
}

.form-header .form-id {
    margin-left: auto;
    font-size: 13px;
    color: var(--gray-medium);
    background: var(--gray-light);
    padding: 6px 14px;
    border-radius: 4px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-section > p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-section > p a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197,160,84,0.15);
}

.form-group input::placeholder {
    color: var(--gray-medium);
}

.phone-input {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gray-medium);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn.active {
    background: var(--gold-gradient);
    cursor: pointer;
}

.submit-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197,160,84,0.4);
}

/* ============================================
   Privacy Page Styles
   ============================================ */

.privacy-page {
    min-height: 100vh;
    background: var(--gray-light);
    padding-top: 80px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.privacy-content {
    background: var(--white);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.privacy-content h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 50px;
}

.privacy-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.privacy-content strong {
    color: var(--black);
    font-weight: 600;
}

.privacy-content a {
    color: var(--gold-primary);
    text-decoration: underline;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-card {
        margin-top: 40px;
    }

    .gold-card {
        transform: perspective(1000px) rotateY(0deg) rotateX(5deg);
    }

    .benefits-cards {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .floating-card {
        display: none;
    }

    .eagle-container {
        right: 5%;
        width: 200px;
        height: 250px;
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .gov-badge span {
        font-size: 11px;
    }

    .hero {
        padding-top: 100px;
    }

    .title-line {
        font-size: 48px;
    }

    .gold-card {
        width: 300px;
        height: 188px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .phone-input {
        grid-template-columns: 1fr;
    }

    .apply-card,
    .privacy-content {
        padding: 30px 20px;
    }

    blockquote {
        font-size: 22px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 38px;
    }

    .gold-card {
        width: 260px;
        height: 163px;
    }

    .card-title {
        font-size: 18px;
    }

    .step-number {
        font-size: 36px;
    }

    .eagle-container {
        display: none;
    }
}

/* ============================================
   Notifications
   ============================================ */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 48px 16px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: white;
}

.notification button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    line-height: 1;
}

.notification button:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Required field asterisk */
.required-star {
    color: #EF4444;
    margin-left: 2px;
    font-weight: 600;
}
