/* =========================================
   1. GLOBAL RESET & BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 110px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto; /* Added to ensure proportions stay correct */
    display: block;
}

section {
    padding: 100px 0;
}

/* =========================================
   2. NAVBAR
========================================= */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    transition: 0.3s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px; /* Added for mobile breathing room */
}

.logo-img { height: 40px; }

.nav { display: flex; align-items: center; }

.nav a {
    text-decoration: none;
    color: #e5e5e5;
    margin-left: 26px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover { color: #2ecc71; }

.nav-btn {
    background: #2ecc71;
    color: #000 !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

/* =========================================
   3. HERO SECTION
========================================= */
.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.tagline {
    color: #2ecc71;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-image img { border-radius: 20px; width: 100%; }

/* =========================================
   4. PARTNER SECTION (FIXED)
========================================= */
.partner {
    background: #111;
}

.partner-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.partner-images {
    flex: 1;
    position: relative;
    height: 480px;
    width: 100%; /* Added */
}

.img-partner-main {
    width: 85%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.img-partner-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 8px solid #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.partner-text {
    flex: 1;
}

.partner-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partner-text p {
    color: #aaa;
    margin-bottom: 20px;
}

.partner-list {
    list-style: none;
    margin: 25px 0;
}

.partner-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 15px;
    color: #ddd;
}

.partner-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* =========================================
   5. FAQ SECTION
========================================= */
.faq {
    background: #0a0a0a;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.section-title-left {
    font-size: 32px;
    margin-bottom: 20px;
}

.faq-item {
    background: #161616;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #222;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    color: #999;
    overflow: hidden;
    transition: 0.3s ease-out;
}

.faq-item.active { border-color: #2ecc71; }

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
    color: #2ecc71;
}

/* =========================================
   6. QUALITY & WHY ZOHA
========================================= */
.quality { background: #111; }

.quality-container { display: flex; align-items: center; gap: 80px; }

.quality-images { position: relative; height: 450px; flex: 1; width: 100%; }

.img-main { width: 85%; border-radius: 12px; }

.img-secondary { 
    position: absolute; bottom: 0; right: 0; 
    width: 60%; border-radius: 12px; border: 8px solid #111; 
}

.section-title { text-align: center; font-size: 36px; margin-bottom: 50px; }

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

.why-card {
    background: #161616;
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.3s;
}

.why-card:hover {
    border-color: #2ecc71;
    transform: translateY(-10px);
}

/* =========================================
   7. BUTTONS & FOOTER
========================================= */
.btn-primary {
    display: inline-block;
    background: #2ecc71;
    color: #000;
    margin-top: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
    transform: translateY(-2px);
}

.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #666;
}

/* =========================================
   8. RESPONSIVE
========================================= */
@media (max-width: 992px) {
    section { padding: 60px 0; }
    
    .hero-container, .quality-container, .partner-container, .faq-container {
        flex-direction: column;
        text-align: center;
    }

    .why-grid { grid-template-columns: repeat(2, 1fr); }

    /* Fixed partner image stack for mobile */
    .partner-images, .quality-images { 
        height: auto; 
        margin-bottom: 40px; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
    }
    
    .img-partner-main, .img-partner-sub, .img-main, .img-secondary {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        border: none;
    }

    .partner-list li { text-align: left; }
    
    .faq-container { display: flex; flex-direction: column; }
}

@media (max-width: 600px) {
    body { padding-top: 90px; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 32px; }
    .section-title, .partner-text h2, .quality-text h2 { font-size: 28px; }
    .header { width: 95%; top: 10px; }
}

/* =========================================
   CATALOGUE CTA SECTION
========================================= */
.catalogue {
    background: #0a0a0a;
    padding: 80px 0;
}

.catalogue-box {
    background: linear-gradient(135deg, #161616 0%, #0d0d0d 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.catalogue-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.catalogue-box h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
}

.catalogue-box p {
    color: #999;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catalogue-box .btn-primary {
    padding: 16px 40px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================
   UPDATED MOBILE NAVIGATION (FIX)
========================================= */
@media (max-width: 992px) {
    .nav {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav.active {
        display: flex; 
    }

    .nav a {
        margin: 15px 0;
        font-size: 20px;
        font-weight: 600;
        margin-left: 0; /* Reset margin for mobile */
    }

    .catalogue-box {
        padding: 40px 20px;
    }

    .catalogue-box h2 {
        font-size: 28px;
    }
}

.bar { width: 100%; height: 3px; background-color: #ffffff; border-radius: 2px; transition: 0.3s; }

.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================
   QUALITY SECTION (OPTIMIZED)
========================================= */
.quality { background: #111; overflow: hidden; }

.quality-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.quality-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.quality-text p { color: #aaa; margin-bottom: 20px; }

.quality-list { list-style: none; margin-top: 30px; }

.quality-list li {
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 500;
}

.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 18px;
}

.quality-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px; 
}

.img-main {
    width: 80%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1;
}

.img-secondary {
    width: 55%;
    position: absolute;
    bottom: -30px;
    right: 0;
    border-radius: 12px;
    border: 8px solid #111; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 2;
}

/* --- 15+ YEARS HIGHLIGHT STYLES --- */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-star { color: #2ecc71; margin-right: 8px; font-weight: bold; }
.badge-label { 
    color: #2ecc71; 
    font-size: 12px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.why-card.highlight-experience {
    border: 2px solid #2ecc71;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    transform: translateY(-5px);
}

.exp-number {
    font-size: 48px;
    font-weight: 800;
    color: #2ecc71;
    line-height: 1;
    margin-bottom: 10px;
}

/* =========================================
   FOOTER SOCIALS
========================================= */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-socials { display: flex; gap: 15px; margin-top: 10px; }

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}
/* Global — hide on desktop */
.menu-toggle {
    display: none;
}

/* Mobile — show hamburger */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
}
.social-icon:hover {
    background: #2ecc71;
    color: #000;
    transform: translateY(-3px);
    border-color: #2ecc71;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer-info { text-align: left; }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; 
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #2ecc71;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: none;
    opacity: 1; 
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #2ecc71;
}

@media (max-width: 768px) {
    .floating-whatsapp { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    .whatsapp-tooltip { display: none; } 
}