/*
Theme Name: Clean Pro
Theme URI: http://clean.local/
Author: HstiGo.CoM
Author URI: https://hstigo.com
Description: قالب احترافي فاخر لشركة فرح جدة لخدمات النظافة المتكاملة بجدة
Version: 2.1.0
Text Domain: clean-pro
*/

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --primary-color: #0284c7;
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --secondary-color: #0f172a;
    --accent-gold: #f59e0b;
    --accent-green: #10b981;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 45px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for persistent fixed bottom bar */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   1. Header & Navigation (Single Line Clean Layout)
   ========================================================================== */
.top-bar {
    background: #0b1329;
    color: #94a3b8;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-item, .top-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
}
.top-bar-contact a:hover {
    color: #38bdf8;
}

.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f1f5f9;
}
.header-container-single-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-logo-emblem {
    width: 44px;
    height: 44px;
    background: #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bae6fd;
}
.site-logo-text {
    display: flex;
    flex-direction: column;
}
.site-logo-title {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}
.site-logo-title span {
    color: #0284c7;
    font-size: 15px;
    font-weight: 700;
}
.site-logo-subtitle {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
}
.main-nav .nav-links a {
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
    position: relative;
}
.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    color: #0284c7;
}
.main-nav .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0284c7;
    border-radius: 2px;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-header-booking {
    background: #0284c7;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}
.btn-header-booking:hover {
    background: #0369a1;
    transform: translateY(-2px);
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #0f172a;
    cursor: pointer;
}

/* ==========================================================================
   2. Hero Section - World-Class Premium Design
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

/* Background image layer */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease-out;
    filter: brightness(1.1) saturate(1.15) contrast(1.0);
}
.hero-section:hover .hero-bg-layer {
    transform: scale(1.0);
}

/* Gradient overlay - light on left (content), clearer on right */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(
            to left,
            rgba(2, 8, 25, 0.72) 0%,
            rgba(2, 8, 25, 0.40) 40%,
            rgba(2, 8, 25, 0.05) 100%
        );
    z-index: 1;
}

/* Sparkle decorations */
.hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: sparkle-float 6s infinite ease-in-out;
}
.sparkle.s1 { top: 20%; left: 10%; animation-delay: 0s; width: 4px; height: 4px; }
.sparkle.s2 { top: 60%; left: 5%;  animation-delay: 1.5s; width: 6px; height: 6px; background: rgba(249, 158, 11, 0.7); }
.sparkle.s3 { top: 35%; left: 45%; animation-delay: 3s; width: 3px; height: 3px; }
.sparkle.s4 { top: 75%; left: 30%; animation-delay: 4.5s; width: 5px; height: 5px; background: rgba(56, 189, 248, 0.6); }
@keyframes sparkle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-18px) scale(1.4); opacity: 1; }
}

/* Main layout */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 50px;
    padding-top: 30px;
    padding-bottom: 80px;
}

/* Content - left side (RTL: right side) */
.hero-content {
    flex: 1;
    max-width: 700px;
}

/* Badge pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 158, 11, 0.15);
    border: 1px solid rgba(249, 158, 11, 0.4);
    backdrop-filter: blur(12px);
    padding: 7px 20px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 28px;
    animation: fade-in-down 0.8s ease both;
}

/* Title */
.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
    animation: fade-in-up 0.9s ease 0.15s both;
}
.hero-line-1 {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
    letter-spacing: 0.5px;
}
.hero-line-brand {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, #ffffff 30%, #38bdf8 70%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.hero-line-2 {
    font-size: 26px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* Subtitle */
.hero-subtitle {
    font-size: 17px;
    line-height: 2;
    color: rgba(226, 232, 240, 0.92);
    margin-bottom: 36px;
    max-width: 620px;
    animation: fade-in-up 0.9s ease 0.25s both;
}
.hero-subtitle strong {
    color: #ffffff;
    font-weight: 800;
}

/* CTA Buttons */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 42px;
    animation: fade-in-up 0.9s ease 0.35s both;
}

.hero-btn-call {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45), 0 2px 8px rgba(0,0,0,0.3);
    transition: var(--transition);
    white-space: nowrap;
}
.hero-btn-call:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(245, 158, 11, 0.55);
    color: #0f172a;
}

.hero-btn-wa {
    background: linear-gradient(135deg, rgba(37,211,102,0.25), rgba(37,211,102,0.15));
    color: #ffffff;
    border: 2px solid #25d366;
    padding: 13px 28px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    white-space: nowrap;
}
.hero-btn-wa:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.hero-btn-book {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    white-space: nowrap;
}
.hero-btn-book:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.5);
}

/* Trust bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(5, 20, 50, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 28px;
    border-radius: 16px;
    width: fit-content;
    animation: fade-in-up 0.9s ease 0.45s both;
    flex-wrap: wrap;
    gap: 0;
}
.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}
.trust-num {
    font-size: 22px;
    font-weight: 900;
    color: #38bdf8;
    line-height: 1.2;
}
.trust-lbl {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    white-space: nowrap;
}
.trust-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
}

/* Side panel (service tags) */
.hero-side-panel {
    width: 280px;
    flex-shrink: 0;
    animation: fade-in-left 1s ease 0.5s both;
}
.side-panel-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    padding: 24px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.side-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.side-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.side-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.side-tag:hover {
    background: rgba(2, 132, 199, 0.35);
    border-color: #38bdf8;
    color: #ffffff;
    transform: scale(1.04);
}
.side-panel-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #0284c7;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}
.side-panel-cta:hover {
    background: #0369a1;
    transform: translateY(-2px);
    color: #fff;
}

/* Bottom wave */
.hero-bottom-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}
.hero-bottom-wave svg {
    width: 100%;
    height: 80px;
}

/* Animations */
@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-left {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Responsive hero */
@media (max-width: 1024px) {
    .hero-side-panel { display: none; }
    .hero-container { justify-content: center; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-cta-row { justify-content: center; }
    .hero-trust-bar { margin: 0 auto; }
}
@media (max-width: 768px) {
    .hero-section { min-height: 85vh; }
    .hero-line-brand { font-size: 48px; }
    .hero-line-1 { font-size: 22px; }
    .hero-line-2 { font-size: 20px; }
    .hero-subtitle { font-size: 15px; }
    .hero-btn-call, .hero-btn-wa, .hero-btn-book { width: 100%; justify-content: center; }
    .trust-stat { padding: 0 14px; }
    .trust-num { font-size: 18px; }
}
@media (max-width: 480px) {
    .hero-line-brand { font-size: 38px; }
    .hero-trust-bar { padding: 12px 16px; }
    .trust-stat { padding: 0 10px; }
}


/* ==========================================================================
   3. Why Us Section (Matching Screenshot 1 & 2)
   ========================================================================== */
.why-us-section {
    padding: 100px 0;
    background: #ffffff;
}
.text-center {
    text-align: center;
}
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}
.section-title-large {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 16px;
}
.blue-highlight {
    color: #0284c7;
}
.section-desc-lead {
    font-size: 17px;
    color: #64748b;
    max-width: 740px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 45px;
}

.why-us-brand-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.brand-visual-box {
    margin-bottom: 30px;
}
.brand-emblem-large {
    width: 90px;
    height: 90px;
    background: #e0f2fe;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid #bae6fd;
}
.brand-title-bold {
    font-size: 32px;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 4px;
}
.brand-sub-bold {
    font-size: 18px;
    font-weight: 800;
    color: #0284c7;
}

.stats-counter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}
.counter-box {
    background: #f8fafc;
    padding: 12px 6px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.counter-number {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
}
.counter-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.why-us-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.why-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.why-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #bae6fd;
}
.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.icon-blue { background: #e0f2fe; }
.icon-green { background: #dcfce7; }
.icon-purple { background: #ede9fe; }
.icon-amber { background: #fef3c7; }

.feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.feature-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}
.feature-footer-badge {
    font-size: 13px;
    font-weight: 700;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.text-green { color: #10b981; }
.text-purple { color: #8b5cf6; }
.text-amber { color: #f59e0b; }

.trial-promo-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.trial-tag {
    font-weight: 900;
    font-size: 18px;
    color: #0f172a;
    margin-left: 12px;
}
.trial-lead {
    font-size: 15px;
    color: #64748b;
}
.trial-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-trial-booking {
    background: #0284c7;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-trial-booking:hover {
    background: #0369a1;
    color: #fff;
}
.btn-trial-call {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-trial-call:hover {
    border-color: #0284c7;
    color: #0284c7;
}

/* ==========================================================================
   4. Services Section (Animated Cards with High Quality Pictures)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Modern Card Design */
.service-card-modern {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #bae6fd;
}

/* Scroll Animation Effect */
.reveal-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}
.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}
.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card-modern:hover .card-img-container img {
    transform: scale(1.08);
}
.card-category-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-content-wrap {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-title-text {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}
.service-desc-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.service-points-list {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    border-top: 1px dashed #e2e8f0;
    padding-top: 16px;
}
.service-points-list li {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.check-icon {
    color: #0284c7;
    font-weight: 900;
    font-size: 14px;
}

.service-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.btn-card-details {
    flex: 1;
    background: #0284c7;
    color: #ffffff;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-card-details:hover {
    background: #0369a1;
    color: #ffffff;
    transform: translateY(-2px);
}
.arrow-icon {
    transition: transform 0.3s ease;
}
.btn-card-details:hover .arrow-icon {
    transform: translateX(-4px);
}

.btn-card-wa {
    width: 44px;
    height: 44px;
    background: #25d366;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.btn-card-wa:hover {
    background: #20ba5a;
    transform: scale(1.05);
}

/* ==========================================================================
   5. Reviews & Testimonials Section
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
    background: #ffffff;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 15px;
}
.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 22px;
}
.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}
.reviewer-avatar {
    width: 42px;
    height: 42px;
    background: #0284c7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.reviewer-name {
    font-weight: 800;
    font-size: 15px;
    color: #0f172a;
}
.reviewer-loc {
    font-size: 12px;
    color: #64748b;
}

/* ==========================================================================
   6. FAQ Section
   ========================================================================== */
.faq-section {
    padding: 90px 0;
    background: #f8fafc;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: right;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: inherit;
}
.faq-icon {
    font-size: 22px;
    color: #0284c7;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    display: none;
}
.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   7. Booking Section
   ========================================================================== */
.booking-section {
    padding: 100px 0;
    background: #ffffff;
}
.booking-card-wrapper {
    background: #0f172a;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 420px 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.booking-info-side {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pill-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    width: fit-content;
}
.booking-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.3;
}
.booking-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #e0f2fe;
    margin-bottom: 30px;
}
.booking-contact-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}
.b-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.b-icon {
    font-size: 22px;
}
.b-lbl {
    font-size: 12px;
    color: #bae6fd;
}
.b-val {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.booking-form-side {
    padding: 50px 40px;
    color: #ffffff;
}
.form-heading {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
}
.btn-submit-booking {
    width: 100%;
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
    transition: var(--transition);
}
.btn-submit-booking:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* ==========================================================================
   8. Footer Styles
   ========================================================================== */
.site-footer {
    background: #0b1329;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: #0284c7;
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 11px;
}
.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: #38bdf8;
    padding-right: 5px;
}
.footer-contact-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.footer-call-pill {
    background: #f59e0b;
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-wa-pill {
    background: #25d366;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact-item .icon {
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 15px;
}
.hstigo-credits a {
    color: #38bdf8;
    font-weight: 800;
}

/* ==========================================================================
   9. Persistent Fixed Bottom Bar (لا يختفي اسفل الشاشة)
   ========================================================================== */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    border-top: 2px solid #0284c7;
    z-index: 998;
    padding: 10px 0;
    color: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.25);
}
.fixed-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.fixed-bar-promo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.promo-badge {
    background: #0284c7;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
}
.promo-text {
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
}
.fixed-bar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fixed-btn {
    padding: 7px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fixed-btn.call {
    background: #f59e0b;
    color: #0f172a;
}
.fixed-btn.wa {
    background: #25d366;
    color: #fff;
}
.fixed-btn.book {
    background: #0284c7;
    color: #fff;
}
.fixed-bar-credit {
    font-size: 12px;
    color: #94a3b8;
}
.fixed-bar-credit a {
    color: #38bdf8;
    font-weight: 800;
}

/* ==========================================================================
   10. Stacked Floating Action Buttons & Scroll to Top (Matching Screenshots)
   ========================================================================== */
.floating-actions-stack {
    position: fixed;
    bottom: 80px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn.call-btn {
    background: #0284c7;
}
.floating-btn.wa-btn {
    background: #25d366;
}
.floating-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.scroll-top-btn {
    position: fixed;
    bottom: 80px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: #0284c7;
    transform: translateY(-4px);
}

/* ==========================================================================
   11. Single Page Template Styles
   ========================================================================== */
.page-header-banner {
    background: linear-gradient(135deg, #0f172a 0%, #0369a1 100%);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}
.breadcrumbs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 14px;
}
.breadcrumbs-nav a:hover {
    color: #38bdf8;
}
.breadcrumbs-nav .current {
    color: #38bdf8;
    font-weight: 700;
}
.page-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffffff;
}
.page-subtitle {
    font-size: 16px;
    color: #e2e8f0;
}
.page-content-wrap {
    padding: 70px 0;
    background: #ffffff;
}

/* ==========================================================================
   12. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-card-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
        display: none;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .header-cta-group {
        display: none;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    .why-us-cards-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .trial-promo-banner {
        flex-direction: column;
        text-align: center;
    }
    .fixed-bar-promo {
        display: none;
    }
    .fixed-bar-content {
        justify-content: center;
    }
}


/* --- Dropdown Navigation Menu --- */
.main-nav .has-dropdown {
    position: relative;
    padding: 10px 0;
}
.main-nav .has-dropdown > a {
    cursor: pointer;
}
.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 250px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(2, 132, 199, 0.08);
    border: 1px solid #e2e8f0;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.main-nav .has-dropdown:hover .dropdown-menu,
.main-nav .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .dropdown-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}
.main-nav .dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #334155 !important;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s ease;
    border-right: 3px solid transparent;
}
.main-nav .dropdown-menu a:hover {
    background: #f0f9ff;
    color: #0284c7 !important;
    border-right: 3px solid #0284c7;
    padding-right: 22px;
}
@media (max-width: 991px) {
    .main-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 5px 12px;
        background: #f8fafc;
        border-radius: 8px;
        margin-top: 6px;
        min-width: 100%;
    }
    .main-nav .dropdown-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (min-width: 992px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1.2fr;
        gap: 25px;
    }
}
