/* Style Sheet for Plumber & Electrician Services Landing Page */
/* Business: Nuam Al-Ikhtiyarat Trading Establishment */

/* ========================================== */
/* 1. CSS VARIABLES & DESIGN SYSTEM          */
/* ========================================== */
:root {
    /* Fonts */
    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Noto Nastaliq Urdu', 'Aref Ruqaa', 'Tajawal', serif;

    /* Theme-independent Colors */
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-border: #334155;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    --success: #10b981;
    --white: #ffffff;
    --grey-100: #f8fafc;
    --grey-200: #e2e8f0;
    --grey-300: #cbd5e1;
    --grey-800: #1e293b;

    /* Transition */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Theme Dependent variables (Defaults to Plumbing Theme) */
    --theme-primary: #e25822;
    --theme-primary-hover: #c94613;
    --theme-glow: rgba(226, 88, 34, 0.35);
    --theme-glow-weak: rgba(226, 88, 34, 0.1);
    --theme-gradient: linear-gradient(135deg, #e25822 0%, #f97316 100%);
    --theme-gradient-hover: linear-gradient(135deg, #c94613 0%, #ea580c 100%);
    --theme-badge-bg: rgba(226, 88, 34, 0.15);
    --theme-badge-text: #ff8f5e;
}

/* Theme Classes */
body.theme-plumbing {
    --theme-primary: #e25822;
    --theme-primary-hover: #c94613;
    --theme-glow: rgba(226, 88, 34, 0.35);
    --theme-glow-weak: rgba(226, 88, 34, 0.1);
    --theme-gradient: linear-gradient(135deg, #e25822 0%, #f97316 100%);
    --theme-gradient-hover: linear-gradient(135deg, #c94613 0%, #ea580c 100%);
    --theme-badge-bg: rgba(226, 88, 34, 0.15);
    --theme-badge-text: #ff8f5e;
}

body.theme-electrical {
    --theme-primary: #ea580c;
    --theme-primary-hover: #c2410c;
    --theme-glow: rgba(234, 88, 12, 0.35);
    --theme-glow-weak: rgba(234, 88, 12, 0.1);
    --theme-gradient: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    --theme-gradient-hover: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    --theme-badge-bg: rgba(234, 88, 12, 0.15);
    --theme-badge-text: #ff8f5e;
}

/* ========================================== */
/* 2. GENERAL RESET & BASE STYLES            */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-en);
    background-color: var(--grey-100);
    color: var(--grey-800);
    line-height: 1.6;
    transition: var(--transition-smooth);
    overflow-x: hidden;
}

/* Arabic Mode Adjustments */
html[dir="rtl"] body {
    font-family: var(--font-ar);
    line-height: 1.8;
}

p {
    text-align: justify;
    text-align-last: start;
}

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

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

ul {
    list-style: none;
}

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

.hidden {
    display: none !important;
}

/* Text Center Helper */
.text-center {
    text-align: center;
}

/* ========================================== */
/* 3. BUTTONS & UI COMPONENTS                */
/* ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

/* Header Action button */
.btn-primary {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

/* Dynamic theme CTAs */
.btn-primary-theme {
    background: var(--theme-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px var(--theme-glow);
}

.btn-primary-theme:hover {
    background: var(--theme-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--theme-glow);
}

.btn-secondary-theme {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary-theme:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
}

.btn-phone-dark {
    background: var(--dark-bg);
    color: var(--white);
    border: 1px solid var(--dark-border);
}

.btn-phone-dark:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
    transform: translateY(-2px);
}

.btn-whatsapp-booking {
    background: #25d366;
    color: var(--white);
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-booking:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Top bar Language switcher */
.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    background: var(--theme-primary);
    border-color: var(--theme-primary);
}

/* Badge overlay */
.badge-accent {
    display: inline-block;
    padding: 6px 16px;
    background: var(--theme-badge-bg);
    color: var(--theme-badge-text);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* ========================================== */
/* 4. HEADER NAV                              */
/* ========================================== */

.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 100px;
    position: sticky;
    top: 15px;
    margin: 15px auto 0 auto;
    width: 95%;
    max-width: 1200px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

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

.logo-img-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--theme-glow);
    transition: var(--transition-smooth);
    background: var(--white);
    border: 1px solid var(--grey-200);
}

.header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1.company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.1;
}

.logo-text span.sub-logo {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

/* Navigation Links */
.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--theme-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-primary);
    transition: var(--transition-smooth);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-bg);
}

.header-lang-switch {
    margin-right: auto;
    margin-left: 20px;
}

html[dir="rtl"] .header-lang-switch {
    margin-right: 20px;
    margin-left: auto;
}

.lang-btn-navbar {
    background-color: var(--theme-primary);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--theme-glow-weak);
    transition: var(--transition-smooth);
}

.lang-btn-navbar:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--theme-glow);
}

@media (max-width: 768px) {
    .header-lang-switch {
        margin: 0 15px 0 15px;
    }
    .lang-btn-navbar {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

/* ========================================== */
/* 5. MOBILE DRAWER NAVIGATION               */
/* ========================================== */
.mobile-drawer {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 90vh;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 32px 32px;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open {
    top: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--grey-200);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.drawer-lang-switch {
    margin-bottom: 25px;
}

.lang-btn-drawer {
    background-color: var(--theme-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px var(--theme-glow-weak);
    transition: var(--transition-smooth);
}

.lang-btn-drawer:hover {
    background-color: var(--theme-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--theme-glow);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grey-800);
    padding: 5px 0;
    display: block;
}

.drawer-links a:hover {
    color: var(--theme-primary);
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--grey-200);
    padding-top: 20px;
}

.drawer-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.drawer-footer .btn {
    width: 100%;
    margin-bottom: 10px;
}

.btn-phone {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

/* ========================================== */
/* 6. HERO SECTION & MODE SWITCHER            */
/* ========================================== */
.hero-section {
    position: relative;
    margin-top: -95px;
    padding: 190px 0 100px 0;
    color: var(--white);
    background-color: var(--dark-bg);
    border-radius: 0 0 60px 60px;
    overflow: hidden;
}

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

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease-in-out, visibility 1.8s ease-in-out, transform 9s ease-in-out;
    transform: scale(1.06);
}

.hero-bg-slide.active {
    opacity: 0.95;
    visibility: visible;
    transform: scale(1);
}

.hero-container-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Mode switcher component */
.mode-switcher-container {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    gap: 4px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.mode-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.mode-tab:hover {
    color: var(--white);
}

.mode-tab.active {
    background: var(--theme-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px var(--theme-glow);
}

/* Hero Content */
.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

html[dir="rtl"] .hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.trust-item i {
    color: var(--theme-primary);
}

/* ========================================== */
/* 7. MATERIALS DIVISION SHOWCASE             */
/* ========================================== */
.materials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--theme-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

html[dir="rtl"] .section-title {
    line-height: 1.3;
}

.section-desc {
    color: #64748b;
    font-size: 1.05rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.material-card {
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    border-radius: 20px;
    padding: 35px 25px;
    transition: var(--transition-smooth);
}

.material-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(15,23,42,0.05);
    border-color: var(--theme-primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--theme-badge-bg);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.material-card:hover .card-icon {
    background: var(--theme-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px var(--theme-glow);
}

.material-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.material-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ========================================== */
/* 8. DYNAMIC SERVICES GRID                  */
/* ========================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--grey-100);
    border-top: 1px solid var(--grey-200);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid var(--grey-200);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
    border-color: rgba(226, 232, 240, 0.4);
}

.service-img-placeholder {
    height: 180px;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary);
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.service-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-gradient);
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-placeholder::before {
    opacity: 0.3;
}

.service-img-wrapper {
    height: 180px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-gradient);
    opacity: 0.15;
    z-index: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover .service-img-wrapper::before {
    opacity: 0.3;
}

.service-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.service-body p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--theme-primary);
    display: inline-block;
    padding-top: 15px;
    border-top: 1px solid var(--grey-200);
}

/* ========================================== */
/* 9. LEAD TECHNICIAN PROFILE SECTION         */
/* ========================================== */
.profile-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.profile-badge-overlay {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--theme-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px auto;
    box-shadow: 0 8px 25px var(--theme-glow);
}

.profile-tag {
    color: var(--theme-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.profile-title {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 25px;
}

.profile-bio {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-top: 1px solid var(--dark-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--theme-primary);
    line-height: 1.1;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}



/* ========================================== */
/* 11. COVERAGE DISTRICTS MAP STYLE          */
/* ========================================== */
.coverage-section {
    padding: 100px 0;
    background-color: var(--grey-100);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}

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

.coverage-info {
    max-width: 500px;
}

.coverage-desc {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.district-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.district-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--dark-bg);
}

.district-list li i {
    color: var(--theme-primary);
    font-size: 1.2rem;
}

.coverage-action p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Map illustration styling */
.coverage-map-visual {
    display: flex;
    justify-content: center;
}

.map-card {
    width: 100%;
    max-width: 450px;
    height: 380px;
    background: var(--dark-bg);
    border-radius: 30px;
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Radar pulse effect */
.map-radar {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.15);
    background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: radar-pulse 3s infinite linear;
}

.map-city {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    background: rgba(255,255,255,0.05);
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

html[dir="rtl"] .map-city {
    left: auto;
    right: 25px;
}

/* Pins placement inside the Riyadh mockup */
.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--theme-primary);
    box-shadow: 0 0 0 6px var(--theme-glow-weak), 0 0 15px var(--theme-primary);
}

.map-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--theme-primary);
    animation: radar-pulse 1.8s infinite ease-out;
}

.pin-text {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark-bg);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pin-munsiyah {
    top: 30%;
    left: 45%;
}

.pin-rimal {
    top: 50%;
    left: 65%;
}

.pin-qurtubah {
    top: 65%;
    left: 30%;
}

@keyframes radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* ========================================== */
/* 12. BOOKING FORM                          */
/* ========================================== */
.booking-section {
    padding: 100px 0;
    background-color: var(--white);
}

.booking-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 50px;
}

.booking-form-wrapper {
    background: var(--grey-100);
    border: 1px solid var(--grey-200);
    border-radius: 30px;
    padding: 40px;
}

.form-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

html[dir="rtl"] .form-title {
    line-height: 1.3;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--grey-300);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark-bg);
    outline: none;
    transition: var(--transition-smooth);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px var(--theme-glow-weak);
}

textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}

/* Info column styling */
.booking-direct-info {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: var(--dark-bg);
    color: var(--white);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--dark-border);
    flex-grow: 1;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 15px;
}

.direct-phone-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.direct-phone-box i {
    font-size: 2rem;
    color: var(--theme-primary);
}

.direct-lbl {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.direct-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.direct-number:hover {
    color: var(--theme-primary);
}

.establishment-card {
    margin-top: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    padding: 25px;
    border-radius: 20px;
}

.establishment-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.est-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================== */
/* 13. TESTIMONIALS SLIDER                   */
/* ========================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--grey-100);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rating {
    margin-bottom: 20px;
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    margin: 0 2px;
}

.review-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-bg);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

html[dir="rtl"] .review-text {
    line-height: 1.6;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.client-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grey-300);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--theme-primary);
    transform: scale(1.3);
}

/* ========================================== */
/* 14. FAQ ACCORDION                         */
/* ========================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--grey-200);
    border-radius: 16px;
    overflow: hidden;
    background: var(--grey-100);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--theme-primary);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

html[dir="rtl"] .faq-question {
    text-align: right;
}

.faq-question i {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--white);
    color: var(--theme-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180px);
    color: var(--theme-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #64748b;
    font-size: 0.95rem;
}

/* ========================================== */
/* 15. FOOTER STYLING                        */
/* ========================================== */
.main-footer {
    background: #0b0f19;
    color: var(--text-light);
    padding: 80px 0 20px 0;
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--theme-primary);
}

html[dir="rtl"] .footer-col h4::after {
    left: auto;
    right: 0;
}

.footer-about .company-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.footer-about .sub-logo {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--theme-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--theme-primary);
    padding-left: 5px;
}

html[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-contact-item i {
    color: var(--theme-primary);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================== */
/* 16. RESPONSIVE BREAKPOINTS               */
/* ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    #nav-cta-btn {
        display: none !important;
    }

    .header-lang-switch {
        display: flex !important;
        justify-content: center;
        margin: 0 !important;
        flex: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 320px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    

    
    .testimonials-slider {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .logo-text h1.company-name {
        font-size: 1rem !important;
    }
    .logo-text span.sub-logo {
        font-size: 0.65rem !important;
    }
    .logo-img-wrapper {
        width: 35px !important;
        height: 35px !important;
    }
    .logo-area {
        gap: 8px !important;
    }
}

/* ========================================== */
/* GALLERY SECTION STYLES                     */
/* ========================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--grey-100);
    border-top: 1px solid var(--grey-200);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--grey-200);
    transition: var(--transition-smooth);
    background-color: var(--grey-200);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--theme-glow-weak);
    border-color: var(--theme-primary);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition-smooth);
    height: 100%;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================== */
/* FLOATING CTAs & SERVICE CARD BUTTON STYLES  */
/* ========================================== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    transition: var(--transition-smooth);
    text-decoration: none;
    z-index: 999;
}

.float-whatsapp {
    left: 30px;
    background-color: #25d366;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.float-call {
    right: 30px;
    background-color: var(--theme-primary);
}

.float-call:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #c7481b;
    box-shadow: 0 12px 30px rgba(226, 88, 34, 0.3);
}

.floating-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.float-whatsapp::after {
    background-color: #25d366;
}

.float-call::after {
    background-color: var(--theme-primary);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Service Card WhatsApp button */
.btn-card-whatsapp {
    margin-top: 15px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #25d366;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.btn-card-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.btn-card-whatsapp i {
    font-size: 1.1rem;
}

/* ========================================== */
/* LIVE INDICATOR STATUS DOT STYLES           */
/* ========================================== */
.live-indicator-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #39ff14; /* Neon green */
    border-radius: 50%;
    position: relative;
    margin-left: 6px;
    vertical-align: middle;
    box-shadow: 0 0 8px #39ff14;
}

html[dir="rtl"] .live-indicator-dot {
    margin-left: 0;
    margin-right: 6px;
}

.live-indicator-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #39ff14;
    animation: live-pulse-dot 1.5s ease-out infinite;
    top: 0;
    left: 0;
}

@keyframes live-pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Card specific live status indicator */
.card-live-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.2);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-left: auto;
}

html[dir="rtl"] .card-live-indicator {
    margin-left: 0;
    margin-right: auto;
}

.card-live-indicator .live-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating button live status dot overlay */
.floating-live-dot {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    background-color: #39ff14;
    border: 2px solid #25d366;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(57, 255, 20, 0.6);
}

.floating-live-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #39ff14;
    animation: live-pulse-dot 1.5s ease-out infinite;
    top: -2px;
    left: -2px;
    border: 2px solid transparent;
}



