/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #ad894d;
    --color-bg-dark-alt: #ad894d;
    --color-bg-light: #FBF7F0;
    --color-accent-teal: #AD894D;
    --color-accent-cyan: #F1CD77;
    --color-accent-teal-rgb: 173, 137, 77;
    --color-accent-cyan-rgb: 241, 205, 119;
    --color-whatsapp: #15A27F;
    --color-whatsapp-hover: #128C7E;
    --color-promo-orange: #FF6363;
    --color-promo-orange-dark: #E05353;
    
    --color-text-white: #FFFFFF;
    --color-text-gray-light: #E0E2E7;
    --color-text-gray-dark: #575A5E;
    --color-text-gray-muted: #8A9099;
    --color-text-dark: #0F172A;
    
    --color-section-light: #F6F1E8;
    --color-section-white: #FCFBF7;
    --color-input-bg: #EFE8DD;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-cyan) 100%);
    --gradient-accent-reverse: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-accent-teal) 100%);
    --gradient-card-dark: linear-gradient(180deg, rgba(173, 137, 77, 0.9) 0%, rgba(173, 137, 77, 0.95) 100%);
    --gradient-promo: linear-gradient(135deg, #1C2541 0%, #0B132B 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(var(--color-accent-cyan-rgb), 0.35);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

    /* Fonts & Radii */
    --font-primary: 'Cairo', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s ease;
}

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    background-image:
        radial-gradient(1200px 800px at 14% 6%, rgba(var(--color-accent-teal-rgb), 0.12) 0%, transparent 62%),
        radial-gradient(900px 700px at 92% 14%, rgba(var(--color-accent-cyan-rgb), 0.10) 0%, transparent 55%),
        radial-gradient(1200px 900px at 50% 110%, rgba(11, 19, 43, 0.045) 0%, transparent 58%);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    position: relative;
    isolation: isolate;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background-image:
        radial-gradient(220px 220px at 12% 18%, rgba(var(--color-accent-cyan-rgb), 0.20) 0%, rgba(var(--color-accent-cyan-rgb), 0.08) 38%, transparent 70%),
        radial-gradient(180px 180px at 22% 62%, rgba(var(--color-accent-teal-rgb), 0.18) 0%, rgba(var(--color-accent-teal-rgb), 0.06) 40%, transparent 72%),
        radial-gradient(260px 260px at 72% 20%, rgba(var(--color-accent-cyan-rgb), 0.14) 0%, rgba(var(--color-accent-cyan-rgb), 0.05) 42%, transparent 74%),
        radial-gradient(210px 210px at 86% 56%, rgba(var(--color-accent-teal-rgb), 0.16) 0%, rgba(var(--color-accent-teal-rgb), 0.06) 42%, transparent 74%),
        radial-gradient(900px 700px at 14% 28%, rgba(var(--color-accent-teal-rgb), 0.14) 0%, transparent 60%),
        radial-gradient(900px 700px at 88% 40%, rgba(var(--color-accent-cyan-rgb), 0.12) 0%, transparent 58%),
        repeating-linear-gradient(135deg, rgba(15, 23, 42, 0.032) 0, rgba(15, 23, 42, 0.032) 1px, transparent 1px, transparent 14px);
    opacity: 0.95;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    animation: siteAmbientDrift 18s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    opacity: 0.065;
    mix-blend-mode: multiply;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    animation: heroGrainShift 10s linear infinite;
}

@keyframes siteAmbientDrift {
    0% { transform: translate3d(-1.2%, -0.8%, 0) scale(1.02); opacity: 0.92; }
    50% { transform: translate3d(1.1%, 0.6%, 0) scale(1.02); opacity: 1; }
    100% { transform: translate3d(-0.6%, 1.1%, 0) scale(1.02); opacity: 0.94; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
}

/* Common Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SVG Icon Base Styling */
.svg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
   TYPOGRAPHY & SECTION HEADERS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-accent-teal);
    background-color: rgba(var(--color-accent-teal-rgb), 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--color-text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-gray-dark);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

/* Section Dividers */
.benefits-section,
.about-section,
.services-section,
.promo-banner,
.why-us-section,
.gallery-section,
.contact-section {
    position: relative;
}

.benefits-section::before,
.about-section::before,
.services-section::before,
.why-us-section::before,
.gallery-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-bg-light), transparent);
    pointer-events: none;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-accent-teal);
    color: var(--color-text-white);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--color-accent-cyan);
    color: var(--color-text-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent-teal);
    color: var(--color-accent-teal);
    font-weight: 700;
    padding: 10px 26px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-accent-teal);
    color: var(--color-text-white);
}

#langToggle.btn-outline {
    padding: 8px 14px;
    border-width: 1px;
    line-height: 1;
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--color-whatsapp);
    color: var(--color-whatsapp);
    font-weight: 700;
    padding: 10px 26px;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: transparent;
    transition: var(--transition-normal);
}

.btn-whatsapp-outline:hover {
    background-color: var(--color-whatsapp);
    color: var(--color-text-white);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   FLOATING COMPONENTS
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    color: var(--color-text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(21, 162, 127, 0.4);
    z-index: 9999;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    animation: pulseWhatsapp 2s infinite;
    transition: var(--transition-fast);
}

.floating-whatsapp .whatsapp-icon {
    width: 34px;
    height: 34px;
    display: block;
}

.floating-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.08);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(21, 162, 127, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(21, 162, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(21, 162, 127, 0); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-section-white);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.header-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
    height: 120px;
}

.logo-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    object-contain: fit;
    transition: var(--transition-normal);
}

.main-header.scrolled .logo-img {
    height: 100px;
}

/* Navigation List */
.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-teal);
    transition: var(--transition-normal);
}

.nav-link.active, .nav-link:hover {
    color: var(--color-accent-teal);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--color-section-light);
    color: var(--color-accent-teal);
}

/* Actions in Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    background-color: var(--color-section-light);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.call-action:hover {
    color: var(--color-accent-teal);
    border-color: var(--color-accent-teal);
    background-color: rgba(var(--color-accent-teal-rgb), 0.06);
}

.call-action svg {
    color: var(--color-accent-teal);
}

.phone-number {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

/* Mobile Toggler */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Toggle Menu Active Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    background: url('HARMONY-hero-Arabic1.webp') center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(173, 137, 77, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(241, 205, 119, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, transparent 60%, rgba(173, 137, 77, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

html[data-lang="en"] .hero-section {
    background-image: url('HARMONY-hero-english1.webp');
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 0) 88%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 0) 88%);
    animation: heroGridDrift 18s linear infinite;
}

.hero-mobile-poster {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-mobile-poster img {
    display: block;
    width: 100%;
    height: auto;
}

html[data-lang="ar"] .hero-mobile-poster img[data-lang="en"] {
    display: none;
}

html[data-lang="en"] .hero-mobile-poster img[data-lang="ar"] {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-grid-lines {
        animation: none !important;
    }

    body::before,
    body::after {
        animation: none !important;
        transform: none !important;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-container.hero-container--single {
    grid-template-columns: 1fr;
    justify-items: stretch;
}

.hero-container.hero-container--single .hero-content {
    align-items: flex-start;
    text-align: left;
    width: min(720px, 100%);
    margin-left: auto;
    margin-right: 0;
    padding-top: 80px;
}

html[data-lang="en"] .hero-container.hero-container--single .hero-content {
    margin-left: 0;
    margin-right: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 640px;
    animation: heroContentReveal 0.9s ease-out both;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    text-align: right;
}

html[data-lang="en"] .hero-title {
    text-align: left;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-gray-dark);
    line-height: 1.7;
    width: 100%;
    text-align: right;
}

html[data-lang="en"] .hero-desc {
    text-align: left;
}

/* Hero Lead Form - Glassmorphism */
.hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
    animation: heroContentReveal 1s ease-out 0.14s both;
}

.glass-form-card {
    position: relative;
    background: linear-gradient(180deg, rgba(173, 137, 77, 0.8) 0%, rgba(173, 137, 77, 0.72) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-glass);
    overflow: hidden;
}

.glass-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--color-accent-cyan-rgb), 0.16) 0%, transparent 32%, transparent 62%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0.9;
    pointer-events: none;
}

.glass-form-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-white);
    line-height: 1.3;
}

.glass-form-card p {
    font-size: 0.85rem;
    color: var(--color-text-gray-light);
    margin-bottom: 24px;
}

.glass-form-card > * {
    position: relative;
    z-index: 1;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    fill: var(--color-accent-teal);
    pointer-events: none;
}

.input-wrapper input, .input-wrapper select, .input-wrapper textarea {
    width: 100%;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0 42px 0 16px;
    color: var(--color-text-white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper select option {
    background-color: var(--color-bg-dark-alt);
    color: var(--color-text-white);
}

.input-phone-wrapper input {
    padding-right: 16px;
    direction: ltr;
    text-align: right;
}

html[dir="ltr"] .form-group {
    text-align: left;
}

html[dir="ltr"] .input-icon {
    right: auto;
    left: 14px;
}

html[dir="ltr"] .input-wrapper input,
html[dir="ltr"] .input-wrapper select,
html[dir="ltr"] .input-wrapper textarea {
    padding: 0 16px 0 42px;
}

html[dir="ltr"] .input-phone-wrapper input {
    text-align: left;
}

.input-wrapper input:focus, .input-wrapper select:focus, .input-wrapper textarea:focus {
    border-color: var(--color-accent-cyan);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 8px rgba(var(--color-accent-cyan-rgb), 0.2);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--color-text-white);
    height: 50px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.btn-submit:hover {
    background: var(--gradient-accent-reverse);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.arrow-svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transform: rotate(180deg);
}

@keyframes heroGridDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-18px, 10px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes heroFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-20px, 18px, 0) scale(1.05); }
}

@keyframes heroFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(26px, -14px, 0) scale(0.97); }
}

@keyframes heroPulseGlow {
    0%, 100% { transform: scale(0.96); opacity: 0.38; }
    50% { transform: scale(1.08); opacity: 0.72; }
}

@keyframes heroShineSweep {
    0%, 100% { transform: rotate(26deg) translate3d(0, 0, 0); opacity: 0.12; }
    50% { transform: rotate(26deg) translate3d(-42px, 24px, 0); opacity: 0.32; }
}

@keyframes heroOverlayDrift {
    0% { background-position: 0% 0%; }
    50% { background-position: 40% 24%; }
    100% { background-position: 10% 45%; }
}

@keyframes heroGrainShift {
    0% { transform: translate3d(-2%, -1%, 0); }
    25% { transform: translate3d(1%, -2%, 0); }
    50% { transform: translate3d(3%, 2%, 0); }
    75% { transform: translate3d(-1%, 3%, 0); }
    100% { transform: translate3d(-2%, -1%, 0); }
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================================================
   BENEFITS ROW
   ========================================================================== */
.benefits-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding: 30px 0;
    background-color: var(--color-section-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: var(--color-section-white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(var(--color-accent-teal-rgb), 0.08);
    color: var(--color-accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray-dark);
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 30px 0;
    background-color: var(--color-section-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Graphic Decor Frame */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper--mobile {
    display: none;
}

.about-img-frame {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.frame-decor {
    display: none;
}

.about-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    left: -20px;
    z-index: 3;
    background: var(--color-section-white);
    color: var(--color-text-dark);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent-teal);
}

.badge-txt {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-gray-dark);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-desc {
    font-size: 1rem;
    color: var(--color-text-gray-dark);
    margin-bottom: 18px;
    line-height: 1.7;
    text-align: justify;
}

/* Stats Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 25px 0 35px;
    border-top: 1px solid var(--color-input-bg);
    padding-top: 25px;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent-teal);
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-gray-dark);
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.video-section {
    padding: 30px 0;
    background-color: var(--color-bg-light);
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.intro-video {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(173, 137, 77, 0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
    background: var(--color-accent-teal);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   CASE VIDEOS SECTION
   ========================================================================== */
.case-videos-section {
    padding: 30px 0;
    background-color: var(--color-bg-light);
}

.case-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.case-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.08)),
        #000;
    border: 1px solid rgba(var(--color-accent-teal-rgb), 0.18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    isolation: isolate;
}

.case-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.case-video {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #000;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.case-video-wrapper:hover .case-video {
    transform: scale(1.03);
}

/* ==========================================================================
   INTERACTIVE SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 30px 0;
    background-color: var(--color-section-white);
}

.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tab-btn {
    background: transparent;
    color: var(--color-text-gray-dark);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-text-dark);
}

.tab-btn.active {
    background: var(--color-accent-teal);
    color: var(--color-text-white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Tab Pane content */
.tab-content-wrapper {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-tab-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    background-color: var(--color-section-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-tab-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.service-tab-text p {
    color: var(--color-text-gray-dark);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-points li {
    position: relative;
    padding-right: 28px;
    font-size: 0.95rem;
    color: var(--color-text-gray-dark);
}

.service-points li::before {
    content: '✦';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-accent-teal);
    font-weight: bold;
}

.tab-action-box {
    display: flex;
    gap: 15px;
}

.btn-whatsapp-direct {
    background: var(--color-whatsapp);
}

.btn-whatsapp-direct:hover {
    background: var(--color-whatsapp-hover);
    box-shadow: 0 4px 15px rgba(21, 162, 127, 0.3);
}

.service-tab-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-tab-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ==========================================================================
   PROMO BANNER CALLOUTS
   ========================================================================== */
.promo-banner {
    padding: 30px 0;
    background-color: var(--color-section-white);
}

.promo-banner.dark-theme {
    background-color: var(--color-section-light);
    color: var(--color-text-dark);
}

.promo-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--color-section-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.promo-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-teal);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.promo-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.promo-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--color-text-gray-dark);
}

.dark-theme .promo-content p {
    color: var(--color-text-gray-dark);
}

.promo-buttons {
    display: flex;
    gap: 16px;
}

.promo-image {
    display: flex;
    justify-content: center;
}

.promo-img-round,
.promo-video-round {
    border-radius: var(--radius-lg);
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 6px solid var(--color-section-light);
    transition: transform 0.5s ease;
}

.promo-img-round:hover {
    transform: scale(0.9);
}

.promo-video-round {
    display: block;
    background: #000;
}

.dental-promo .promo-video-round {
    width: min(100%, 380px);
    height: 520px;
    object-fit: contain;
}

.promo-video-round:hover {
    transform: scale(0.98);
}

.dark-theme .promo-img-round,
.dark-theme .promo-video-round {
    border-color: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
    padding: 30px 0;
    background-color: var(--color-section-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--color-section-light);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card::before {
    display: none;
}

.why-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent-teal);
    margin-bottom: 20px;
}

.why-card:hover .why-num {
    transform: none;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--color-text-gray-dark);
    line-height: 1.6;
}

/* ==========================================================================
   BEFORE AFTER GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 30px 0;
    background-color: var(--color-section-light);
}

.before-after-container {
    max-width: 980px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slider-comparison {
    position: relative;
    width: 100%;
    height: clamp(340px, 44vw, 520px);
    user-select: none;
    overflow: hidden;
}

.slider-comparison img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before {
    position: absolute;
    inset: 0;
}

.image-after {
    position: absolute;
    inset: 0;
    width: 50%; /* Init Split Value */
    border-left: 2px solid var(--color-accent-cyan);
    overflow: hidden;
}

.image-after img {
    width: 100%;
    height: 100%;
    max-width: none;
}

.img-label {
    position: absolute;
    bottom: 20px;
    background-color: rgba(173, 137, 77, 0.85);
    color: var(--color-text-white);
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.image-before .img-label {
    right: 20px;
}

.image-after .img-label {
    left: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--color-accent-cyan);
    z-index: 20;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-dark);
    color: var(--color-accent-cyan);
    border: 2px solid var(--color-accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 30px 0;
    background-color: var(--color-section-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-lead-txt {
    font-size: 1.1rem;
    color: var(--color-text-gray-dark);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(var(--color-accent-teal-rgb), 0.08);
    color: var(--color-accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.detail-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 2px;
}

.detail-text p {
    font-size: 0.9rem;
    color: var(--color-text-gray-dark);
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--color-section-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.contact-form-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray-dark);
    margin-bottom: 30px;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-main-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.contact-main-form input, .contact-main-form select, .contact-main-form textarea {
    width: 100%;
    background-color: var(--color-section-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.contact-main-form input:focus, .contact-main-form select:focus, .contact-main-form textarea:focus {
    background-color: var(--color-section-white);
    border-color: var(--color-accent-teal);
    outline: none;
}

.contact-main-form textarea {
    resize: vertical;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer-brand-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links-col h4, .footer-services-col h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 24px;
}

.footer-links-col h4::after, .footer-services-col h4::after {
    display: none;
}

.footer-links-col ul, .footer-services-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a, .footer-services-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links-col a:hover, .footer-services-col a:hover {
    color: var(--color-text-white);
    padding-right: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-accent-teal);
    color: var(--color-text-white);
    transform: translateY(-2px);
}

.footer-social {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    transition: var(--transition-normal);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background: rgba(var(--color-accent-teal-rgb), 0.95);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-text-white);
    transform: translateY(-2px);
}

/* Bottom Sticky Booking bar on Mobile */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(173, 137, 77, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-text-white);
    font-weight: 700;
    font-size: 0.9rem;
}

.mobile-bar-btn svg {
    width: 20px;
    height: 20px;
}

.bar-whatsapp {
    background-color: var(--color-whatsapp);
}

.bar-call {
    background-color: var(--color-section-white);
    color: var(--color-bg-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Screens (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-form-wrapper {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefits-section {
        margin-top: -30px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .case-videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .about-image-wrapper {
        order: 2;
    }

    .about-image-wrapper--desktop {
        display: none;
    }

    .about-image-wrapper--mobile {
        display: flex;
        width: 100%;
        margin: 12px 0 28px;
    }
    
    .about-content {
        order: 1;
        align-items: center;
        text-align: center;
    }
    
    .about-desc {
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .service-tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .service-tab-image {
        order: 1;
    }
    
    .service-tab-text {
        order: 2;
        text-align: center;
    }
    
    .service-points {
        align-items: center;
    }
    
    .tab-action-box {
        justify-content: center;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-banner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promo-image {
        justify-content: center;
        order: 1;
    }
    
    .promo-content {
        order: 2;
        text-align: center;
    }
    
    .promo-buttons {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-panel {
        align-items: center;
        text-align: center;
    }
}

/* Mobile Screens (max-width: 768px) { */
@media screen and (max-width: 768px) {
    .benefits-section {
        display: none !important;
    }

    .case-videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .main-header {
        padding: 0;
    }

    .header-container {
        height: 88px;
        padding: 0 6px;
    }

    .main-header.scrolled .header-container {
        height: 88px;
    }

    .logo-img,
    .main-header.scrolled .logo-img {
        height: 68px;
    }

    .header-actions {
        gap: 12px;
    }

    #langToggle.btn-outline {
        padding: 8px 13px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 0;
        background-image: none !important;
        background-color: var(--color-section-white);
    }

    html[data-lang="en"] .hero-section {
        background-image: none !important;
    }

    .hero-section::before,
    .hero-grid-lines {
        display: none !important;
    }

    .hero-mobile-poster {
        display: block !important;
    }

    .about-section::before {
        display: none;
    }

    .hero-container.hero-container--single,
    .hero-container {
        display: none !important;
    }

    /* Header toggling navigation menu layout */
    .nav-menu {
        position: fixed;
        top: 88px;
        width: min(82vw, 340px);
        height: calc(100dvh - 88px);
        background-color: var(--color-bg-dark);
        padding: 40px 24px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, visibility 0.2s ease;
        z-index: 1000;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    html[dir="rtl"] .nav-menu {
        right: 0;
        left: auto;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        transform: translateX(100%);
    }

    html[dir="ltr"] .nav-menu {
        left: 0;
        right: auto;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        transform: translateX(-100%);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        border-radius: 0;
        padding: 0 0 0 20px;
        min-width: auto;
    }

    .dropdown-menu li a {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
        padding: 8px 16px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

    .menu-toggle {
        display: flex;
    }
    
    .header-actions .call-action,
    .header-actions .header-cta-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.05rem;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .hero-container.hero-container--single .hero-content {
        width: 100%;
        margin: 0;
        padding-top: 0;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.55;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-tab-img {
        height: 250px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .mobile-sticky-bar {
        display: none !important;
    }

    .floating-whatsapp {
        display: flex;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .slider-comparison {
        height: 280px;
    }
}

@media screen and (min-width: 769px) {
    .mobile-sticky-bar {
        display: none !important;
    }
}
