/* ============================================================
   HeliYatra - Booking Verification | Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary:       #235DAF;
    --primary-dark:  #1a4a8e;
    --primary-light: #3b7cd6;
    --accent:        #4a7fd4;
    --success:       #16a34a;
    --error:         #dc2626;
    --warning:       #d97706;
    --footer-bg:     #1e293b;
    --footer-border: #334155;
    --text-dark:     #0f172a;
    --text-mid:      #475569;
    --text-light:    #94a3b8;
    --border:        #cbd5e1;
    --bg:            #f8fafc;
    --white:         #ffffff;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
    --radius:        8px;
    --transition:    .2s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-error   { color: var(--error) !important; }
.text-white   { color: var(--white) !important; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout container ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid #edf2f7;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px; /* Standard official height */
}

/* Logos */
.header-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-ut { height: 42px; width: auto; }
.logo-ucada { height: 50px; width: auto; }
.logo-irctc { height: 38px; width: auto; margin-right: 8px; }

.main-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-title-text {
    font-size: 20px;
    font-weight: 800;
    color: #213d77; /* IRCTC Blue */
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link, .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    text-decoration: none;
}

.nav-link:hover, .nav-btn:hover {
    background: rgba(33, 61, 119, 0.05);
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(33, 61, 119, 0.08);
}

.nav-icon {
    width: 20px;
    height: 20px;
    color: #4a5568;
    transition: color 0.2s;
}

.nav-link:hover .nav-icon, .nav-link.active .nav-icon {
    color: var(--primary);
}

.lang-dropdown {
    color: #2d3748;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 14px;
}

.lang-dropdown:hover {
    border-color: var(--primary);
    background: #ffffff;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    margin-left: 2px;
    opacity: 0.6;
}



/* ============================================================
   BANNER / ALERT BAR
   ============================================================ */
.header-banner {
    background: #ffe4e4;
    border-bottom: 1px solid #fecaca;
    padding: 8px 0;
    font-size: 14px;
    color: #991b1b;
    font-weight: 600;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.banner-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.banner-link {
    color: #b91c1c;
    text-decoration: underline;
    margin: 0 4px;
}

.banner-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: #991b1b;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.banner-close:hover { opacity: 1; }
.site-main {
    flex: 1;
    padding: 48px 0 64px;
}

/* Page title */
.page-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -.3px;
}

/* ── Two-column layout ── */
.verify-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

/* ── Form card ── */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(74,127,212,.15);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 11px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(33,61,119,.3);
    transform: translateY(-1px);
}
.btn-submit:active { transform: translateY(0); }


/* ── Result panel ── */
.result-panel {
    min-height: 120px;
    display: flex;
    align-items: flex-start;
}

/* Empty / placeholder state */
.result-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    color: var(--text-light);
    gap: 12px;
}
.result-empty svg { opacity: .35; }
.result-empty p { font-size: 14px; }

/* Alert boxes */
.alert {
    width: 100%;
    border-radius: 10px;
    padding: 20px 22px;
    border-left: 5px solid transparent;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    animation: slideIn .3s ease;
}
.alert-missing  { border-color: var(--warning); background: #fffbeb; }
.alert-notfound { border-color: var(--error);   background: #fef2f2; }
.alert-found    { border-color: var(--success);  background: #f0fdf4; }

.alert-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}
.alert-missing  .alert-title { color: var(--warning); }
.alert-notfound .alert-title { color: var(--error); }
.alert-found    .alert-title { color: var(--success); }

.alert-body {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Booking details table */
.booking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    font-size: 14px;
}
.booking-table tr { border-bottom: 1px solid #e2e8f0; }
.booking-table tr:last-child { border: none; }
.booking-table td {
    padding: 9px 8px;
    color: var(--text-mid);
}
.booking-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 45%;
}
.booking-table .badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #d1fae5;
    color: #065f46;
}

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


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--footer-bg);
    color: #94a3b8;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: .1px;
}

.footer-about-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* Social icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #334155;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-copyright {
    font-size: 12.5px;
    color: #64748b;
}

/* Footer links */
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 13.5px;
    color: #94a3b8;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #475569;
    flex-shrink: 0;
    transition: background var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { background: var(--accent); }

/* Mountain illustration */
.footer-mountain {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    opacity: .55;
    pointer-events: none;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom-text {
    font-size: 12px;
    color: #475569;
    text-align: center;
}
.footer-bottom-text a { color: #60a5fa; }
.footer-bottom-text a:hover { color: var(--white); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .verify-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .header-inner { height: 60px; }
    .logo-sub { display: none; }
    .nav-link span { display: none; }
    .nav-link { padding: 8px 10px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-title { font-size: 21px; }
    .footer-mountain { width: 180px; }
}
/* ============================================================
   AUTH / LOGIN PAGE
   ============================================================ */
.auth-hero, .home-hero {
    min-height: calc(100vh - 68px - 340px); /* Adjust based on header/footer */
    background: url('../images/heliyatra-bg.webp') no-repeat center bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 0 100px;
    position: relative;
}

/* Home Page specific styles */
.home-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.home-badge-msg {
    display: inline-block;
    background: rgba(35, 93, 175, 0.15);
    backdrop-filter: blur(10px);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.4);
}

.home-badge-msg a {
    color: #b91c1c;
    text-decoration: underline;
    margin-left: 8px;
}

.home-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.home-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.home-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.home-btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.home-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(35, 93, 175, 0.3);
}

.home-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(35, 93, 175, 0.4);
    color: var(--white);
}

.home-btn-outline {
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    border: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

.home-btn-outline:hover {
    background: rgba(240,245,255,0.95);
    transform: translateY(-2px);
}

.home-heli-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.home-heli-img {
    width: 100%;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
    animation: heliFloat 6s ease-in-out infinite;
}

/* ============================================================
   DESTINATIONS SECTION (NEW)
   ============================================================ */
.destinations-section {
    background: #f8fbff;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.destination-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(33, 61, 119, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(33, 61, 119, 0.12);
}

.destination-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.05);
}

.destination-content {
    background: #f1f5f9; /* Light gray background below image on official site */
    padding: 24px;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    flex-grow: 1;
}

.destination-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e3a6e;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.destination-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.destination-btn {
    width: 100%;
    background: #5b84c1; /* Faded blue on official site for disabled state */
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
    transition: background 0.3s ease;
}

.destination-btn:disabled {
    opacity: 0.8;
}

@media (max-width: 850px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .destination-img-wrapper {
        height: 250px;
    }
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Left Content */
.auth-content-left {
    color: var(--primary);
}

.auth-badge-msg {
    display: inline-block;
    background: rgba(35, 93, 175, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.auth-badge-msg a {
    color: #b91c1c;
    text-decoration: underline;
}

.auth-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.auth-hero-description {
    font-size: 18px;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 500px;
}

.auth-heli-img {
    max-width: 650px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: heliFloat 6s ease-in-out infinite;
}

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

/* Right Content / Login Card */
.login-card-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 40px 36px;
}

.login-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.login-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(35, 93, 175, 0.1);
    outline: none;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.captcha-box {
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #334155;
    user-select: none;
    border: 1px dashed var(--border);
}

.captcha-refresh {
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background 0.2s;
}

.captcha-refresh:hover {
    background: rgba(35, 93, 175, 0.05);
}

.forgot-password {
    display: block;
    text-align: right;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 8px;
}

.login-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(35, 93, 175, 0.3);
}

.create-account-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-mid);
}

.create-account-link a {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   ADVISORY MARQUEE
   ============================================================ */
.advisory-marquee-wrapper {
    background: #1a365d;
    color: #ffffff;
    height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ed8936;
    overflow: hidden;
}

.container-full { max-width: 100% !important; padding: 0 40px; }

.marquee-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.marquee-label {
    background: #ed8936;
    color: #ffffff;
    padding: 0 16px;
    height: 48px;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

.marquee-content {
    flex-grow: 1;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
}

.marquee-more-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.marquee-more-btn:hover {
    background: #ffffff;
    color: #1a365d;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 80px 0;
    background: #ffffff;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 24px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card.highlight {
    background: #ffffff;
    border-color: #2b6cb0;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.1);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2b6cb0;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(43, 108, 176, 0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(43, 108, 176, 0.08);
    color: #2b6cb0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon svg { width: 32px; height: 32px; }

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 12px;
}

.step-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.step-arrow {
    color: #cbd5e0;
}

.step-arrow svg { width: 32px; height: 32px; }

@media (max-width: 900px) {
    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 10px 0; }
    .step-card.highlight { transform: none; }
}

/* ============================================================
   MODAL ADVISORY
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    background: #f8fafc;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #1a365d;
}

.modal-close {
    font-size: 28px;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 30px 24px;
}

.advisory-caution {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.advisory-caution svg {
    color: #e53e3e;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.advisory-caution h4 {
    font-size: 15px;
    font-weight: 700;
    color: #c53030;
    margin-bottom: 4px;
}

.advisory-caution p {
    font-size: 13px;
    color: #9b2c2c;
}

.advisory-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advisory-list li {
    font-size: 14px;
    color: #2d3748;
    padding-left: 20px;
    position: relative;
}

.advisory-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #2b6cb0;
    border-radius: 50%;
}

.advisory-footer-msg {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #2b6cb0;
    font-style: italic;
}

.modal-footer {
    padding: 20px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}

.btn-modal-ok {
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.btn-modal-ok:hover {
    background: #2c5282;
}

/* ============================================================
   GENERAL INSTRUCTIONS SECTION
   ============================================================ */
.instructions-section {
    padding: 80px 0;
    background: #fffafa;
    border-top: 1px solid #f9e2e2;
}

.instructions-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.instruction-list-card {
    background: #ffffff;
    border-left: 5px solid #2b5797;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.instruction-list-items {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruction-list-items li {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    padding-left: 28px;
    position: relative;
}

.instruction-list-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b5797' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

/* Large Action Buttons */
.instructions-actions-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-btn-large {
    width: 100%;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: left;
}

.action-btn-large:hover {
    border-color: #2b5797;
    background: #f0f7ff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(43, 87, 151, 0.1);
}

.btn-icon {
    width: 48px;
    height: 48px;
    background: rgba(43, 87, 151, 0.1);
    color: #2b5797;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
}

.btn-icon svg { width: 24px; height: 24px; }

.btn-text {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 700;
    color: #1a365d;
}

.btn-arrow {
    color: #cbd5e0;
    font-size: 20px;
    font-weight: 400;
}

.action-btn-large:hover .btn-arrow {
    color: #2b5797;
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .instructions-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Modal Helper */
.max-h-400 { max-height: 400px; }
.overflow-y-auto { overflow-y: auto; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.text-blue-600 { color: #2563eb; }

/* Responsive fixes */
@media (max-width: 1024px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .auth-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .auth-hero-title {
        font-size: 36px;
    }
    .auth-heli-img {
        max-width: 100%;
    }
    .login-card-wrapper {
        margin: 0 auto;
    }
}

/* ============================================================
   HELP PAGE & STATIC CONTENT
   ============================================================ */
.help-hero {
    padding: 60px 0;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.help-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.help-hero-subtitle {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

.help-content {
    padding: 64px 0;
}

/* Contact Cards Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.help-card {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.help-card-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.help-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.help-card-subtitle {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.help-card-action {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.help-card-action:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
}

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

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 20px 24px;
    max-height: 500px;
    border-top: 1px solid var(--border);
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}
