/* =========================
   ROOT VARIABLES
========================= */
:root {
    --navy: #0B2347;
    --navy-dark: #071A36;
    --navy-light: #173663;

    --gold: #F4B400;
    --gold-light: #FFD45A;

    --orange: #F58220;
    --orange-dark: #DF6810;

    --white: #FFFFFF;
    --light-bg: #F7F9FC;

    --text: #172033;
    --text-light: #667085;

    --border: rgba(11, 35, 71, 0.10);

    --container: 1200px;
    --header-height: 82px;

    --radius-lg: 28px;
    --radius-md: 18px;

    --transition: .3s ease;
}

/* =========================
   RESET & GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.text-center { text-align: center; }

.badge-eyebrow {
    display: inline-block;
    background: rgba(245, 130, 32, 0.12);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.badge-eyebrow.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
}

.section-head {
    max-width: 680px;
    margin: 0 auto 55px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--navy);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--orange);
}

.section-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   BUTTONS (PILL STYLE)
========================= */
.btn {
    min-height: 52px;
    padding: 13px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(245, 130, 32, 0.22);
}

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 15px 35px rgba(245, 130, 32, 0.30);
}

.btn-whatsapp {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: rgba(255, 255, 255, 0.13);
}

/* =========================
   HEADER
========================= */
.site-header {
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(11, 35, 71, 0.08);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo {
    width: 130px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    background: var(--orange);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.22);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.header-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(245, 130, 32, 0.32);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--light-bg);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    background-image:
        linear-gradient(
            to left,
            rgba(7, 26, 54, 0.95) 0%,
            rgba(7, 26, 54, 0.85) 45%,
            rgba(11, 35, 71, 0.35) 75%,
            rgba(11, 35, 71, 0.15) 100%
        ),
        url("../../assets/images/cover1.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero-container {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
    color: var(--gold);
    margin-top: 8px;
}

.hero-description {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-features strong {
    color: var(--gold);
    font-size: 15px;
}

/* ==========================================
   JOURNEY TABS (NAVY & GOLD THEME)
=========================================== */
.journey-section {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.journey-section .section-title { color: var(--white); }
.journey-section .section-desc { color: rgba(255, 255, 255, 0.75); }

.journey-stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.step-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: right;
    transition: all var(--transition);
    outline: none;
}

.step-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.step-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(244, 180, 0, 0.25);
}

.step-num {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all var(--transition);
}

.step-btn.active .step-num {
    background: var(--navy-dark);
    color: var(--gold);
}

.step-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition);
}

.step-btn.active .step-label {
    color: var(--navy-dark);
}

.journey-display {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 40px;
}

.journey-panel {
    display: none;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    padding: 55px;
    align-items: center;
}

.journey-panel.active {
    display: grid;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-badge {
    display: inline-block;
    background: rgba(244, 180, 0, 0.15);
    border: 1px solid rgba(244, 180, 0, 0.3);
    color: var(--gold-light);
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.panel-content h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 16px;
}

.panel-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 22px;
}

.panel-list {
    list-style: none;
}

.panel-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.panel-list strong {
    color: var(--gold);
}

.panel-visual {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-mockup {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    color: var(--navy);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(11, 35, 71, 0.08);
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 12px;
}

.badge-status {
    background: rgba(245, 130, 32, 0.12);
    color: var(--orange-dark);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.mockup-progress {
    height: 8px;
    background: #EDF2F7;
    border-radius: 999px;
    overflow: hidden;
    margin: 15px 0 10px;
}

.prog-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 999px;
}

.mockup-note {
    display: block;
    color: var(--text-light);
    font-size: 11px;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.live-screen {
    background: var(--navy-dark);
    color: var(--white);
    padding: 28px 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
}

.screen-icon {
    font-size: 34px;
    display: block;
    margin-bottom: 8px;
}

.live-screen p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.live-meta {
    display: flex;
    justify-content: space-around;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.quiz-score {
    text-align: center;
    padding: 16px;
    background: rgba(244, 180, 0, 0.12);
    border-radius: 12px;
    margin-bottom: 12px;
}

.quiz-score strong {
    display: block;
    font-size: 30px;
    color: var(--navy);
}

.quiz-score span {
    font-size: 12px;
    color: var(--orange-dark);
    font-weight: 700;
}

.quiz-feedback {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.wa-icon { font-size: 18px; }

.wa-bubble {
    background: #E7FCE3;
    padding: 16px;
    border-radius: 14px 14px 2px 14px;
    font-size: 13px;
    color: #111;
    line-height: 1.7;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.wa-time {
    display: block;
    text-align: left;
    font-size: 10px;
    color: #666;
    margin-top: 6px;
}

/* ==========================================
   WHY CHOOSE US
=========================================== */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
}

.why-us-section .section-title { color: var(--white); }
.why-us-section .section-desc { color: rgba(255, 255, 255, 0.8); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.why-icon-box {
    font-size: 36px;
    margin-bottom: 18px;
}

.why-card h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.why-point {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    display: inline-block;
}

/* ==========================================
   STAGES & TRACKS
=========================================== */
.stages-section {
    padding: 95px 0;
    background: #F4F7FB;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stage-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(11, 35, 71, 0.08);
}

.stage-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 20px 40px rgba(244, 180, 0, 0.15);
}

.stage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stage-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    background: var(--light-bg);
    color: var(--navy);
    border-radius: 999px;
}

.stage-tag.popular {
    background: var(--gold);
    color: var(--navy-dark);
}

.stage-icon { font-size: 34px; }

.stage-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.stage-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.stage-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.stage-list li {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}

.stage-list strong { color: var(--orange); }

.btn-card {
    width: 100%;
    min-height: 48px;
    padding: 11px 24px;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(11, 35, 71, 0.12);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-card:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 35, 71, 0.2);
}

.btn-card.btn-featured {
    background: var(--orange);
    box-shadow: 0 6px 18px rgba(245, 130, 32, 0.25);
}

.btn-card.btn-featured:hover {
    background: var(--orange-dark);
    box-shadow: 0 10px 25px rgba(245, 130, 32, 0.35);
}

/* ==========================================
   PARENTS SECTION
=========================================== */
.parents-section {
    padding: 95px 0;
    background: var(--white);
}

.parents-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.parents-lead {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.parents-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perk-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.perk-check {
    width: 32px;
    height: 32px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.perk-item h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
}

.perk-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.parents-highlight-card {
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
    color: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(11, 35, 71, 0.2);
    position: relative;
}

.parents-highlight-card .quote-icon {
    font-size: 60px;
    color: var(--gold);
    line-height: 1;
    font-family: Georgia, serif;
}

.parents-highlight-card h3 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.parents-highlight-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ==========================================
   SCREENSHOTS SLIDER & LIGHTBOX
=========================================== */
.success-screens-section {
    padding: 95px 0;
    background: var(--light-bg);
}

.slider-outer-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 45px;
}

.screens-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.screens-slider-track::-webkit-scrollbar {
    display: none;
}

.slider-item {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 6px 16px rgba(11, 35, 71, 0.25);
    transition: background var(--transition), transform var(--transition);
}

.slider-arrow:hover {
    background: var(--orange);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { right: -5px; }
.next-btn { left: -5px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(11, 35, 71, 0.15);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--orange);
    width: 26px;
    border-radius: 999px;
}

.screen-card {
    background: var(--white);
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(11, 35, 71, 0.06);
    display: flex;
    flex-direction: column;
}

.screen-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    background: rgba(11, 35, 71, 0.06);
    padding: 5px 12px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 10px;
}

.screen-img-wrap {
    position: relative !important;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #F1F5F9;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-screenshot {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block;
    transition: transform var(--transition);
}

.screen-img-wrap:hover .review-screenshot {
    transform: scale(1.03);
}

.screen-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(7, 26, 54, 0.45);
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.screen-img-wrap:hover .screen-overlay {
    opacity: 1;
}

.zoom-btn {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    background: var(--orange);
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.lightbox-modal {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 15, 33, 0.95);
    z-index: 999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex !important;
}

.lightbox-img {
    max-width: 92%;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    animation: zoomInLight 0.25s ease-out;
}

@keyframes zoomInLight {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    left: 25px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    z-index: 1000000;
    user-select: none;
}

/* ==========================================
   FAQ ACCORDION
=========================================== */
.faq-section {
    padding: 95px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.active {
    border-color: var(--orange);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--light-bg);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
    transition: background var(--transition);
}

.faq-question:hover {
    background: #eef2f7;
}

.faq-icon {
    font-size: 20px;
    color: var(--orange);
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background: var(--white);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 16px 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   BOOKING FORM
=========================================== */
.booking-section {
    padding: 95px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.booking-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 15px;
    line-height: 1.3;
}

.booking-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 25px;
}

.booking-checks {
    list-style: none;
}

.booking-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.booking-checks li span {
    color: var(--gold);
    font-weight: bold;
}

.booking-form-box {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--orange);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* ==========================================
   FORM VALIDATION ERROR STYLES
=========================================== */
.form-group {
    position: relative;
}

/* إطار أحمر للحقل غير المكتمل */
.form-group input.input-error,
.form-group select.input-error {
    border-color: #E53E3E !important;
    background-color: #FFF5F5 !important;
}

/* نص التنبيه بالخطأ */
.error-message {
    display: block;
    color: #E53E3E;
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
    animation: shakeError 0.25s ease-in-out;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}
/* =========================
   FOOTER
========================= */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 65px 0 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 15px;
    font-size: 13px;
    max-width: 320px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
}


.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
}

/* ==========================================
   FOOTER SOCIAL & COMMUNITY BUTTONS
=========================================== */
.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.social-pill:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.social-pill svg {
    flex-shrink: 0;
}

/* 1. واتساب شات */
.social-pill.wa-chat {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* 2. قناة واتساب */
.social-pill.wa-channel {
    background: #128C7E;
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.25);
}

/* 3. جروب واتساب */
.social-pill.wa-group {
    background: #075E54;
    box-shadow: 0 4px 12px rgba(7, 94, 84, 0.25);
}

/* 4. فيسبوك */
.social-pill.fb {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

/* 5. تليجرام */
.social-pill.tg {
    background: #229ED9;
    box-shadow: 0 4px 12px rgba(34, 158, 217, 0.25);
}

/* 6. إنستجرام */
.social-pill.ig {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    box-shadow: 0 4px 12px rgba(221, 42, 123, 0.25);
}

