/* =============================================
   WEBENSI DIGITAL SERVICES - Main Stylesheet
   ============================================= */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --primary:        #0A1F44;
    --accent:         #1E90FF;
    --accent-dark:    #1570cc;
    --orange:         #FF6B00;
    --orange-dark:    #cc5500;
    --bg:             #F5F7FA;
    --bg-dark:        #0d1b35;
    --card-bg:        #ffffff;
    --text:           #2c3e50;
    --text-light:     #6b7a99;
    --text-white:     #ffffff;
    --border:         #e2e8f0;
    --shadow-sm:      0 2px 8px rgba(10,31,68,0.08);
    --shadow-md:      0 8px 30px rgba(10,31,68,0.12);
    --shadow-lg:      0 20px 60px rgba(10,31,68,0.18);
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      24px;
    --radius-xl:      36px;
    --font-heading:   'Poppins', sans-serif;
    --font-body:      'Inter', sans-serif;
    --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
    --header-h:       72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    border: none;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.accent { color: var(--accent); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 4px 24px rgba(30,144,255,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30,144,255,0.45);
}
.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}
.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* Responsive utilities */
.responsive { width: 100%; box-sizing: border-box; }
.hide-mobile { display: inherit; }
.show-mobile { display: none; }

@media (max-width: 992px) {
    :root { --header-h: 64px; }
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .btn { padding: 10px 18px; font-size: .95rem; }
    .hide-mobile { display: none; }
    .show-mobile { display: inline-block; }
    /* hide header contact buttons on tablets and phones */
    .header-contacts { display: none; }
}

@media (max-width: 768px) {
    /* remove fixed header height so it can grow with wrapped content */
    :root { --header-h: auto; }
    .header { height: auto; padding: 8px 0; }
    .container { padding: 0 12px; }

    /* hide the inline nav links on narrow viewports; we'll use the hamburger menu */
    .nav-list { display: none; }

    /* make sure the nav container doesn't stretch and push the hamburger off-screen */
    .header-inner .nav {
        flex: none;
    }

    /* since header is now unified, hide .header-contacts if present */
    .header-contacts { display: none; }

    /* compress buttons a little */
    .btn { padding: 9px 14px; font-size: .92rem; }

    /* allow header items to wrap into two rows when necessary */
    .header-inner {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    /* logo stays at start of first row */
    .logo {
        order: 1;
        flex: 1 1 auto;
    }

    /* hamburger to the right on first row */
    .hamburger {
        order: 2;
        margin-left: auto;
    }

    /* hide the inline CTAs since we'll show them inside the menu */
    .header-cta {
        display: none !important;
    }

    /* mobile menu CTA container initially hidden */
    .mobile-cta {
            display: none;
        flex-direction: column;
        padding: 16px;
        gap: 12px;
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-top: 16px;
    }

    /* Ensure mobile-cta is hidden on desktop to avoid duplicate CTAs */
    .mobile-cta { display: none !important; }

    /* header CTAs remain hidden by default (mobile) — will show in desktop media query below */

    /* show mobile CTAs when nav is open on narrow screens only */
    @media (max-width: 992px) {
        .nav.open .mobile-cta {
            display: flex !important;
        }
    }

    /* ensure CTA icons smaller inside menu */
    .mobile-cta a {
        padding: 8px 12px;
        justify-content: flex-start;
    }
}

/* ensure header CTAs show on desktop */
@media (min-width: 992px) {
    .header-cta { display: flex !important; }
    /* hide mobile CTAs even if nav is open on wider screens */
    .nav.open .mobile-cta { display: none !important; }
    .mobile-cta { display: none !important; }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
    height: var(--header-h);
}
.header.scrolled {
    background: rgba(10,31,68,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 2px 12px rgba(30,144,255,0.4);
}
.logo-text .accent { color: var(--orange); }
.footer-logo .accent { color: var(--orange); }
.nav-list {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    line-height: 1;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    display: none;
}
.nav-link:hover {
    color: white;
    background: rgba(30,144,255,0.15);
}
.nav-link:hover::after {
    width: 0;
}
.nav-link.active {
    color: white;
    background: rgba(30,144,255,0.2);
}
.nav-link.active::after {
    width: 60%;
}
.nav-link.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 50px;
    box-shadow: 0 2px 16px rgba(30,144,255,0.4);
    transition: var(--transition);
}
.nav-link.btn-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(30,144,255,0.5);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)), rgba(0,0,0,0.3);
    background-blend-mode: multiply;
}
.nav-link.btn-book::after {
    display: none;
}
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cta-wa {
    width: 40px; height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 12px rgba(37,211,102,0.4);
}
.cta-wa:hover { transform: scale(1.1); }
.cta-call {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
}
.cta-call:hover { background: rgba(255,255,255,0.2); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,31,68,0.92) 0%, rgba(10,31,68,0.7) 60%, rgba(30,144,255,0.2) 100%);
}
/* fallback gradient backgrounds when images not loaded */
.hero-slider .slide:nth-child(1) {
    background: linear-gradient(135deg, #0A1F44 0%, #0d2d64 50%, #1E3A8A 100%);
}
.hero-slider .slide:nth-child(2) {
    background: linear-gradient(135deg, #0A1F44 0%, #0f2545 50%, #1a3a5c 100%);
}
.hero-slider .slide:nth-child(3) {
    background: linear-gradient(135deg, #0A1F44 0%, #13243e 50%, #1a2a4a 100%);
}
.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + 40px) 48px 80px;
    max-width: 780px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30,144,255,0.2);
    border: 1px solid rgba(30,144,255,0.4);
    color: #7ec8ff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    backdrop-filter: blur(8px);
}
.slide-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.slide-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-item i { color: #4ade80; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 48px;
    display: flex;
    gap: 8px;
    z-index: 20;
}
.dot {
    width: 8px; height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    right: 48px;
    z-index: 20;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-anim {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding: 4px;
}
.scroll-anim div {
    width: 4px; height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30,144,255,0.1), rgba(255,107,0,0.1));
    border: 1px solid rgba(30,144,255,0.25);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-overview { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30,144,255,0.2);
}
.center-card {
    grid-column: 2;
}
.card-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}
.card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: inherit;
}
.bg-blue { background: linear-gradient(135deg, var(--accent), #0066cc); box-shadow: 0 6px 20px rgba(30,144,255,0.3); }
.bg-orange { background: linear-gradient(135deg, var(--orange), #cc4400); box-shadow: 0 6px 20px rgba(255,107,0,0.3); }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.service-tags li {
    background: var(--bg);
    color: var(--text);
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    font-weight: 500;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.card-link:hover { gap: 10px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d2d64 50%, #1a3a8a 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30,144,255,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.stat-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline;
}
.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    display: inline;
}
.stat-label {
    margin-top: 8px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ===== PRICING SECTION ===== */
.pricing-section { background: var(--bg); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
    align-items: start;
}
.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    background: linear-gradient(160deg, var(--primary) 0%, #0d2d64 100%);
    border-color: rgba(30,144,255,0.4);
    box-shadow: 0 20px 60px rgba(10,31,68,0.3);
    transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.06) translateY(-4px); }
.pricing-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.badge-green { background: rgba(74,222,128,0.15); color: #16a34a; border: 1px solid rgba(74,222,128,0.3); }
.badge-blue  { background: rgba(30,144,255,0.2); color: #60a5fa; border: 1px solid rgba(30,144,255,0.3); }
.badge-red   { background: rgba(255,107,0,0.15); color: var(--orange); border: 1px solid rgba(255,107,0,0.3); }
.plan-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(30,144,255,0.3);
}
.pricing-card.featured .plan-icon {
    background: linear-gradient(135deg, var(--orange), #cc4400);
    box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}
.plan-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}
.pricing-card.featured .plan-name { color: white; }
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}
.currency { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.pricing-card.featured .amount { color: white; }
.pricing-card.featured .currency { color: var(--orange); }
.period { font-size: 0.9rem; color: var(--text-light); }
.pricing-card.featured .period { color: rgba(255,255,255,0.6); }
.plan-features {
    margin-bottom: 32px;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.pricing-card.featured .plan-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.08); }
.plan-features li i.fa-check { color: #22c55e; font-size: 0.85rem; margin-top: 2px; }
.plan-features li i.fa-times { color: #ef4444; font-size: 0.85rem; margin-top: 2px; }
.plan-features li i.fa-info-circle { color: var(--orange); font-size: 0.85rem; margin-top: 2px; }
.plan-features li.faded { opacity: 0.45; }
.plan-features li.note { font-size: 0.82rem; color: rgba(255,107,0,0.9); font-style: italic; }
.plan-btn { width: 100%; justify-content: center; }

/* One-Time Card */
.one-time-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0d2d64 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    border: 1px solid rgba(30,144,255,0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.one-time-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(30,144,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.ot-left { flex: 1; }
.ot-badge {
    display: inline-block;
    background: rgba(255,107,0,0.2);
    color: #ffa040;
    border: 1px solid rgba(255,107,0,0.3);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.ot-left h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}
.ot-left p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.95rem; }
.ot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ot-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
}
.ot-features li i { color: #22c55e; }
.ot-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    text-align: center;
}
.ot-price { text-align: center; }
.ot-from { color: rgba(255,255,255,0.6); font-size: 0.85rem; display: block; margin-bottom: 4px; }
.ot-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
}
.ot-note { color: rgba(255,255,255,0.5); font-size: 0.8rem; display: block; margin-top: 4px; }

/* ===== HOW IT WORKS ===== */
.how-section { background: white; }
.how-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.how-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.how-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30,144,255,0.25);
}
.step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 12px;
}
.step-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(30,144,255,0.3);
}
.how-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.how-step p { font-size: 0.85rem; color: var(--text-light); }
.how-connector {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    position: relative;
    flex-shrink: 0;
}
.how-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    border: 6px solid transparent;
    border-left-color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testimonial-section { background: var(--bg); }
.testimonial-slider-wrap { position: relative; }
.testimonial-slider { overflow: hidden; }
.testimonial-card {
    display: none;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    animation: slideInUp 0.5s ease;
}
.testimonial-card.active { display: block; }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}
.stars { color: #f59e0b; font-size: 1.3rem; margin-bottom: 16px; }
.testi-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--primary); }
.testi-author span { font-size: 0.82rem; color: var(--text-light); }
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.testi-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testi-btn:hover { background: var(--accent); border-color: var(--accent); color: white; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
    width: 8px; height: 8px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.testi-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
    transition: var(--transition);
}
.faq-item.open { background: white; box-shadow: var(--shadow-sm); border-color: rgba(30,144,255,0.2); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a8a 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section::before, .cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.cta-section::before {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,144,255,0.12) 0%, transparent 60%);
    top: -200px; left: -100px;
}
.cta-section::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 60%);
    bottom: -100px; right: -50px;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}
.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    margin-bottom: 56px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.ci-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(30,144,255,0.25);
}
.contact-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--accent); }
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social-link {
    width: 40px; height: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.92rem;
    color: var(--text);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(30,144,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #16a34a;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
    font-weight: 500;
}
.form-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #dc2626;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
    font-weight: 500;
}
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: white; }
.footer-top { padding: 80px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.footer-tagline {
    font-style: italic;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.4;
}
.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.fs-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.fs-link:hover { background: var(--accent); border-color: var(--accent); color: white; }
.footer-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--orange));
    border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-links a:hover { color: white; gap: 12px; }

/* Footer Address Box */
.footer-address-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
}
.fa-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.fa-item:last-of-type { border-bottom: none; }
.fa-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.fa-item a { color: rgba(255,255,255,0.65); }
.fa-item a:hover { color: white; }
.wa-footer-btn {
    margin-top: 16px;
}
.wa-footer-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.wa-footer-btn a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}
.footer-bottom strong { color: rgba(255,255,255,0.8); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--accent); }

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 30px;
    z-index: 999;
    background: #25D366;
    color: white;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    transition: var(--transition);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
.wa-label {
    position: absolute;
    right: 68px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}
.wa-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary);
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    width: 44px; height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .center-card { grid-column: auto; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 0; }
    .how-connector { display: none; }
}

/* smaller fixed buttons on phones */
@media (max-width: 480px) {
    .wa-float {
        width: 46px; height: 46px;
        font-size: 1.3rem;
        bottom: 20px; 
    }
    .back-to-top {
        width: 36px; height: 36px;
        bottom: 80px; 
    }
    .slider-btn {
        height : 30px;
        width: 30px;
    }

  .one-time-card { flex-direction: column; gap: 32px; }
}


/* slightly larger phones/tablets: hide links and show hamburger */
@media (max-width: 992px) {
    .nav-list { display: none; }
    .hamburger { display: flex; }
    .header-inner .nav { flex: none; }
}

@media (max-width: 992px) {
    /* larger breakpoint also gets the sliding panel and hamburger
       (tables and phones). for really small screens we reduce
       header height slightly via an inner rule below */
    :root { --header-h: 64px; }

    /* nav panel slides in from the left rather than dropping down */
    .nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 250px; /* adjust width if desired */
        background: var(--primary); /* fully opaque background to hide content behind */
        /* you can keep blur if you like, but ensure opacity is 1 */
        /* backdrop-filter: blur(16px); */
        padding: 20px 0;
        height: 100vh;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 2000;
        overflow-y: auto;
    }
    .nav.open { transform: translateX(0); opacity: 1; pointer-events: all; }

    /* mobile CTAs appear inside the panel below the menu items */
    .nav .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px 18px;
        border-top: 1px solid rgba(255,255,255,0.04);
        margin-top: 8px;
        background: transparent;
    }

    .nav .mobile-cta a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav .mobile-cta a.btn {
        padding: 10px 16px !important;
        font-size: .85rem !important;
        border-radius: 50px !important;
    }

    .nav-list { display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
    .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }

    .hamburger { display: flex; order: 2; margin-left: auto; }
    .cta-call span { display: none; }
    .slide-content { padding: calc(var(--header-h) + 28px) 24px 70px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .cta-btns { flex-direction: column; align-items: center; }
    .ot-features { grid-template-columns: 1fr; }
    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }
    .slider-dots { left: 24px; }

    /* decrease header height on very small phones */
    @media (max-width: 768px) {
        :root { --header-h: 56px; }
        
    }
}

@media (max-width: 480px) {
    .section { padding: 64px 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero { min-height: 100svh; }
    .slide-content h1 { font-size: 2rem; }
    /* Make booking form card less padded on very small screens */
    .booking-form-card { padding: 18px; }
    .booking-info { padding: 0 8px; }
    /* Slightly reduce container horizontal padding on very small devices */
    .container { padding-left: 12px; padding-right: 12px; }
}
