* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #1c1c1c;
}

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

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    /* desktop + mobile safe */
    align-items: center;
    padding: 14px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0c3895;
}

/* NAV LINKS (DESKTOP DEFAULT) */
.nav-links {
    display: flex;
}

.nav-links a {
    margin-right: 14px;
    font-size: 14px;
    color: #0c3895;
}

.nav-links a.active {
    color: #2563eb;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.call-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ===== HERO ===== */
/* ===== HERO SECTION ===== */

.hero {
    padding: 100px 20px;
    text-align: center;
background: url("image/pexels-pixels-elements-35568870.jpg") center center / cover no-repeat;
    color: #ffffff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ===== SUPPORT FORM ===== */

.support-form {
    max-width: 300px;
    margin: 0 auto 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.support-form input {
   
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
}

.support-form input:focus {
    outline: 2px solid #ffffff;
}

/* Button */
.support-form button {
    flex: 1 1 80px;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #ffea2b;
    color: #0c3895;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Checkbox */
.flight-check {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

/* Disclaimer note */
.form-note {
    font-size: 13px;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .hero {
        padding: 70px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .support-form {
        flex-direction: column;
    }

    .support-form input,
    .support-form button {
        width: 100%;
    }
}

/* ===== TRUST ===== */
.trust {
    background: #ffffff;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.trust p {
    font-size: 14px;
    color: #6b7280;
}

/* ===== FOOTER ===== */
footer {
    background: #0c3895;
    color: #d1d5db;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

footer h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

footer a {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #d1d5db;
}

/* ===== COOKIE ===== */
.cookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    z-index: 2000;
}

.cookie button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

/* ===== MOBILE NAV SLIDE-DOWN (ONLY CHANGE) ===== */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        border-top: 1px solid #f1f5f9;
    }

    .nav-links.open {
        max-height: 300px;
    }

    .menu-toggle {
        display: block;
    }

    .search-box input {
        width: 100%;
    }
}

/* ===== CONTACT SECTION (UPGRADED) ===== */
.contact-section {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #0f172a;
}

.contact-text p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 520px;
}

.primary-call-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.primary-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.contact-meta {
    margin-top: 18px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #64748b;
}

/* VISUAL */
.contact-visual {
    flex: 1;
    text-align: center;
}

.contact-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

/* DISCLAIMER */
.contact-disclaimer {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .contact-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .contact-text h2 {
        font-size: 28px;
    }

    .contact-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== COLLAPSIBLE LEGAL SECTIONS (BLUE STYLE) ===== */

.privacy-preview,
.legal-preview {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Toggle Button */
.privacy-toggle,
.legal-toggle {
    width: 100%;
    background: #0c3895;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    color: #ffffff;
    transition: background 0.2s ease;
}

.privacy-toggle:hover,
.legal-toggle:hover {
    background: #0f46b8;
}

/* Collapsed Content */
.privacy-content,
.legal-content {
    display: none;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    background: #0c3895;
    padding: 20px;
    border-radius: 10px;
}

/* Paragraph spacing */
.privacy-content p,
.legal-content p {
    margin-bottom: 14px;
}

/* Links inside legal sections */
.privacy-content a,
.legal-content a {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== WHY US SECTION (BRAND COLOR) ===== */
.why-us {
    padding: 90px 20px;
    background: #0c3895;
    text-align: center;
    color: #ffffff;
}

.why-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-header p {
    font-size: 16px;
    margin-bottom: 60px;
    opacity: 0.85;
}

/* GRID */
.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* CARD */
.why-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.why-icon {
    font-size: 32px;
    margin-bottom: 18px;
}

/* Hover */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Scroll animation */
.why-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FAQ COLLAPSIBLE ===== */

.faq-preview {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-toggle {
    width: 100%;
    background: #0c3895;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    color: #ffffff;
    transition: background 0.2s ease;
}

.faq-toggle:hover {
    background: #0f46b8;
}

.faq-content {
    display: none;
    margin-top: 20px;
    background: #0c3895;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

.faq-content p {
    margin-bottom: 18px;
}

/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 100px 20px;
    background: #ffffff;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0c3895;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 18px;
}

.about-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #0c3895;
    font-weight: 600;
}

.about-visual {
    flex: 1;
    text-align: center;
}

.about-visual img {
    max-width: 100%;
    border-radius: 20px;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-meta {
        justify-content: center;
    }
}

/* ===== POPUP OVERLAY (FULL SCREEN) ===== */
.support-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;
    /* hidden by default */
    display: flex;
    /* flex centering */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */

    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    backdrop-filter: blur(8px);
    /* blur background */
    -webkit-backdrop-filter: blur(8px);

    z-index: 9999;
}

/* ===== POPUP BOX ===== */
.popup-box {
    background: #0c3895;
    color: #ffffff;

    width: 520px;
    max-width: 90%;

    padding: 40px 35px;
    border-radius: 20px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);

    text-align: center;
}

/* ===== TEXT ===== */
.popup-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.popup-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.popup-btn {
    display: block;
    background: #ffffff;
    color: #0c3895;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.popup-btn:hover {
    background: #fff491;
}

/* ===== CLOSE BUTTON ===== */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* ===== PREVENT SCROLL ===== */
body.popup-open {
    overflow: hidden;
}

