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

:root {
    /* Color Palette */
    --primary-dark: #07251e;     /* Deep medical/eco green */
    --primary-mid: #0d4236;      /* Rich branding green */
    --primary-light: #165b4c;    /* Soft brand green */
    --accent-mint: #2ec4b6;     /* Fresh hygienic mint */
    --accent-lime: #10b981;     /* Active bio protection green */
    --accent-glow: rgba(46, 196, 182, 0.15);
    --accent-orange: #ff6b00;   /* High-contrast call to action */
    --accent-yellow: #f59e0b;   /* Gold warranty/trust accent */
    
    /* Backgrounds */
    --bg-base: #f9fbfb;
    --bg-white: #ffffff;
    --bg-dark-section: #051a15;
    
    /* Texts */
    --text-title: #0f1d1a;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-white: #ffffff;
    
    /* System variables */
    --font-cairo: 'Cairo', sans-serif;
    --font-tajawal: 'Tajawal', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-round: 50px;
    
    --shadow-soft: 0 10px 30px rgba(7, 37, 30, 0.03);
    --shadow-medium: 0 20px 40px rgba(7, 37, 30, 0.06);
    --shadow-hover: 0 22px 48px rgba(7, 37, 30, 0.12);
    --shadow-glow: 0 0 25px rgba(46, 196, 182, 0.3);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    direction: rtl;
}

body {
    font-family: var(--font-tajawal);
    background-color: var(--bg-base);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-cairo);
    color: var(--text-title);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--border-radius-round);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-lime);
}

/* Background Grids & Patterns */
.bg-grid-pattern {
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(46, 196, 182, 0.04) 1px, transparent 0),
        radial-gradient(circle at 2px 2px, rgba(16, 185, 129, 0.02) 2px, transparent 0);
    background-size: 24px 24px, 48px 48px;
}

/* Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.9; box-shadow: 0 0 15px rgba(46, 196, 182, 0.2); }
    50% { transform: scale(1.03); opacity: 1; box-shadow: 0 0 25px rgba(46, 196, 182, 0.45); }
}

@keyframes scan-line {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

@keyframes bg-waves {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shiver {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(1px, -1px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes draw-progress {
    0% { height: 0%; }
    100% { height: 100%; }
}

/* Scroll Reveal Classes (JS trigger) */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
}

.reveal-fade-up {
    transform: translateY(40px);
}
.reveal-fade-up.active {
    transform: translateY(0);
}

.reveal-slide-right {
    transform: translateX(50px);
}
.reveal-slide-right.active {
    transform: translateX(0);
}

.reveal-slide-left {
    transform: translateX(-50px);
}
.reveal-slide-left.active {
    transform: translateX(0);
}

.reveal-scale {
    transform: scale(0.9);
}
.reveal-scale.active {
    transform: scale(1);
}

/* Floating Animations Classes */
.anim-float {
    animation: float 6s ease-in-out infinite;
}
.anim-float-slow {
    animation: float-slow 9s ease-in-out infinite;
}

/* Button Global Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-round);
    font-family: var(--font-cairo);
    font-weight: 700;
    font-size: 0.95rem;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: #1ebd59;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    transform: translateY(-3px) scale(1.02);
}

.btn-phone {
    background-color: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}
.btn-phone:hover {
    background-color: #e05e00;
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
    background-color: var(--primary-mid);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border-color: var(--bg-white);
    transform: translateY(-3px);
}

/* Badge/Tag Styles */
.badge-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--border-radius-round);
    background-color: rgba(46, 196, 182, 0.08);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(46, 196, 182, 0.15);
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.glass-panel-dark {
    background: rgba(7, 37, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* HEADER (NAVBAR) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(7, 37, 30, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}
.header.scrolled .logo-title {
    color: var(--text-white);
}
.header.scrolled .logo-subtitle {
    color: var(--accent-mint);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrap {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-mint), var(--primary-light));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.35);
}

.logo-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--bg-white);
    stroke-width: 2.2;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
    transition: var(--transition-fast);
}

.logo-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.2px;
    transition: var(--transition-fast);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-tajawal);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--accent-mint);
    transition: var(--transition-fast);
    border-radius: var(--border-radius-round);
}

.nav-link:hover {
    color: var(--accent-mint) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav CTAs Desktop */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Hamburger toggle menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: var(--border-radius-round);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: right;
}

.header.scrolled .menu-toggle span {
    background-color: var(--bg-white);
}

/* Mobile responsive menu */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 100px 30px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.15rem;
        width: 100%;
    }
    
    .nav-actions {
        display: none; /* Handled by header icons or sticky mobile CTA */
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-2px, -3px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-2px, 3px);
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: #041411;
    overflow: hidden;
}

/* Dynamic background animations */
.hero-bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(13, 66, 54, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(46, 196, 182, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.hero-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.12) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Hero Content Styling */
.hero-content {
    text-align: right;
}

.hero-badge {
    margin-bottom: 20px;
    background-color: rgba(46, 196, 182, 0.08);
    color: var(--accent-mint);
    border: 1px solid rgba(46, 196, 182, 0.15);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(120deg, var(--accent-mint) 20%, var(--bg-white) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-mint);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Trust Bar */
.hero-trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.trust-title {
    font-size: 0.85rem;
    color: var(--accent-mint);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-lime);
    flex-shrink: 0;
}

/* Hero Visual Graphics (Shield & Waves) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 480px;
}

.visual-canvas {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Futuristic Scanline Effect Overlay */
.scanner-shield-container {
    position: relative;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.shield-graphic-wrap {
    position: relative;
    width: 260px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 66, 54, 0.8) 0%, rgba(4, 20, 17, 0.95) 100%);
    border: 2px solid var(--accent-mint);
    box-shadow: 0 15px 45px rgba(46, 196, 182, 0.25);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-mint), var(--accent-lime), var(--accent-mint), transparent);
    box-shadow: 0 0 15px var(--accent-mint);
    animation: scan-line 4s linear infinite;
    pointer-events: none;
    z-index: 10;
}

.shield-icon {
    width: 80px;
    height: 80px;
    stroke: var(--accent-mint);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(46, 196, 182, 0.5));
}

.shield-text-1 {
    font-family: var(--font-cairo);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.shield-text-2 {
    font-family: var(--font-tajawal);
    color: var(--accent-lime);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Floating Clean Energy Waves */
.clean-wave-1, .clean-wave-2 {
    position: absolute;
    border-radius: 43%;
    border: 1px solid rgba(46, 196, 182, 0.08);
    pointer-events: none;
}

.clean-wave-1 {
    width: 380px;
    height: 380px;
    background: transparent;
    animation: float-slow 12s linear infinite;
    z-index: 3;
}

.clean-wave-2 {
    width: 440px;
    height: 440px;
    background: transparent;
    border-color: rgba(16, 185, 129, 0.05);
    animation: float 16s linear infinite;
    z-index: 2;
}

/* Floating Pest Targets (Clean representation of pushed-away pests) */
.pest-bubble {
    position: absolute;
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: var(--transition-smooth);
}

.pest-bubble svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.25);
    fill: none;
}

.pest-bubble::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid transparent;
    border-radius: 50%;
    border-top-color: var(--accent-orange);
    opacity: 0.3;
    animation: float 4s linear infinite;
}

.pest-bubble.pest-1 {
    top: 15%;
    right: 5%;
    animation: float-slow 7s ease-in-out infinite alternate;
}
.pest-bubble.pest-2 {
    bottom: 20%;
    left: -2%;
    animation: float 9s ease-in-out infinite alternate;
}
.pest-bubble.pest-3 {
    top: 65%;
    right: 0%;
    animation: float-slow 10s ease-in-out infinite alternate;
}

.pest-bubble:hover {
    background: rgba(255, 107, 0, 0.05);
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

.pest-bubble:hover svg {
    stroke: var(--accent-orange);
    animation: shiver 0.3s linear infinite;
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 0 80px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-desc {
        margin: 0 auto 35px;
    }
    .hero-ctas {
        justify-content: center;
        width: 100%;
    }
    .hero-trust-bar {
        width: 100%;
        max-width: 550px;
    }
    .hero-visual {
        height: 380px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-subtitle {
        font-size: 1.35rem;
    }
    .trust-items {
        grid-template-columns: 1fr;
    }
    .visual-canvas {
        transform: scale(0.85);
    }
}

/* STATS COUNTER BAR */
.stats-section {
    position: relative;
    z-index: 20;
    margin-top: -50px;
    padding: 0 24px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.stats-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,248,245,0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    z-index: -1;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    left: -15px;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(13, 66, 54, 0.15), transparent);
}

.stat-icon {
    width: 46px;
    height: 46px;
    background: rgba(46, 196, 182, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary-light);
    transition: var(--transition-fast);
}

.stat-card:hover .stat-icon {
    background: var(--primary-light);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.stat-number {
    font-family: var(--font-cairo);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-body);
}

@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .stat-card:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-section {
        margin-top: -30px;
    }
    .stats-container {
        grid-template-columns: 1fr;
        padding: 35px 20px;
        gap: 30px;
    }
    .stat-card::after {
        display: none !important;
    }
}

/* SECTION HEADER TEMPLATE */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-pre {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-mint);
    border-radius: var(--border-radius-round);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px;
}

/* SECTION PADDINGS */
.section-padding {
    padding: 100px 0;
}

/* PROBLEM & SOLUTION SECTION */
.problem-solution {
    background-color: var(--bg-base);
    overflow: hidden;
}

.problem-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.problem-text {
    text-align: right;
}

.problem-badge {
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 0, 0.15);
    margin-bottom: 20px;
}

.problem-heading {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.problem-para {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 25px;
}

.problem-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.prob-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.prob-feat-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-lime);
    flex-shrink: 0;
    margin-top: 2px;
}

.prob-feat-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Problem Cards Grid (Visual representations of problems resolved) */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.12);
}

.prob-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 0, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: var(--transition-fast);
}

.problem-card:hover .prob-card-icon {
    background: var(--accent-orange);
    color: var(--bg-white);
}

.prob-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.prob-card-title {
    font-family: var(--font-cairo);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.prob-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .problem-cards {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .problem-heading {
        font-size: 1.7rem;
    }
    .problem-cards {
        grid-template-columns: 1fr;
    }
}

/* SERVICES SECTION */
.services-section {
    background-color: var(--bg-white);
}

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-base);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    border: 1px solid rgba(13, 66, 54, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    z-index: 1;
}

/* Micro dots background pattern inside cards */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(46, 196, 182, 0.05) 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-mint), var(--accent-lime));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    background: var(--bg-white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 196, 182, 0.2);
}

.service-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(13, 66, 54, 0.05);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: var(--primary-light);
    color: var(--bg-white);
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(13, 66, 54, 0.15);
}

.service-icon-wrap svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card .btn-whatsapp {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-card {
        padding: 30px 24px;
    }
}

/* WHY US SECTION */
.why-us {
    background-color: var(--bg-dark-section);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.why-us .section-title {
    color: var(--text-white);
}
.why-us .section-desc {
    color: #a0aec0;
}

.why-us-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Timeline Cards Styling */
.why-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Timeline Vertical Line on Desktop */
.why-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-mint) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 5;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

/* Dots along the timeline */
.timeline-dot {
    position: absolute;
    right: calc(50% - 8px);
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-mint);
    border: 3px solid var(--primary-dark);
    box-shadow: 0 0 10px var(--accent-mint);
    z-index: 10;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-orange);
    box-shadow: 0 0 15px var(--accent-orange);
    transform: scale(1.2);
}

.timeline-content-wrap {
    width: 45%;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-mint);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.timeline-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(46, 196, 182, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
    transition: var(--transition-fast);
}

.timeline-card:hover .timeline-card-icon {
    background: var(--accent-mint);
    color: var(--primary-dark);
}

.timeline-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.timeline-card-title {
    font-family: var(--font-cairo);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

.timeline-card-desc {
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-timeline::before {
        right: 20px;
    }
    
    .timeline-dot {
        right: 12px;
        top: 25px;
    }
    
    .timeline-item {
        justify-content: flex-end !important;
        padding-right: 40px;
    }
    
    .timeline-content-wrap {
        width: 100%;
    }
}

/* HOW WE WORK (STEPS) */
.steps-section {
    background-color: var(--bg-white);
    position: relative;
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Stepper Connector Line (Desktop) */
.stepper::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: rgba(13, 66, 54, 0.08);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
}

.step-number-wrap {
    width: 80px;
    height: 80px;
    background: var(--bg-base);
    border: 2px solid rgba(13, 66, 54, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.step-number {
    font-family: var(--font-cairo);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-light);
    transition: var(--transition-fast);
}

.step-icon-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    background: var(--accent-mint);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-white);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.step-icon-badge svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
}

.step-item:hover .step-number-wrap {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 66, 54, 0.2);
}

.step-item:hover .step-number {
    color: var(--text-white);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 250px;
}

@media (max-width: 900px) {
    .stepper {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .stepper::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .stepper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* WARRANTY & TRUST SECTION */
.warranty-section {
    background-color: var(--bg-base);
}

.warranty-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

/* Badge Visual representation */
.warranty-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.badge-seal-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-seal-outer {
    position: absolute;
    inset: 0;
    border: 3px dashed var(--accent-mint);
    border-radius: 50%;
    animation: float-slow 10s linear infinite;
}

.badge-seal-inner {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    border: 4px solid var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(7, 37, 30, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-white);
    padding: 30px;
    position: relative;
    z-index: 5;
}

.badge-seal-inner svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent-yellow);
    fill: none;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.5));
}

.badge-title-1 {
    font-family: var(--font-cairo);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.badge-title-2 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-mint);
    margin-top: 5px;
}

/* Warranty Content */
.warranty-content {
    text-align: right;
}

.warranty-badge {
    background-color: rgba(245, 158, 11, 0.08);
    color: var(--accent-yellow);
    border: 1px solid rgba(245, 158, 11, 0.15);
    margin-bottom: 20px;
}

.warranty-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.warranty-para {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 35px;
}

.warranty-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.w-benefit-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
}

.w-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.w-benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.w-benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.w-benefit-info {
    display: flex;
    flex-direction: column;
}

.w-benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.w-benefit-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .warranty-visual {
        order: -1;
    }
}

@media (max-width: 500px) {
    .warranty-benefits {
        grid-template-columns: 1fr;
    }
}

/* SERVICE AREAS SECTION */
.areas-section {
    background-color: var(--bg-white);
}

.areas-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.area-chip {
    padding: 10px 22px;
    border-radius: var(--border-radius-round);
    background-color: var(--bg-base);
    border: 1px solid rgba(13, 66, 54, 0.04);
    font-family: var(--font-tajawal);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
    transition: var(--transition-fast);
}

.area-chip svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-lime);
    fill: none;
    transition: var(--transition-fast);
}

.area-chip:hover {
    background-color: var(--primary-light);
    color: var(--text-white);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 66, 54, 0.15);
}

.area-chip:hover svg {
    stroke: var(--accent-mint);
}

.areas-cta-wrap {
    display: flex;
    justify-content: center;
}

/* MID-PAGE BANNER CTA */
.mid-cta-banner {
    position: relative;
    padding: 80px 24px;
    background-color: #041411;
    overflow: hidden;
}

.mid-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.mid-cta-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    opacity: 0.05;
    z-index: 2;
}

.mid-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-white);
}

.mid-cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 15px;
}

.mid-cta-title span {
    color: var(--accent-mint);
}

.mid-cta-desc {
    font-size: 1.05rem;
    color: #a0aec0;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 35px;
}

.mid-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 600px) {
    .mid-cta-title {
        font-size: 1.8rem;
    }
    .mid-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* FAQ ACCORDION SECTION */
.faq-section {
    background-color: var(--bg-base);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question {
    font-family: var(--font-cairo);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(13, 66, 54, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: var(--transition-smooth);
}

.faq-icon-wrap svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.4s ease;
}

.faq-item.active {
    border-color: rgba(46, 196, 182, 0.25);
    box-shadow: var(--shadow-medium);
}

.faq-item.active .faq-header {
    background-color: rgba(46, 196, 182, 0.03);
}

.faq-item.active .faq-icon-wrap {
    background-color: var(--primary-light);
    color: var(--text-white);
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 30px 24px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

@media (max-width: 500px) {
    .faq-header {
        padding: 20px;
    }
    .faq-question {
        font-size: 0.98rem;
    }
}

/* FOOTER SECTION */
.footer {
    background-color: var(--bg-dark-section);
    color: #a0aec0;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col-title {
    font-family: var(--font-cairo);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-mint);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-link-item svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent-mint);
    fill: none;
}

.footer-link-item:hover {
    color: var(--accent-mint);
    transform: translateX(-4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-mint);
    fill: none;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
}

.footer-contact-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-contact-val {
    font-weight: 600;
    color: var(--text-white);
    direction: ltr;
    text-align: right;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-rights {
    color: var(--text-muted);
}

.footer-rights span {
    color: var(--accent-mint);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* ==================== SUBPAGES & DROPDOWN STYLES ==================== */

/* Header Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-item-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-item-dropdown .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(7, 37, 30, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(46, 196, 182, 0.15);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius-md);
    min-width: 270px;
    padding: 12px 0;
    margin-top: 10px;
    z-index: 1000;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.nav-item-dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-item-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
    color: var(--accent-mint);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-family: var(--font-cairo);
    color: var(--text-white);
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(46, 196, 182, 0.08);
    color: var(--accent-mint);
    padding-right: 24px;
}

/* Breadcrumbs Styling */
.breadcrumbs-nav {
    background: rgba(7, 37, 30, 0.04);
    border-bottom: 1px solid rgba(7, 37, 30, 0.06);
    padding: 14px 0;
    font-size: 0.85rem;
    font-family: var(--font-cairo);
}

.breadcrumbs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--text-muted);
}

.breadcrumbs-container a {
    color: var(--primary-light);
    font-weight: 500;
}

.breadcrumbs-container a:hover {
    color: var(--accent-mint);
}

.breadcrumbs-container span {
    color: var(--text-title);
    font-weight: 600;
}

.breadcrumbs-separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Service Hero Layouts */
.service-hero {
    position: relative;
    padding: 140px 0 90px;
    background: radial-gradient(circle at 10% 20%, rgba(7, 37, 30, 0.98) 0%, rgba(5, 26, 21, 0.99) 90%);
    color: var(--text-white);
    overflow: hidden;
}

.service-hero .hero-badge {
    background: rgba(46, 196, 182, 0.1);
    color: var(--accent-mint);
    border: 1px solid rgba(46, 196, 182, 0.2);
    margin-bottom: 24px;
}

.service-hero .hero-title {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-hero .hero-title span {
    color: var(--accent-mint);
}

.service-hero .hero-subtitle {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.5;
}

.service-hero .hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 650px;
}

/* Service Hero Variations */
.hero-centered {
    text-align: center;
    padding: 150px 0 100px;
}

.hero-centered .hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.hero-centered .hero-ctas {
    justify-content: center;
}

.hero-centered .trust-items {
    justify-content: center;
}

/* Symptoms Section */
.ssymptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.symptom-card {
    background: var(--bg-white);
    border: 1px solid rgba(7, 37, 30, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 196, 182, 0.3);
}

.symptom-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 0, 0.08);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.symptom-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
}

.symptom-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-title);
}

.symptom-card-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Spread Section */
.spread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spread-card {
    background: var(--bg-white);
    border: 1px solid rgba(7, 37, 30, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.spread-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-mint);
    opacity: 0.7;
}

.spread-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.spread-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-title);
}

.spread-card-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Treatment Section */
.treatment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.treatment-step-card {
    background: var(--bg-white);
    border: 1px solid rgba(7, 37, 30, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.treatment-step-card:hover {
    border-color: var(--accent-mint);
    box-shadow: var(--shadow-medium);
}

.treatment-step-num {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-mid);
    color: var(--text-white);
    border-radius: var(--border-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cairo);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(13, 66, 54, 0.2);
}

.treatment-step-title {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* Internal Links Related Services */
.related-section {
    background: rgba(7, 37, 30, 0.02);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.related-card {
    background: var(--bg-white);
    border: 1px solid rgba(7, 37, 30, 0.04);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(46, 196, 182, 0.2);
}

.related-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.related-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 66, 54, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-mid);
}

.related-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.related-card-title {
    font-size: 1.15rem;
    color: var(--text-title);
}

.related-card-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
    flex-grow: 1;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-cairo);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-mid);
    align-self: flex-start;
}

.related-card:hover .related-card-link {
    color: var(--accent-mint);
}

.related-card-link svg {
    transition: transform 0.2s;
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.related-card:hover .related-card-link svg {
    transform: translateX(-4px);
}

/* Static Inline CTA Banner */
.inner-cta-inline {
    background: radial-gradient(circle at 10% 20%, var(--primary-mid) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    color: var(--text-white);
    margin: 60px 0;
    border: 1px solid rgba(46, 196, 182, 0.15);
    box-shadow: var(--shadow-medium);
}

.inner-cta-inline-title {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.inner-cta-inline-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.inner-cta-inline-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Custom Responsive Styles for service pages */
@media (max-width: 991px) {
    .service-hero .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .nav-item-dropdown .dropdown-menu {
        display: none !important; /* Hide dropdown inside hamburger menu, items should be regular links on mobile */
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    .service-hero .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .service-hero .hero-ctas {
        justify-content: center;
    }
    .service-hero .trust-items {
        justify-content: center;
    }
    .inner-cta-inline {
        padding: 30px 20px;
    }
    .inner-cta-inline-title {
        font-size: 1.5rem;
    }
}

/* ==================== CRO & CONVERSION ELEMENTS ==================== */

/* Offers Bar */
.offers-bar {
    background-color: #041411;
    padding: 0 0 30px 0;
    position: relative;
    z-index: 10;
}
.offers-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(46, 196, 182, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 200px;
    max-width: 280px;
    transition: var(--transition-fast);
}
.offer-card:hover {
    background: rgba(46, 196, 182, 0.1);
    transform: translateY(-3px);
}
.offer-icon {
    color: var(--accent-mint);
    display: flex;
}
.offer-text {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
}
.offers-title {
    text-align: center;
    color: var(--accent-mint);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Comparison Section (Bento) */
.comparison-section {
    background-color: var(--bg-white);
}
.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.comp-card {
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}
.comp-card-bad {
    background: #fff5f5;
    border: 1px solid #fecaca;
}
.comp-card-good {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    color: var(--text-white);
}
.comp-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.comp-card-bad .comp-title { color: #dc2626; }
.comp-card-good .comp-title { color: var(--accent-mint); }
.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.comp-card-bad .comp-list li { color: #7f1d1d; }
.comp-card-good .comp-list li { color: #e2e8f0; }

/* Sticky Mobile CTA Bar */
.sticky-mobile-cta {
    position: fixed;
    bottom: -120px; /* hidden initially */
    left: 0;
    width: 100%;
    background: rgba(7, 37, 30, 0.96); /* Sleek dark theme */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px 24px 16px; /* bottom padding for iOS home indicator */
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-mobile-cta.visible {
    bottom: 0;
}
@media (min-width: 769px) {
    .sticky-mobile-cta { display: none !important; }
}
.sticky-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}
.sticky-mobile-cta:not(:has(.sticky-cta-grid)) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.sticky-mobile-cta .btn {
    padding: 12px 10px;
    font-size: 0.95rem;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--border-radius-md);
}
.sticky-text {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--accent-mint);
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 12px 12px 0 0;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    body {
        padding-bottom: 90px !important; /* Avoid footer overlap */
    }
}

/* Trust Bento Grid */
.trust-section {
    background-color: var(--bg-base);
}
.trust-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-top: 40px;
}
.trust-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.trust-card-main {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: var(--text-white);
}
.trust-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    color: var(--accent-mint);
}
.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.trust-card-main h3 {
    color: var(--accent-mint);
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.trust-card-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

/* Objections FAQ */
.faq-accordion .accordion-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.accordion-header {
    width: 100%;
    text-align: right;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-cairo);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-dark);
}
.accordion-header svg {
    transition: transform 0.3s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-body);
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 20px 20px;
}
.accordion-item.active .accordion-header {
    color: var(--primary-light);
}
.accordion-item.active .accordion-header svg {
    transform: rotate(180deg);
}

/* Microcopy */
.micro-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    display: block;
    font-weight: 600;
}
.micro-trust-dark {
    color: rgba(255,255,255,0.7);
}

/* CTAs */
.cta-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    margin: 60px auto;
    border-top: 4px solid var(--accent-mint);
    max-width: 900px;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
}
.cta-box > * {
    position: relative;
    z-index: 1;
}
.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.cta-box p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 25px;
}
.cta-box .btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsive tweaks for CRO elements */
@media (max-width: 768px) {
    .offers-wrapper { flex-direction: column; }
    .offer-card { max-width: 100%; width: 100%; }
    .comp-grid { grid-template-columns: 1fr; }
    .trust-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .trust-card-main { grid-column: span 1; grid-row: span 1; padding: 40px 20px; }
    .cta-box { padding: 40px 20px; }
    .cta-box h3 { font-size: 1.5rem; }
    .comp-card { padding: 25px; }
}

/* ==================== PREFERS REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    .reveal,
    .reveal-fade-up,
    .reveal-slide-right,
    .reveal-slide-left,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .anim-float,
    .anim-float-slow,
    .clean-wave-1,
    .clean-wave-2,
    .pulse-glow {
        animation: none !important;
        transform: none !important;
    }
}

