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

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
    /* Brand Colors (Exact Brand Color Palette) */
    --primary: #164E63;                 /* Deep Teal/Navy */
    --primary-rgb: 22, 78, 99;
    
    --accent: #22D3EE;                  /* Bright Diamond Cyan */
    --accent-hover: #06B6D4;
    --accent-light: #ECFEFF;            /* Ice/Light Cyan */
    
    /* Luxury Accents */
    --gold: #C2A478;                    /* Sand Gold (Secondary Luxury Color) */
    --gold-dark: #A9895A;
    --gold-light: #F7F3EB;              /* Light Sand Gold for borders and highlights */
    
    --success: #22C55E;                 /* WhatsApp Green */
    --success-dark: #16A34A;

    /* Backgrounds */
    --bg-light: #F8FAFC;                /* Clean Slate White */
    --bg-card: #FFFFFF;
    --bg-dark: #164E63;                 /* Footer and Heading Background */

    /* Text Colors */
    --text-dark: #164E63;               /* Using Primary Dark for headings/body */
    --text-light: #475569;              /* Neutral dark gray */
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;

    /* Fonts */
    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    --font-primary: var(--font-en);

    /* Layout & Glassmorphism */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(11, 37, 69, 0.08), 0 4px 6px -2px rgba(11, 37, 69, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(11, 37, 69, 0.12), 0 10px 10px -5px rgba(11, 37, 69, 0.04);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dynamically adjust font family and layout based on language */
html[lang="ar"] {
    --font-primary: var(--font-ar);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: hsl(198, 40%, 80%);
    border-radius: var(--radius-round);
    border: 3px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ==========================================
   UTILITY CLASSES & DECORATIVE ELEMENTS
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

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

html[dir="rtl"] .section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-light);
}

/* ==========================================
   TOP ANNOUNCEMENT BAR
   ========================================== */
.top-bar {
    background-color: var(--primary);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info-item svg {
    width: 14px;
    height: 14px;
    fill: var(--accent);
}

.top-promo {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-round);
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(255, 183, 3, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-normal);
}

.header-wrapper.scrolled {
    padding-block: 8px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    transition: var(--transition-normal);
}

.header-wrapper.scrolled .navbar {
    height: 80px;
}

.header-wrapper.scrolled .logo img{
    width: 100px;
    height: 100px;
}

/* Brand Logo (SVG Styled) */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo svg {
    transition: var(--transition-normal);
}

.logo:hover svg {
    transform: rotate(15deg) scale(1.1);
}

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

.logo-main {
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 2px;
}

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

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

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

html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

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

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

/* Controls (Lang Switcher & Actions) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Premium Language Switcher Toggle */
.lang-switcher {
    display: flex;
    align-items: center;
    background-color: var(--accent-light);
    border: 1px solid rgba(17, 138, 178, 0.15);
    border-radius: var(--radius-round);
    padding: 4px;
    cursor: pointer;
    position: relative;
    width: 90px;
    height: 38px;
    user-select: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.lang-btn {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    transition: var(--transition-normal);
}

.lang-switcher::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 42px;
    height: 30px;
    background-color: var(--bg-card);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-sm);
    z-index: 1;
    transition: var(--transition-normal);
}

html[lang="ar"] .lang-switcher::before {
    transform: translateX(40px);
}

html[lang="ar"] .lang-btn.ar,
html[lang="en"] .lang-btn.en {
    color: var(--accent);
}

.nav-cta {
    background-color: var(--primary); /* Solid Dark Blue */
    color: var(--text-white) !important; /* Contrasting text */
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    transform: scale(1.05); /* Subtle scale effect instead of opacity change */
    box-shadow: var(--shadow-md);
    background-color: var(--accent); /* Light blue / Teal on hover */
    color: var(--text-white) !important;
}

/* Mobile CTA in navigation drawer */
.mobile-cta-item {
    display: none;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    background: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-round);
    transition: var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding-block: 80px 100px;
    background: radial-gradient(circle at 80% 20%, var(--accent-light) 0%, var(--bg-light) 60%);
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    background-color: var(--accent);
    filter: blur(120px);
    opacity: 0.08;
    border-radius: var(--radius-round);
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Slogan Tagline */
.hero-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-card);
    border: 1px solid rgba(17, 138, 178, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-round);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-tag span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-tag svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

/* Core Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(17, 138, 178, 0.15);
    z-index: -1;
    border-radius: var(--radius-sm);
}

/* Core Slogan */
.hero-slogan {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--primary-light);
    border-inline-start: 4px solid var(--accent);
    padding-inline-start: 16px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 580px;
}

/* Hero Action CTAs */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-round);
    font-size: 1rem;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -8px rgba(17, 138, 178, 0.5);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--primary);
    border: 1px solid rgba(11, 37, 69, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Trust Badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid rgba(11, 37, 69, 0.08);
    padding-top: 24px;
    width: 100%;
}

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

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

.trust-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Hero Media (Premium visual card layout) */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-card);
    transform: rotate(2deg);
    transition: var(--transition-slow);
}

.hero-img-container img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
    transition: var(--transition-slow);
}

.hero-media:hover .hero-img-container {
    transform: rotate(0) scale(1.02);
}

/* Overlay Glass Cards */
.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.float-info {
    display: flex;
    flex-direction: column;
}

.float-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.float-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
/* ==========================================
   CORPORATE PROFILE SECTION (NEW v2)
   ========================================== */
.about {
    padding-block: 100px 80px;
    background-color: var(--bg-card);
    border-bottom: 1px solid rgba(22, 78, 99, 0.05);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.corporate-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    border: 2px solid var(--gold-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.corporate-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.corporate-icon {
    width: 68px;
    height: 68px;
    background-color: var(--accent-light);
    color: var(--primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(34, 211, 238, 0.25);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.corporate-card:hover .corporate-icon {
    background-color: var(--accent);
    color: var(--text-white);
}

.corporate-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.corporate-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   SERVICES SECTION (RESTRUCTURED v2)
   ========================================== */
.services {
    padding-block: 100px;
    background-color: var(--bg-light);
}

.services-category-wrapper {
    margin-top: 50px;
}

.category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.category-badge {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-round);
    border: 1px solid rgba(34, 211, 238, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.category-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.category-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.category-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 78, 99, 0.12), transparent);
    margin-block: 70px;
}

/* --- Responsive Grids --- */
.services-grid {
    display: grid;
    gap: 30px;
    margin-top: 20px;
}

.cleaning-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hospitality-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* --- Service Card (Image-Based) --- */
.service-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px rgba(22, 78, 99, 0.18), 0 0 0 3px var(--accent);
    border-color: var(--accent);
}

/* --- Image Wrapper & Zoom Effect --- */
.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(22, 78, 99, 0.4) 100%
    );
    pointer-events: none;
}

/* --- Card Body Text --- */
.service-card-body {
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.service-card-body h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* --- Book Now Link --- */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 6px;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.service-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--accent);
    gap: 10px;
}

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

html[dir="rtl"] .service-card:hover .service-link svg {
    transform: translateX(-4px);
}

/* ==========================================
   GOOGLE MAPS LOCATION SECTION
   ========================================== */
.map-section {
    padding-block: 90px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--gold-light) 100%);
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
}

/* Clickable full-area overlay */
.map-click-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    text-decoration: none;
    transition: background var(--transition-normal);
}

.map-click-overlay:hover {
    background: rgba(22, 78, 99, 0.08);
}

.map-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-round);
    box-shadow: 0 8px 24px rgba(22, 78, 99, 0.35);
    border: 2px solid var(--gold);
    pointer-events: none;
    transition: transform var(--transition-normal), background var(--transition-normal);
}

.map-click-overlay:hover .map-overlay-badge {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.map-iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
    pointer-events: none;
}

/* ==========================================
   PRICING & PACKAGES SECTION
   ========================================== */
.pricing {
    padding-block: 100px;
    background: radial-gradient(circle at 10% 80%, var(--accent-light) 0%, var(--bg-light) 70%);
}

/* Premium Pricing Calculator Widget Layout */
.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.calculator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(22, 78, 99, 0.15);
}

/* Left Panel - Control Elements */
.calculator-controls {
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    background-color: var(--bg-card);
}

.calculator-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.control-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

/* Custom Interactive Maids Radio Cards */
.maid-radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.maid-radio-card {
    background-color: var(--bg-light);
    border: 2px solid rgba(194, 164, 120, 0.15);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.maid-radio-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.maid-radio-card.active {
    background-color: var(--gold-light);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.maid-radio-icon {
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.maid-radio-card:hover .maid-radio-icon {
    transform: scale(1.1) translateY(-2px);
}

.maid-radio-card.active .maid-radio-icon {
    color: var(--gold-dark);
}

.maid-radio-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.popular-tag-mini {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(194, 164, 120, 0.25);
}

.maid-radio-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background-color: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

html[dir="rtl"] .maid-radio-badge {
    right: auto;
    left: 12px;
}

.maid-radio-card.active .maid-radio-badge {
    opacity: 1;
    transform: scale(1);
}

/* Custom Hours Slider styling */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.slider-display-val {
    background-color: var(--accent-light);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: var(--radius-round);
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.slider-wrapper {
    position: relative;
    padding-top: 8px;
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: var(--radius-round);
    background: linear-gradient(to right, var(--accent-light), rgba(194, 164, 120, 0.2));
    outline: none;
    border: 1px solid rgba(194, 164, 120, 0.15);
    cursor: pointer;
}

/* Custom Thumb */
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 4px solid var(--bg-card);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(194, 164, 120, 0.4);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    background-color: var(--gold-dark);
}

.custom-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 4px solid var(--bg-card);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(194, 164, 120, 0.4);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    background-color: var(--gold-dark);
}

.slider-notches {
    display: flex;
    justify-content: space-between;
    padding-inline: 4px;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Right Panel - Value Preview Panel */
.calculator-summary {
    background: linear-gradient(135deg, var(--primary) 0%, #0a3342 100%);
    color: var(--text-white);
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calculator-summary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.summary-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.gift-badge-calculator {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 5px 14px;
    border-radius: var(--radius-round);
    box-shadow: 0 4px 12px rgba(194, 164, 120, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-title {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 600;
    opacity: 0.85;
    margin: 0;
}

.price-display-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-block: 5px;
}

.price-val-big {
    font-size: clamp(3.5rem, 6vw, 4.75rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.price-currency-wrapper {
    display: flex;
    flex-direction: column;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}

.calc-cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
    color: var(--primary) !important;
    box-shadow: 0 8px 24px rgba(194, 164, 120, 0.3);
}

.calc-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(194, 164, 120, 0.5);
    background: var(--gold) !important;
}

.summary-gift-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    width: 100%;
    max-width: 330px;
    box-shadow: var(--shadow-sm);
}

.gift-icon-container-mini {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(34, 211, 238, 0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-caption {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    text-align: left;
}

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

/* Interactive Booking Form Upgrades */
.form-price-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--accent-light);
    border: 2px dashed rgba(34, 211, 238, 0.35);
    border-radius: var(--radius-md);
    padding: 16px 26px;
    margin-top: 24px;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-preview-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.price-preview-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-dark);
}

/* Strict Time Window Restrictions warning node */
.time-error-message {
    color: #DC2626;
    background-color: #FEF2F2;
    border: 1px solid #FEE2E2;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 10px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    animation: shake 0.3s ease-out;
}

html[dir="rtl"] .time-error-message {
    text-align: right;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.form-control.is-invalid {
    border-color: #DC2626 !important;
    background-color: #FFFDFD !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* Interactive Form Pulse highlight */
.pulse-highlight {
    animation: form-pulse-effect 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes form-pulse-effect {
    0% { box-shadow: var(--shadow-lg), 0 0 0 0px rgba(194, 164, 120, 0.6); }
    100% { box-shadow: var(--shadow-lg), 0 0 0 16px rgba(194, 164, 120, 0); }
}

/* ==========================================
   FEATURES & BENEFITS SECTION
   ========================================== */
.features {
    padding-block: 100px;
    background-color: var(--bg-card);
}

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

.features-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Styled Infographic Circle */
.info-circle-bg {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    border-radius: var(--radius-round);
    background-color: var(--bg-light);
    border: 2px dashed rgba(17, 138, 178, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.info-circle-center {
    width: 60%;
    aspect-ratio: 1;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    text-align: center;
    padding: 24px;
}

.info-circle-center svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    fill: var(--accent);
}

.info-circle-center h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.info-circle-center p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Orbiting Badges */
.orbit-badge {
    position: absolute;
    background-color: var(--bg-card);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: var(--radius-round);
    padding: 10px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.orbit-1 { top: 10%; left: 0; }
.orbit-2 { top: 70%; right: -20px; }
.orbit-3 { bottom: 0%; left: 0%; }

.orbit-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

/* Features List Content */
.features-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.features-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-num {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    background-color: var(--accent-light);
    color: var(--accent);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================
   INTERACTIVE BOOKING & CONTACT SECTION
   ========================================== */
.booking {
    padding-block: 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, hsl(210, 40%, 94%) 100%);
    position: relative;
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: stretch;
}

.booking-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.booking-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* Contact Fast Info */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(11, 37, 69, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17, 138, 178, 0.15);
}

html[dir="rtl"] .contact-card:hover {
    transform: translateX(-5px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
}

.contact-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    direction: ltr;
}

/* Booking Interactive Form */
.booking-form-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(11, 37, 69, 0.03);
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
}

.form-control {
    background-color: var(--bg-light);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(17, 138, 178, 0.1);
}

textarea.form-control {
    resize: none;
    height: 100px;
}

/* Beautiful custom selection wrapper */
/* .select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▾';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

html[dir="rtl"] .select-wrapper::after {
    right: auto;
    left: 16px;
} */

/* Action Form CTAs */
.form-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    width: 100%;
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: var(--text-white);
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(11, 37, 69, 0.3);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo {
    color: var(--text-white);
}

.footer-brand .logo-sub {
    color: var(--accent-light);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

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

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

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

.footer-link {
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--text-white);
    padding-inline-start: 6px;
}

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

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

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a:hover {
    color: var(--text-white);
}

/* Bottom Bar */
.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--accent);
    color: var(--text-white);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-slogan {
        border-inline-start: none;
        border-bottom: 2px solid var(--accent);
        padding-inline-start: 0;
        padding-bottom: 12px;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-img-container {
        transform: none !important;
        max-width: 540px;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-visual {
        order: 2;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on very small devices for simplicity and space */
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        z-index: 999;
    }

    html[dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
    }

    .nav-menu.active {
        left: 0;
    }

    html[dir="rtl"] .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .navbar > .nav-controls {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        width: auto;
        gap: 12px;
        margin-inline-end: 12px;
    }

    .booking-layout .booking-info h2 {
        font-size: 24px;
        text-align: center;
    }

    .navbar > .nav-controls > .nav-cta {
        display: none; /* Hide header CTA in navbar on mobile to avoid overcrowding */
    }

    .mobile-cta-item {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .mobile-cta-item .nav-cta {
        display: inline-flex;
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1.1rem;
    }

    .lang-switcher {
        width: 90px; /* Keep standard switch width */
    }

    .calculator-card {
        grid-template-columns: 1fr;
    }

    .maid-radio-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calculator-controls {
        padding: 28px 20px;
    }

    .calculator-summary {
        padding: 40px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .booking-form-container {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations for Hamburger Toggle */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   RESPONSIVE — SERVICES GRID & MAP
   ========================================== */
/* Tablet & Laptop Breakpoints */
@media (max-width: 1200px) {
    .hospitality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

/* Mobile Breakpoints */
@media (max-width: 600px) {
    .corporate-grid,
    .cleaning-grid,
    .hospitality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-img-wrapper {
        height: 200px;
    }

    .service-card-body {
        padding: 20px 18px 16px;
    }

    .map-iframe {
        height: 260px;
    }

    .map-overlay-badge {
        font-size: 0.82rem;
        padding: 10px 18px;
    }
}

/* ==========================================
   PERSISTENT FLOATING ACTION BUTTONS
   ========================================== */
.floating-buttons-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none; /* Let clicks pass through empty spaces */
    z-index: 1005; /* Float above navigation and announcers */
}

.floating-btn {
    position: fixed;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 16px -8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color var(--transition-fast), box-shadow 0.3s ease;
    pointer-events: auto; /* Re-enable pointer events for buttons */
}

/* WhatsApp Button styling */
.floating-btn-whatsapp {
    right: 24px;
    background-color: transparent; /* SVG already has green background */
}

.floating-btn-whatsapp img,
.floating-btn-whatsapp svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Click-to-Call Button styling */
.floating-btn-call {
    left: 24px;
    background-color: var(--gold);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-btn-call svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

/* Hover States & Animations */
.floating-btn:hover {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.25), 0 12px 20px -10px rgba(0, 0, 0, 0.2);
}

.floating-btn-call:hover {
    background-color: var(--gold-dark);
}

.floating-btn-call:hover svg {
    transform: rotate(15deg) scale(1.05);
}

/* Bilingual Positional Flip (RTL Swap) */
html[dir="rtl"] .floating-btn-whatsapp {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .floating-btn-call {
    left: auto;
    right: 24px;
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS REVIEW
   ========================================== */

/* Optimization for screens < 768px (Mobile & Small Tablets) */
@media (max-width: 768px) {
    /* Header and Navigation height reduction for ultra clean display */
    .navbar {
        height: 80px !important;
    }
    
    .logo img {
        width: 90px !important;
        height: 90px !important;
    }

    /* Prevent hero floating glass badges from bleeding off-screen */
    .floating-card-1 {
        left: 10px !important;
        top: 10% !important;
        transform: scale(0.9) !important;
    }
    
    .floating-card-2 {
        right: 10px !important;
        bottom: 5% !important;
        transform: scale(0.9) !important;
    }
    
    html[dir="rtl"] .floating-card-1 {
        right: 10px !important;
        left: auto !important;
    }
    
    html[dir="rtl"] .floating-card-2 {
        left: 10px !important;
        right: auto !important;
    }
}

/* Optimization for screens < 480px (Smartphones) */
@media (max-width: 480px) {
    /* Standard fluid screen margin container optimization */
    .container {
        padding-inline: 16px !important;
    }

    /* Scale down floating buttons slightly on small mobile viewports */
    .floating-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
    }
    
    .floating-btn-whatsapp {
        right: 16px;
    }
    
    .floating-btn-call {
        left: 16px;
    }
    
    .floating-btn-call svg {
        width: 20px;
        height: 20px;
    }
    
    /* Small mobile bilingual positional flip */
    html[dir="rtl"] .floating-btn-whatsapp {
        right: auto;
        left: 16px;
        bottom: 16px;
    }
    
    html[dir="rtl"] .floating-btn-call {
        left: auto;
        right: 16px;
        bottom: 16px;
    }

    /* Adjust floating cards in hero further on very narrow viewports */
    .floating-card-1 {
        left: 5px !important;
        top: 5% !important;
        transform: scale(0.8) !important;
        padding: 8px 12px !important;
    }
    
    .floating-card-2 {
        right: 5px !important;
        bottom: 2% !important;
        transform: scale(0.8) !important;
        padding: 8px 12px !important;
    }
    
    /* Ensure section headers are compact and elegant on mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Prevent pricing display overflow */
    .price-val-big {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
}

