/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-primary: #008C95; /* Deep Aqua / Teal */
    --clr-secondary: #38BDF8; /* Clean Sky Blue */
    --clr-accent: #D4AF37; /* Soft Gold */
    --clr-bg: #F8FAFC; /* Off White */
    --clr-text: #0F172A; /* Dark Navy */
    --clr-text-light: #475569;
    --clr-white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    --gradient-glass: rgba(255, 255, 255, 0.8);
    --gradient-glass-border: rgba(255, 255, 255, 0.5);

    /* Shadows & Border Radius */
    --shadow-soft: 0 10px 30px -5px rgba(0, 140, 149, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(0, 140, 149, 0.2);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Spacing */
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for mobile sticky bar */
    /* padding-bottom for floating CTA on mobile */
    padding-bottom: 80px; 
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.bg-light { background-color: rgba(56, 189, 248, 0.05); }

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

.h2-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.h2-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-padding { padding: var(--section-padding); }
.section-subtitle {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(0, 140, 149, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 140, 149, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
    background: rgba(0, 140, 149, 0.05);
}

.btn-white {
    background: var(--clr-white);
    color: var(--clr-primary);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-text {
    padding: 0;
    color: var(--clr-primary);
    font-weight: 700;
    gap: 5px;
}

.btn-text .arrow {
    transition: transform var(--transition-fast);
}

.btn-text:hover .arrow {
    transform: translateX(-5px); /* RTL */
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* ==========================================================================
   Header & Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--clr-text);
    color: var(--clr-white);
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-btn {
    background-color: var(--clr-accent);
    color: var(--clr-text);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
}

.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all var(--transition-smooth);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-primary);
}

.navbar .nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--clr-text);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--clr-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--clr-text);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    top: -10%; right: -5%;
    width: 500px; height: 500px;
    background: rgba(0, 140, 149, 0.3);
}

.shape-2 {
    bottom: 10%; left: -10%;
    width: 400px; height: 400px;
    background: rgba(56, 189, 248, 0.3);
}

/* Animated Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: float 8s infinite ease-in-out;
}

.bubble-1 { width: 60px; height: 60px; top: 20%; right: 40%; animation-delay: 0s; }
.bubble-2 { width: 40px; height: 40px; top: 60%; right: 10%; animation-delay: 2s; }
.bubble-3 { width: 80px; height: 80px; bottom: 20%; left: 30%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: var(--clr-text);
    margin-bottom: 20px;
    position: relative;
}

.sparkle-icon {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 30px;
}

.hero-trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-trust-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.check-icon {
    color: var(--clr-primary);
    background: rgba(0, 140, 149, 0.1);
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gradient-glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.main-hero-card {
    padding: 20px;
    position: relative;
}

.hero-img {
    border-radius: calc(var(--radius-lg) - 10px);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: var(--clr-white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    font-weight: 700;
    color: var(--clr-text);
    animation: float 6s infinite ease-in-out;
}

.badge-1 { top: 40px; right: -30px; animation-delay: 1s; }
.badge-2 { bottom: 40px; left: -30px; animation-delay: 3s; }

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 140, 149, 0.2);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 140, 149, 0.1), rgba(56, 189, 248, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
    color: var(--clr-white);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--clr-text-light);
    margin-bottom: 25px;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
    background: var(--gradient-primary);
    padding: 30px 0;
    color: var(--clr-white);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-icon { font-size: 1.5rem; }

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-us-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-content { flex: 1; }

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--clr-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform var(--transition-fast);
}

.feature-item:hover { transform: translateX(-5px); }

.feature-icon-box {
    width: 45px; height: 45px;
    background: rgba(0, 140, 149, 0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.feature-text { font-weight: 600; }

.why-us-visual { flex: 1; position: relative; }

.premium-overlap-cards {
    position: relative;
    height: 400px;
}

.overlap-card {
    position: absolute;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 80%;
}

.primary-card {
    background: var(--gradient-primary);
    color: var(--clr-white);
    top: 0; right: 0;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 140, 149, 0.3);
}

.secondary-card {
    background: var(--clr-white);
    bottom: 0; left: 0;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.overlap-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: inherit;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px; height: 80px;
    background: var(--clr-white);
    border: 4px solid var(--clr-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem; font-weight: 800; color: var(--clr-primary);
    box-shadow: var(--shadow-soft);
}

.step-title { margin-bottom: 15px; font-size: 1.3rem; }
.step-desc { color: var(--clr-text-light); }

.step-line {
    flex: 1;
    height: 2px;
    background: dashed 2px var(--clr-primary);
    opacity: 0.3;
    margin: -50px 20px 0;
}

/* ==========================================================================
   Before / After
   ========================================================================== */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ba-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.ba-image-wrapper {
    position: relative;
    padding-top: 66%; /* 3:2 aspect ratio */
}

.ba-image-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    bottom: 15px;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
}

.ba-label.before { right: 15px; color: var(--clr-text-light); }
.ba-label.after { left: 15px; color: var(--clr-primary); }

.ba-title {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* ==========================================================================
   Local SEO
   ========================================================================== */
.seo-content-box {
    background: var(--clr-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.seo-content-box .h2-title { margin-bottom: 30px; }

.seo-text p {
    margin-bottom: 15px;
    color: var(--clr-text-light);
}

.seo-text strong {
    color: var(--clr-text);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.cta-content { position: relative; z-index: 2; }

.cta-title { font-size: 2.5rem; margin-bottom: 20px; color: var(--clr-white); }
.cta-text { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }

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

.cta-bg-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.cta-sparkle { position: absolute; font-size: 2rem; animation: pulse 2s infinite; opacity: 0.5; }
.cta-sparkle.s-1 { top: 20%; right: 10%; }
.cta-sparkle.s-2 { bottom: 20%; left: 10%; animation-delay: 1s; }
.cta-bubble {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.1); top: -50px; left: -50px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-text);
    color: var(--clr-white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.5rem; font-weight: 800; color: var(--clr-white);
    margin-bottom: 20px;
}

.footer-desc { color: rgba(255,255,255,0.7); margin-bottom: 20px; max-width: 400px; }

.footer-heading { font-size: 1.2rem; margin-bottom: 20px; color: var(--clr-accent); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--clr-secondary); padding-right: 5px; }

.footer-contact-info li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 15px; color: rgba(255,255,255,0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.9rem;
}

/* ==========================================================================
   Floating CTAs (Mobile Bottom Bar & Desktop Side)
   ========================================================================== */
.floating-cta-container {
    position: fixed;
    z-index: 1000;
}

/* Desktop Fixed Side Buttons */
@media (min-width: 769px) {
    .floating-cta-container {
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .float-btn {
        width: 60px; height: 60px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transition: transform var(--transition-fast);
    }
    
    .float-btn:hover { transform: scale(1.1); }
    .float-whatsapp { background-color: #25D366; }
    .float-call { background-color: var(--clr-primary); }
    .mobile-only, .mobile-only-text { display: none; }
}

/* Mobile Bottom Bar */
@media (max-width: 768px) {
    body { padding-bottom: 70px; } /* Space for bottom bar */
    
    .floating-cta-container {
        bottom: 0; left: 0; width: 100%;
        background: var(--clr-white);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: flex;
        padding: 10px;
        gap: 10px;
        justify-content: space-around;
    }
    
    .float-btn {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        flex: 1; border-radius: var(--radius-md);
        padding: 8px 0; font-size: 0.8rem; font-weight: 700; gap: 4px;
    }
    
    .float-whatsapp { background-color: #25D366; color: white; }
    .float-call { background-color: var(--clr-white); color: var(--clr-text); border: 1px solid #eee; }
    .float-book { background-color: var(--clr-primary); color: white; display: flex; }
    .mobile-only { display: flex; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-right { opacity: 0; transform: translateX(30px); transition: 0.8s ease-out; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

.fade-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease-out; }
.fade-left.visible { opacity: 1; transform: translateX(0); }

.stagger-item { opacity: 0; transform: translateY(20px); transition: 0.5s ease-out; }
.stagger-item.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.2rem; }
    .hero-container, .why-us-container { flex-direction: column; text-align: center; }
    .hero-trust-points { text-align: right; }
    .hero-cta { justify-content: center; }
    .badge-1, .badge-2 { display: none; } /* Simplify on mobile */
    .steps-container { flex-direction: column; gap: 30px; }
    .step-line { display: none; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-logo, .footer-contact-info li { justify-content: center; }
    .premium-overlap-cards { height: auto; display: flex; flex-direction: column; gap: 20px; }
    .overlap-card { position: relative; width: 100%; top: 0; left: 0; right: 0; bottom: 0; }
}

@media (max-width: 768px) {
    .top-bar { text-align: center; justify-content: center; }
    .top-bar-btn { display: none; } /* Hide btn on top bar for mobile to save space */
    
    .menu-toggle { display: flex; }
    .header-actions .btn { display: none; } /* Hide header buttons, rely on bottom bar */
    
    .navbar {
        position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
        background: var(--clr-white); flex-direction: column; padding: 40px 20px;
        transition: left var(--transition-smooth);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .navbar.active { left: 0; }
    .nav-links { flex-direction: column; text-align: center; font-size: 1.2rem; gap: 30px; }
    
    .hero { min-height: auto; padding-top: 40px; }
    .hero-title { font-size: 1.8rem; }
    .hero-trust-points { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .seo-content-box { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .section-padding { padding: 50px 0; }
    .h2-title { font-size: 1.8rem; }
    .service-card { padding: 30px 20px; }
    .cta-box { padding: 40px 20px; }
}
/* ==========================================================================
   Inner Pages Specifics
   ========================================================================== */
/* Dropdown Menu */
.nav-item-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; right: 0; min-width: 220px;
    background: var(--clr-white); box-shadow: var(--shadow-soft);
    border-radius: var(--radius-md); padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li { padding: 5px 20px; }
.dropdown-menu a { display: block; color: var(--clr-text); font-weight: 500; font-size: 0.95rem; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { color: var(--clr-primary); padding-right: 5px; }

/* Breadcrumbs */
.breadcrumb { margin-bottom: 20px; font-size: 0.9rem; color: var(--clr-text-light); }
.breadcrumb a { color: var(--clr-primary); font-weight: 600; }
.breadcrumb span { margin: 0 5px; }

/* Service Hero Content */
.service-hero-content { background: var(--clr-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); position: relative; z-index: 2; border: 1px solid rgba(0,140,149,0.1); }
.service-intro-text { font-size: 1.1rem; color: var(--clr-text-light); margin-bottom: 20px; }

/* Process Timeline */
.process-timeline { display: flex; flex-direction: column; gap: 20px; position: relative; padding-right: 30px; }
.process-timeline::before { content: ''; position: absolute; right: 10px; top: 0; bottom: 0; width: 2px; background: var(--gradient-primary); opacity: 0.3; }
.process-step { position: relative; background: var(--clr-white); padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.03); transition: transform var(--transition-fast); }
.process-step:hover { transform: translateX(-5px); }
.process-step::before { content: ''; position: absolute; right: -26px; top: 25px; width: 14px; height: 14px; background: var(--clr-primary); border-radius: 50%; border: 3px solid var(--clr-white); box-shadow: 0 0 0 2px var(--clr-primary); }
.process-step h4 { color: var(--clr-primary); margin-bottom: 5px; font-size: 1.2rem; }
.process-step p { color: var(--clr-text-light); font-size: 0.95rem; }

/* Benefits Grid */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.benefit-card { background: var(--clr-white); padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); display: flex; align-items: flex-start; gap: 15px; border: 1px solid rgba(0,0,0,0.03); transition: transform var(--transition-fast); }
.benefit-card:hover { transform: translateY(-5px); }
.benefit-icon { font-size: 1.5rem; color: var(--clr-primary); }
.benefit-title { font-weight: 700; margin-bottom: 5px; }
.benefit-card p { color: var(--clr-text-light); font-size: 0.9rem; }

/* Problems List */
.problems-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.problems-list li { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.problems-list li .icon { color: #ef4444; font-size: 1.2rem; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--clr-white); margin-bottom: 15px; border-radius: var(--radius-md); box-shadow: 0 2px 10px rgba(0,0,0,0.02); overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.faq-question { padding: 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.1rem; }
.faq-question .icon { transition: transform 0.3s; font-size: 1.2rem; color: var(--clr-primary); }
.faq-item.active .faq-question .icon { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--clr-text-light); }
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 500px; }

/* Content Formatting */
.service-overview-content h3 { font-size: 1.5rem; color: var(--clr-primary); margin-top: 30px; margin-bottom: 15px; }
.service-overview-content p { color: var(--clr-text-light); margin-bottom: 15px; font-size: 1.05rem; }

/* Related Services */
.related-services { margin-top: 80px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 80px; }

/* Mobile Dropdown Fix */
@media (max-width: 768px) {
    .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding-right: 20px; background: rgba(0,0,0,0.02); margin-top: 10px; }
    .nav-item-dropdown.active .dropdown-menu { display: block; }
}

/* ==========================================================================
   New Inner Pages Components (About, Contact, Reviews, Gallery, Why Us)
   ========================================================================== */

/* Brand Story & Values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.value-card { background: var(--clr-white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); text-align: center; border: 1px solid rgba(0,0,0,0.03); transition: transform var(--transition-fast); }
.value-card:hover { transform: translateY(-5px); border-color: rgba(0, 140, 149, 0.2); }
.value-icon { font-size: 2.5rem; margin-bottom: 15px; color: var(--clr-primary); }

/* Contact Form */
.booking-form { background: var(--clr-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--clr-text); }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-md); font-family: inherit; font-size: 1rem; transition: border-color var(--transition-fast); }
.form-control:focus { outline: none; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(0, 140, 149, 0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }
.error-msg { color: #ef4444; font-size: 0.85rem; margin-top: 5px; display: none; }
.form-group.has-error .form-control { border-color: #ef4444; }
.form-group.has-error .error-msg { display: block; }

/* Contact Cards */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.contact-info-card { background: var(--clr-white); padding: 25px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-soft); }

/* Review Placeholders */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background: var(--clr-white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); position: relative; }
.review-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-size: 4rem; color: rgba(0, 140, 149, 0.1); font-family: sans-serif; line-height: 1; }
.review-text { color: var(--clr-text-light); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }

/* Gallery Components */
.gallery-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.gallery-tab { padding: 8px 20px; background: var(--clr-white); border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-full); cursor: pointer; font-weight: 600; transition: all var(--transition-fast); }
.gallery-tab.active, .gallery-tab:hover { background: var(--clr-primary); color: var(--clr-white); border-color: var(--clr-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; background: var(--clr-white); box-shadow: var(--shadow-soft); }
.gallery-img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, rgba(0, 140, 149, 0.05), rgba(56, 189, 248, 0.05)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--clr-primary); position: relative; }
.gallery-info { padding: 20px; }
.gallery-cat { font-size: 0.85rem; color: var(--clr-primary); font-weight: 700; margin-bottom: 5px; }

/* Comparison Table */
.comparison-table-wrapper { overflow-x: auto; margin-top: 40px; background: var(--clr-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.comparison-table { width: 100%; border-collapse: collapse; text-align: right; min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.comparison-table th { background: rgba(0, 140, 149, 0.05); font-weight: 700; color: var(--clr-text); width: 33%; }
.comparison-table th:first-child { width: 34%; }
.comparison-table .highlight-col { background: rgba(0, 140, 149, 0.02); border-right: 2px solid var(--clr-primary); border-left: 2px solid var(--clr-primary); }
.comparison-table .highlight-header { background: var(--clr-primary); color: var(--clr-white); text-align: center; font-size: 1.2rem; }
.comparison-table td { color: var(--clr-text-light); }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:last-child td { border-bottom: none; }
.check-green { color: #10b981; font-weight: bold; font-size: 1.2rem; }
.cross-red { color: #ef4444; font-size: 1.2rem; }

/* Mid-Page CTA */
.mid-cta-card { background: linear-gradient(135deg, rgba(0, 140, 149, 0.05), rgba(56, 189, 248, 0.05)); border: 1px solid rgba(0, 140, 149, 0.1); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin: 60px auto; max-width: 800px; }

/* Floating CTA Tooltip Override */
.float-whatsapp { position: relative; }
.float-whatsapp::before {
    content: "تواصل واتساب"; position: absolute; right: calc(100% + 15px); top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.8); color: white; padding: 6px 12px; border-radius: 6px; font-size: 0.85rem;
    white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; pointer-events: none;
}
.float-whatsapp:hover::before { opacity: 1; visibility: visible; }
@media (max-width: 768px) { .float-whatsapp::before { display: none; } }
