/* ===== TALENT VISA SCREENER — CUSTOM CSS ===== */
/* White + Deep Teal + Warm Gold | Editorial consulting aesthetic */

/* ===== CUSTOM PROPERTIES ===== */

:root {
    --color-white: #FFFFFF;
    --color-teal-900: #0D4F4F;
    --color-teal-800: #106060;
    --color-teal-700: #147474;
    --color-gold-500: #C6930A;
    --color-gold-600: #A67B08;
    --color-gold-300: #E6BA45;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
}

/* ===== BASE ===== */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-white);
}

/* ===== NAVIGATION ===== */

.nav-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-header.scrolled {
    border-bottom-color: var(--color-gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ===== CTA BUTTONS ===== */

.cta-button {
    box-shadow: 0 2px 8px rgba(198, 147, 10, 0.2);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    box-shadow: 0 4px 16px rgba(198, 147, 10, 0.3);
    transform: translateY(-1px);
}

.cta-button-sm {
    box-shadow: 0 1px 4px rgba(198, 147, 10, 0.15);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-button-sm:hover {
    box-shadow: 0 2px 8px rgba(198, 147, 10, 0.25);
}

/* ===== HERO IMAGE ===== */

.hero-image {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ===== PATHWAY CARDS ===== */

.pathway-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pathway-card:hover {
    border-color: var(--color-teal-700);
    box-shadow: 0 4px 20px rgba(13, 79, 79, 0.06);
}

.pathway-card-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--color-teal-900);
    background: rgba(13, 79, 79, 0.06);
    border: 1px solid rgba(13, 79, 79, 0.15);
    border-radius: 6px;
    padding: 4px 10px;
    margin-bottom: 14px;
}

/* ===== TIMELINE / PHASES ===== */

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-gray-200);
}

.timeline-step {
    display: flex;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-teal-900);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline-content {
    padding-top: 8px;
    flex: 1;
}

/* ===== REPORT LIST ===== */

.report-list {
    max-width: 560px;
    margin: 0 auto;
}

.report-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.report-list li:last-child {
    border-bottom: none;
}

.report-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-teal-700);
    margin-top: 2px;
}

/* ===== ATTORNEY CARD ===== */

.attorney-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    padding: 32px 28px;
}

/* ===== COPY LINK BUTTON ===== */

.copy-link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-gray-600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.copy-link-button:hover {
    border-color: var(--color-teal-700);
    color: var(--color-teal-900);
}

.copy-link-button.copied {
    border-color: var(--color-teal-700);
    color: var(--color-teal-900);
    background: rgba(13, 79, 79, 0.04);
}

/* ===== PRICING CARD ===== */

.pricing-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--color-teal-900), var(--color-gold-500));
}

/* ===== SCROLL REVEAL ===== */

.reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-50);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-200);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-400);
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-element {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .cta-button,
    .cta-button-sm,
    .pathway-card {
        transition: none;
    }
}

/* ===== PRINT STYLES ===== */

@media print {
    .nav-header,
    .cta-button,
    .cta-button-sm,
    .copy-link-button,
    footer {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    section {
        page-break-inside: avoid;
        padding: 24px 0 !important;
    }

    .pathway-card,
    .attorney-card,
    .pricing-card {
        border-color: #ccc;
        box-shadow: none;
    }

    .reveal-element {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 640px) {
    .pricing-card {
        padding: 36px 24px;
    }

    .attorney-card {
        padding: 24px 20px;
    }

    .pathway-card {
        padding: 22px 18px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .timeline-step {
        gap: 14px;
    }
}
