﻿/* Al Ghawali Business Services - Main Stylesheet */

/* Root Variables */
:root {
    --primary-color: #C5A14E;
    --secondary-color: #002B5B;
    --background-color: #F9F9F9;
    --text-primary: #333333;
    --text-secondary: #666666;
    --white: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, #C5A14E, #E4C88C);
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --border-radius: 10px;
    --lang-switch-out-duration: 90ms;
    --lang-switch-in-duration: 140ms;
    --lang-switch-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

body[dir="ltr"] {
    font-family: 'Poppins', sans-serif;
}

/* Language Switch Transition - lightweight to avoid jank */
body.lang-transition-active {
    transition: opacity var(--lang-switch-out-duration) var(--lang-switch-ease);
    will-change: opacity;
}

body.lang-transition-out {
    opacity: 0.78;
}

body.lang-transition-in {
    animation: languageFadeIn var(--lang-switch-in-duration) var(--lang-switch-ease) both;
}

@keyframes languageFadeIn {
    0% {
        opacity: 0.78;
    }
    100% {
        opacity: 1;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.header-scrolled .navbar-brand .logo {
    background: transparent !important;
}

/* Header Styles */
header#header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.header-transparent {
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.header-scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    /* Animation removed for smoother experience */
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    /* Smooth color change without animation */
}

.navbar-nav .nav-link.active,
.navbar-nav .dropdown-toggle.active,
.dropdown-item.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.dropdown-item.active {
    background-color: rgba(197, 161, 78, 0.1);
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.language-toggle .btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.language-toggle .btn:hover {
    background: var(--primary-color);
    color: var(--white);
    /* Smooth color change without animation */
}

/* Header Direction Control */
[dir="rtl"] .navbar .container-fluid {
    flex-direction: row;
}

[dir="rtl"] .navbar-brand {
    margin-left: 2rem;
    order: 1;
}

[dir="rtl"] .navbar-collapse {
    justify-content: flex-start;
    order: 2;
    margin-right: 2rem;
}

[dir="rtl"] .navbar-nav {
    flex-direction: row;
}

[dir="ltr"] .navbar .container-fluid {
    flex-direction: row;
}

[dir="ltr"] .navbar-brand {
    margin-right: 2rem;
}

[dir="ltr"] .navbar-collapse {
    justify-content: flex-start;
}

[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
    text-align: right;
}

[dir="ltr"] .dropdown-menu {
    left: 0;
    right: auto;
    text-align: left;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  background-image: var(--home-hero-bg, url('../images/hero-bg.svg'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  /* Transition removed for instant image display */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0, 42, 91, 0.64), rgba(197, 161, 78, 0.32));
}

@media (hover: none), (pointer: coarse) {
    .hero {
        background-attachment: scroll;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Page Hero Sections */
.domestic-hero, .business-hero, .cleaning-hero, .blog-hero, .jobs-hero {
    min-height: 75vh;

    
    background: linear-gradient(135deg, rgba(0, 42, 91, 0.64), rgba(197, 161, 78, 0.32));
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-title.typewriter-effect {
    overflow: hidden;
    border-right: 3px solid rgba(255,255,255,0.8);
    white-space: nowrap;
    animation: typewriter 4s steps(50, end), blink 0.75s step-end infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInRight 1s ease 0.5s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 0.95;
}

.hero-subtitle.fade-in {
    animation: fadeInUp 1s ease 0.2s both;
}

/* Page Hero Content */
.domestic-hero .hero-title, .business-hero .hero-title, .cleaning-hero .hero-title, .blog-hero .hero-title, .jobs-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.domestic-hero .hero-subtitle, .business-hero .hero-subtitle, .cleaning-hero .hero-subtitle, .blog-hero .hero-subtitle, .jobs-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: slideInRight 1s ease 0.5s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 0.95;
}

/* Unified hero text motion across SPA navigation */
.hero-motion-title {
    animation: heroTitleMotion 0.75s cubic-bezier(0.22, 1, 0.36, 1) both !important;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-motion-subtitle {
    animation: heroSubtitleMotion 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both !important;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes heroTitleMotion {
    0% {
        opacity: 0;
        transform: translate3d(0, 16px, 0) scale(0.995);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes heroSubtitleMotion {
    0% {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-motion-title,
    .hero-motion-subtitle {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,43,91,0.5), rgba(197,161,78,0.4));

    z-index: 1;
}

.hero-overlay .container {
    position: relative;
    z-index: 2;
}

/* ØªØµÙ…ÙŠÙ… Ø´ÙØ§Ù Ù„Ù„Ù†Øµ Ø¹Ù„Ù‰ Ø§Ù„ØµÙˆØ±Ø© Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠØ© */
.hero-transparent-content {
    text-align: right;
    max-width: 700px;
}

.hero-transparent-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-transparent-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* ØªØ£Ø«ÙŠØ± Ø§Ù„Ù„ÙˆØ¬Ùˆ - ØªÙ… ØªØ¹Ø·ÙŠÙ„Ù‡ */
.navbar-brand .logo {
    opacity: 1;
    transform: scale(1);
}

/* ØªØ£Ø«ÙŠØ±Ø§Øª Ø§Ù„Ø§Ù†ØªØ±Ùˆ Ø§Ù„Ø§Ø­ØªØ±Ø§ÙÙŠØ© */
.intro-title {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: introTitleAnimation 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.intro-subtitle {
    opacity: 0;
    transform: translateX(-50px);
    animation: introSubtitleAnimation 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
}

.intro-features {
    opacity: 0;
    animation: introFeaturesAnimation 1s ease 2s forwards;
}

.intro-feature-1 {
    opacity: 0;
    transform: translateY(30px);
    animation: introFeatureSlide 0.8s ease 2.5s forwards;
}

.intro-feature-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: introFeatureSlide 0.8s ease 2.7s forwards;
}

.intro-feature-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: introFeatureSlide 0.8s ease 2.9s forwards;
}

.intro-feature-4 {
    opacity: 0;
    transform: translateY(30px);
    animation: introFeatureSlide 0.8s ease 3.1s forwards;
}

.intro-buttons {
    opacity: 0;
    transform: translateY(40px);
    animation: introButtonsAnimation 1s ease 3.5s forwards;
}

.intro-btn-1 {
    transform: scale(0.8);
    animation: introBtnScale 0.6s ease 4s forwards;
}

.intro-btn-2 {
    transform: scale(0.8);
    animation: introBtnScale 0.6s ease 4.2s forwards;
}

@keyframes introTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes introSubtitleAnimation {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    70% {
        opacity: 0.9;
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes introFeaturesAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes introFeatureSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introButtonsAnimation {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introBtnScale {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-features-transparent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.feature-transparent {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: start;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.feature-transparent:hover {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

[dir="ltr"] .feature-transparent:hover {
    transform: translateX(10px);
}

[dir="rtl"] .feature-transparent:hover {
    transform: translateX(-10px);
}

.feature-transparent i {
    color: #C5A14E;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 161, 78, 0.2);
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-buttons-transparent {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-transparent-primary {
    background: linear-gradient(135deg, rgba(197, 161, 78, 0.9), rgba(228, 200, 140, 0.9));
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-transparent-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(197, 161, 78, 1), rgba(228, 200, 140, 1));
    color: white;
}

.btn-transparent-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-transparent-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}



.btn-primary {
    background: var(--gradient-gold);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    /* Animation removed for smoother experience */
}

.btn-primary:hover {
    /* Animation removed for smoother experience */
    box-shadow: 0 8px 20px rgba(197, 161, 78, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid rgba(197, 161, 78, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 78, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(197, 161, 78, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(197, 161, 78, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(197, 161, 78, 0.2), rgba(228, 200, 140, 0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(197, 161, 78, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 8px 25px;
    /* Animation removed for smoother experience */
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--background-color);
    padding: 80px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(197, 161, 78, 0.16);
    box-shadow: 0 8px 18px rgba(0, 43, 91, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 43, 91, 0.1);
    border-color: rgba(197, 161, 78, 0.28);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    margin-top: 0.2rem;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 161, 78, 0.12);
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.why-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* About Section */
.about {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(197, 161, 78, 0.14), transparent 38%),
        radial-gradient(circle at 88% 85%, rgba(0, 43, 91, 0.09), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #faf8f2 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: auto auto -70px -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 161, 78, 0.2), rgba(197, 161, 78, 0));
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about > .container > .row.align-items-center,
.help > .container > .row.align-items-center {
    --bs-gutter-x: 0;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(197, 161, 78, 0.22);
    box-shadow: 0 20px 46px rgba(0, 43, 91, 0.1);
}

.about > .container > .row.align-items-center > [class*="col-"],
.help > .container > .row.align-items-center > [class*="col-"] {
    display: flex;
}

.about-content {
    width: 100%;
    height: 100%;
    padding: 2.2rem 2rem;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.about .lead {
    max-width: 58ch;
    margin-bottom: 1.6rem;
}

.about-stats {
    row-gap: 1rem;
}

.about-stat-card {
    height: 100%;
    padding: 1.15rem 0.85rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fcf7ea 100%);
    border: 1px solid rgba(197, 161, 78, 0.18);
    box-shadow: 0 10px 24px rgba(0, 43, 91, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 161, 78, 0.35);
    box-shadow: 0 14px 28px rgba(0, 43, 91, 0.1);
}

.about .stat-number {
    font-size: clamp(2rem, 3.3vw, 2.7rem);
    line-height: 1;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
}

.about .stat-label {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.45;
}

.about-points {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.95rem;
}

.about-point {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 247, 234, 0.72) 100%);
    border: 1px solid rgba(197, 161, 78, 0.2);
    border-inline-start: 4px solid rgba(197, 161, 78, 0.65);
    box-shadow: 0 10px 22px rgba(0, 43, 91, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 43, 91, 0.1);
    border-color: rgba(197, 161, 78, 0.35);
    border-inline-start-color: #E4C88C;
}

.about-point > div {
    flex: 1;
}

.point-number {
    width: 42px;
    height: 42px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 16px rgba(197, 161, 78, 0.28);
}

.about-point h4 {
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
    font-size: 1.08rem;
}

.about-point p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ØªØµÙ…ÙŠÙ… ØµÙˆØ±Ø© Ù…Ù† Ù†Ø­Ù† Ø§Ù„Ù…Ø­Ø³Ù† */
.about-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: none;
}

.about-image-container:hover {
    transform: none;
    box-shadow: none;
}

.about-image-enhanced {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(1.05) contrast(1.1);
}

.about-image-enhanced:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.15);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 161, 78, 0.1), rgba(0, 43, 91, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.about-image-container:hover::before {
    opacity: 1;
}

.about-image-container::after {
    display: none;
}

/* FAQ Section */
.faq {
    background: var(--background-color);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white);
    color: var(--text-primary);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
}

/* Help Section */
.help {
    position: relative;
    padding: 95px 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(197, 161, 78, 0.15), transparent 34%),
        radial-gradient(circle at 10% 85%, rgba(0, 43, 91, 0.1), transparent 30%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    overflow: hidden;
}

.help::before {
    content: '';
    position: absolute;
    inset: -90px -100px auto auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 161, 78, 0.25), rgba(197, 161, 78, 0));
    pointer-events: none;
}

.help .container {
    position: relative;
    z-index: 1;
}

.help-content {
    width: 100%;
    height: 100%;
    text-align: start;
    padding: 2.2rem 2rem;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.help-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.help-content .lead {
    max-width: 56ch;
    margin-bottom: 0;
}

.help-image {
    width: calc(100% - 36px);
    height: 100%;
    margin: 18px;
    position: relative;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
}

.help-image::before {
    content: '';
    position: absolute;
    inset: auto 16% 2px 16%;
    height: 18px;
    background: radial-gradient(closest-side, rgba(0, 43, 91, 0.28), rgba(0, 43, 91, 0));
    filter: blur(8px);
    opacity: 0.55;
    pointer-events: none;
}

.help-image.img-zoom-effect {
    border-radius: 0;
    box-shadow: none;
}

.help-image.img-zoom-effect::after {
    display: none;
}

.help-image.img-zoom-effect:hover {
    transform: none;
    box-shadow: none;
}

.help-image .img-professional {
    border-radius: 22px;
    box-shadow: 0 20px 34px rgba(0, 43, 91, 0.2), 0 8px 20px rgba(197, 161, 78, 0.14);
    filter: none;
}

.help-image .img-professional::before {
    display: none;
}

.help-image .img-professional:hover {
    transform: none;
    box-shadow: 0 20px 34px rgba(0, 43, 91, 0.2), 0 8px 20px rgba(197, 161, 78, 0.14);
    filter: none;
}

.help-image.img-zoom-effect:hover img,
.help-image .img-professional:hover img {
    transform: none;
    filter: none;
}

.help-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 360px;
    min-height: 0;
    object-fit: cover;
    border-radius: 22px;
    border: none;
    box-shadow: 0 20px 34px rgba(0, 43, 91, 0.2), 0 8px 20px rgba(197, 161, 78, 0.14);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* ØªÙ†Ø³ÙŠÙ‚ Ù‚Ø³Ù… Ø§Ù„Ù…Ø³Ø§Ø¹Ø¯Ø© */
.help-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.7rem 0 0;
    text-align: start;
}

.help-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 124px;
    padding: 1.15rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 100%);
    border-radius: 15px;
    border: 1px solid rgba(197, 161, 78, 0.24);
    box-shadow: 0 8px 18px rgba(0, 43, 91, 0.07);
    transition: all 0.3s ease;
    border-inline-start: 4px solid var(--primary-color);
}

.help-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0, 43, 91, 0.14);
    border-color: rgba(197, 161, 78, 0.35);
    border-inline-start-color: #E4C88C;
}

.help-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), #E4C88C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(197, 161, 78, 0.3);
}

.help-icon i {
    color: white;
    font-size: 1.25rem;
}

.help-content-text h5 {
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
    font-size: 1.03rem;
    font-weight: 600;
}

.help-content-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.help-cta {
    margin-top: 1.8rem;
}

.help-cta .btn {
    min-width: 220px;
    border-radius: 999px;
    padding: 0.85rem 2rem;
    box-shadow: 0 10px 24px rgba(197, 161, 78, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.help-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(197, 161, 78, 0.42);
}

@media (max-width: 991px) {
    .about > .container > .row.align-items-center,
    .help > .container > .row.align-items-center {
        border-radius: 24px;
    }

    .about-content {
        margin-bottom: 0;
        padding: 1.7rem 1.45rem;
    }

    .about-image-enhanced {
        min-height: 320px;
    }

    .help-image {
        margin-bottom: 0;
        width: calc(100% - 28px);
        margin: 14px;
    }

    .help-image img {
        aspect-ratio: 15 / 10;
        max-height: 300px;
        min-height: 0;
        border-radius: 18px;
        box-shadow: 0 16px 28px rgba(0, 43, 91, 0.18), 0 6px 16px rgba(197, 161, 78, 0.12);
    }

    .help-image .img-professional {
        border-radius: 18px;
        box-shadow: 0 16px 28px rgba(0, 43, 91, 0.18), 0 6px 16px rgba(197, 161, 78, 0.12);
    }

    .help-content {
        padding: 1.7rem 1.45rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 75px 0;
    }

    .about > .container > .row.align-items-center,
    .help > .container > .row.align-items-center {
        border-radius: 20px;
    }

    .about-content {
        padding: 1.4rem 1.1rem;
    }

    .about-stat-card {
        padding: 1rem 0.75rem;
    }

    .help-content {
        padding: 1.4rem 1.1rem;
    }

    .help-image {
        width: calc(100% - 20px);
        margin: 10px;
    }

    .help-image img {
        aspect-ratio: 4 / 3;
        max-height: 240px;
        border-radius: 14px;
        box-shadow: 0 12px 22px rgba(0, 43, 91, 0.16), 0 5px 12px rgba(197, 161, 78, 0.11);
    }

    .help-image .img-professional {
        border-radius: 14px;
        box-shadow: 0 12px 22px rgba(0, 43, 91, 0.16), 0 5px 12px rgba(197, 161, 78, 0.11);
    }

    .help-features {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin: 1.3rem 0 0;
    }
    
    .help-feature {
        min-height: auto;
        padding: 1rem 0.9rem;
        gap: 1rem;
    }
    
    .help-icon {
        width: 46px;
        height: 46px;
    }
    
    .help-icon i {
        font-size: 1.1rem;
    }

    .help-cta {
        display: flex;
        justify-content: center;
    }

    .help-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Contact Section */
.contact {
    background: var(--secondary-color);
    padding: 80px 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    transition: background-color 0.25s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    padding: 40px 0 20px;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .ai-chat-btn, .admin-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow);
    /* Animation removed for smoother experience */
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: var(--gradient-gold);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #E4C88C, #C5A14E);
    /* Animation removed for smoother experience */
    color: var(--white);
}

.ai-chat-btn {
    background: linear-gradient(135deg, var(--secondary-color), #1e3a8a);
}

.ai-chat-btn:hover {
    background: linear-gradient(135deg, #1e3a8a, var(--secondary-color));
    /* Animation removed for smoother experience */
}

.admin-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.admin-btn:hover {
    background: linear-gradient(135deg, #495057, #6c757d);
    /* Animation removed for smoother experience */
    color: var(--white);
}

/* Pulse Animation - DISABLED for smoother experience */
.whatsapp-btn::before, .ai-chat-btn::before, .admin-btn::before {
    display: none; /* Animation removed */
}

/* Pulse animation keyframes removed */

/* AI Chat Modal */
.ai-chat-modal {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 350px;
    height: 450px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
}

.chat-header {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bot-message, .user-message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.bot-message {
    background: var(--background-color);
    color: var(--text-primary);
    align-self: flex-start;
}

.user-message {
    background: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-footer button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

/* Advanced Text Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: transparent;
    }
    51%, 100% {
        border-color: var(--primary-color);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(197, 161, 78, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(197, 161, 78, 0.8), 0 0 30px rgba(197, 161, 78, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Advanced Professional Text Effects */
.text-gradient {
    background: linear-gradient(135deg, #C5A14E, #E4C88C, #F5D76E, #C5A14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    position: relative;
}

/* ØªØ¨Ø³ÙŠØ· Ø§Ù„Ù†ØµÙˆØµ */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Ø§Ù„Ø¥Ø­ØµØ§Ø¦ÙŠØ§Øª */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
}



/* Premium Text Styling */
.premium-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #C5A14E 0%, #E4C88C 50%, #F5D76E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(197,161,78,0.3);
}

.premium-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #C5A14E, #E4C88C);
    transition: width 0.6s ease;
    border-radius: 2px;
}

.premium-text:hover::after {
    width: 100%;
}

/* Ultra-Premium Text Effects */
.ultra-premium {
    background: linear-gradient(135deg, #C5A14E 0%, #E4C88C 25%, #F5D76E 50%, #E4C88C 75%, #C5A14E 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ultraShine 6s ease-in-out infinite;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

@keyframes ultraShine {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
}

/* Luxury Text Container */
.luxury-text-container {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(197,161,78,0.2);
    overflow: hidden;
    margin: 1rem 0;
}

.luxury-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197,161,78,0.1), transparent);
    animation: luxurySlide 3s ease-in-out infinite;
}

@keyframes luxurySlide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

/* Elite Typography */
.elite-text {
    font-family: 'Tajawal', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.8;
    color: #2c3e50;
    position: relative;
    font-size: 1.2rem;
}

.elite-text::first-letter {
    font-size: 3em;
    float: right;
    line-height: 1;
    margin: 0 0.1em 0 0.2em;
    color: #C5A14E;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(197,161,78,0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-shadow-soft {
    text-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 2px 4px rgba(197,161,78,0.1);
}

.text-shadow-strong {
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4), 0 0 10px rgba(197,161,78,0.3);
}

.text-glow {
    animation: advancedGlow 2.5s ease-in-out infinite alternate;
}

@keyframes advancedGlow {
    0% {
        text-shadow: 0 0 5px rgba(197,161,78,0.5), 0 0 10px rgba(197,161,78,0.3);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 20px rgba(197,161,78,0.8), 0 0 30px rgba(197,161,78,0.6), 0 0 40px rgba(197,161,78,0.4);
        transform: scale(1.02);
    }
}

.text-bounce {
    animation: professionalBounce 2.5s ease-in-out infinite;
}

@keyframes professionalBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-15px) scale(1.05); }
    60% { transform: translateY(-8px) scale(1.02); }
}

.text-float {
    animation: elegantFloat 4s ease-in-out infinite;
}

@keyframes elegantFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-0.5deg); }
}

.typewriter {
    overflow: hidden;
    border-right: 4px solid var(--primary-color);
    white-space: nowrap;
    animation: advancedTypewriter 4s steps(50, end), cursorBlink 1s step-end infinite;
}

@keyframes advancedTypewriter {
    0% { width: 0; }
    80% { width: 100%; }
    100% { width: 100%; }
}

/* Enhanced typewriter for complete sentences */
.typewriter-complete {
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
    border-right: 4px solid var(--primary-color);
    animation: typewriterComplete 6s ease-in-out, cursorBlink 1s step-end infinite;
}

@keyframes typewriterComplete {
    0% { 
        max-width: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% { 
        max-width: 100%;
    }
    100% { 
        max-width: 100%;
    }
}

@keyframes cursorBlink {
    0%, 50% { border-color: var(--primary-color); }
    51%, 100% { border-color: transparent; }
}

/* Advanced Hover Effects */
.text-hover-glow:hover {
    text-shadow: 0 0 15px rgba(197,161,78,0.8), 0 0 25px rgba(197,161,78,0.6), 0 0 35px rgba(197,161,78,0.4);
    transform: translateY(-2px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-hover-scale:hover {
    transform: scale(1.08) translateY(-3px);
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-hover-color:hover {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
    transition: all 0.4s ease;
}

.glow-on-hover:hover {
    animation: pulseGlow 1.5s ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(197,161,78,0.5); }
    50% { text-shadow: 0 0 25px rgba(197,161,78,0.9), 0 0 35px rgba(197,161,78,0.7); }
}

.scale-on-hover:hover {
    transform: scale(1.05) rotateX(5deg);
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animated Underlines */
.underline-animated {
    position: relative;
    display: inline-block;
}

.underline-animated::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.underline-animated:hover::after {
    width: 100%;
}

/* Section Title Enhancements */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title.animate-on-scroll {
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title Special Effects */
.hero-title.special-effect {
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ØªØ£Ø«ÙŠØ±Ø§Øª Ø®Ø§ØµØ© Ù„Ù„Ù†ØµÙˆØµ Ø¹Ù„Ù‰ Ø§Ù„Ø®Ù„ÙÙŠØ§Øª */
.hero-text-enhanced {
    position: relative;
    display: inline-block;
}

.hero-text-enhanced::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    right: -15px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,43,91,0.2));
    border-radius: 15px;
    z-index: -1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ØªØ­Ø³ÙŠÙ† Ø§Ù„Ø£Ø²Ø±Ø§Ø± Ø¹Ù„Ù‰ Ø§Ù„Ø®Ù„ÙÙŠØ§Øª */
.hero .btn, .hero-overlay .btn {
    background: linear-gradient(135deg, var(--primary-color), #E4C88C);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 4px 15px rgba(197,161,78,0.4);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.hero .btn:hover, .hero-overlay .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 6px 20px rgba(197,161,78,0.5);
    border-color: rgba(255,255,255,0.5);
    background: linear-gradient(135deg, #E4C88C, var(--primary-color));
}

/* Advanced Professional Image Effects */
.img-professional {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.15) saturate(1.1) drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12), 0 5px 15px rgba(197,161,78,0.1);
    position: relative;
    overflow: hidden;
}

.img-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.img-professional:hover::before {
    left: 100%;
}

.img-professional:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), 0 10px 25px rgba(197,161,78,0.2);
    filter: brightness(1.15) contrast(1.25) saturate(1.25) drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

.img-professional img {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-professional:hover img {
    transform: scale(1.1);
}

.img-zoom-effect {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.img-zoom-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(197,161,78,0.1), rgba(0,43,91,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.img-zoom-effect:hover::after {
    opacity: 1;
}

.img-zoom-effect img {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.1);
}

.img-zoom-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.img-zoom-effect:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

.img-parallax {
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(197, 161, 78, 0.8), rgba(0, 43, 91, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 15px;
}

.img-overlay:hover {
    opacity: 1;
}

/* Advanced Typography */
.text-professional {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional Text Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Text Reveal Animation */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    animation: textReveal 1.5s ease forwards;
}

@keyframes textReveal {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* Staggered Animation */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Professional Button Effects */
.btn-professional {
    position: relative;
    overflow: hidden;
    background: var(--gradient-gold);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(197,161,78,0.3);
}

.btn-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-professional:hover::before {
    left: 100%;
}

.btn-professional:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(197,161,78,0.4);
    color: white;
}

/* Icon Animations */
/* Icon animations disabled - these are defined as keyframes but animation is disabled */
/* Use these classes for static icons without animations */

.text-elegant {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.text-elegant::before,
.text-elegant::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateY(-50%);
}

.text-elegant::before {
    left: -60px;
}

.text-elegant::after {
    right: -60px;
}

.text-highlight {
    position: relative;
    z-index: 1;
}

.text-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(120deg, rgba(197, 161, 78, 0.3) 0%, rgba(197, 161, 78, 0.1) 100%);
    z-index: -1;
    transform: skew(-12deg);
    transition: all 0.3s ease;
}

.text-highlight:hover::before {
    height: 100%;
    transform: skew(-12deg) translateY(-10%);
}

/* Card Enhancements */
.card-professional {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
}

.card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 161, 78, 0.1), transparent);
    transition: left 0.5s ease;
}

.card-professional:hover::before {
    left: 100%;
}

.card-professional:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced Section Dividers */
.section-divider {
    position: relative;
    text-align: center;
    margin: 80px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gradient-gold), transparent);
    transform: translateY(-50%);
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.section-divider span {
    background: var(--background-color);
    padding: 0 40px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.section-divider span::before,
.section-divider span::after {
    content: 'âœ¦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

.section-divider span::before {
    left: -20px;
}

.section-divider span::after {
    right: -20px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* Scroll-triggered Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Text Animations */
@media (max-width: 768px) {
    .typewriter {
        animation: advancedTypewriter 3s steps(30, end), cursorBlink 1s step-end infinite;
    }
    
    .text-bounce, .text-float {
        animation: none;
    }
    
    .text-elegant::before,
    .text-elegant::after {
        display: none;
    }
    
    .card-professional:hover {
        transform: translateY(-10px) rotateX(3deg);
    }
    
    .img-professional:hover {
        transform: translateY(-8px) scale(1.03);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-transparent-title {
        font-size: 2.5rem;
    }
    
    .hero-transparent-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features-transparent {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .hero-buttons-transparent {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-transparent-primary,
    .btn-transparent-secondary {
        text-align: center;
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-buttons {
        left: 20px;
        bottom: 20px;
    }
    
    .whatsapp-btn, .ai-chat-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .ai-chat-modal {
        width: calc(100vw - 40px);
        left: 20px;
        right: 20px;
    }
    
    .about-image img {
        width: 250px;
        height: 250px;
    }
    
    [dir="rtl"] .navbar-collapse {
        text-align: right;
        margin-top: 1rem;
    }
    
    [dir="ltr"] .navbar-collapse {
        text-align: left;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .hero-transparent-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .benefit-item, .about-point {
        flex-direction: column;
        text-align: center;
    }

    .about-point {
        border-inline-start-width: 0;
        border-top: 4px solid rgba(197, 161, 78, 0.65);
    }
    
    .benefit-item i, .point-number {
        margin: 0 0 1rem 0;
    }
    
    .about-image-enhanced {
        height: 250px;
        min-height: 250px;
    }
}

/* RTL Specific Styles */
[dir="rtl"] .floating-buttons {
    left: auto;
    right: 30px;
}

[dir="rtl"] .ai-chat-modal {
    left: auto;
    right: 30px;
}

[dir="rtl"] .feature-transparent,
[dir="rtl"] .benefit-item,
[dir="rtl"] .about-point,
[dir="rtl"] .contact-item,
[dir="rtl"] .help-feature {
    direction: rtl;
}

[dir="rtl"] .benefit-item i {
    margin: 0;
}

[dir="rtl"] .about-point .point-number {
    margin: 0;
}

[dir="rtl"] .contact-item i {
    margin: 0;
}

[dir="rtl"] .social-links a {
    margin-left: 0;
    margin-right: 10px;
}

[dir="rtl"] .navbar .container-fluid {
    justify-content: space-between;
}

[dir="rtl"] .navbar-expand-lg .navbar-nav {
    flex-direction: row;
}

[dir="rtl"] .navbar-expand-lg .navbar-collapse {
    justify-content: flex-start;
}

/* LTR Specific Styles */
[dir="ltr"] {
    font-family: 'Poppins', sans-serif;
}

[dir="ltr"] .section-title::after {
    right: auto;
    left: 50%;
}

[dir="ltr"] .floating-buttons {
    right: 30px;
    left: auto;
}

[dir="ltr"] .ai-chat-modal {
    right: 30px;
    left: auto;
}

[dir="ltr"] .feature-transparent,
[dir="ltr"] .benefit-item,
[dir="ltr"] .about-point,
[dir="ltr"] .contact-item,
[dir="ltr"] .help-feature {
    direction: ltr;
}

[dir="ltr"] .benefit-item i {
    margin: 0;
}

[dir="ltr"] .about-point .point-number {
    margin: 0;
}

[dir="ltr"] .contact-item i {
    margin: 0;
}

[dir="ltr"] .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

[dir="ltr"] .hero-content {
    text-align: left;
}

[dir="ltr"] .service-card {
    text-align: left;
}

[dir="ltr"] .help-features {
    text-align: left;
}

/* Language-specific animations */
.lang-en .typewriter {
    border-right: 4px solid var(--primary-color);
    animation: advancedTypewriter 5s steps(60, end), cursorBlink 1s step-end infinite;
}

.lang-ar .typewriter {
    border-right: 4px solid var(--primary-color);
    animation: advancedTypewriter 4s steps(50, end), cursorBlink 1s step-end infinite;
}

/* Complete sentence display */
[dir="ltr"] .typewriter {
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

[dir="rtl"] .typewriter {
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

/* ==================== RESPONSIVE NAVBAR STYLES ==================== */

/* Tablet & Small Devices (768px - 991px) */
@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(197, 161, 78, 0.1);
        padding-right: 1.5rem;
    }
    
    .dropdown-menu {
        border-radius: 5px;
        margin-top: 0.5rem;
    }
    
    .navbar-collapse {
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin-top: 0.5rem;
    }
    
    .d-flex.align-items-center.gap-2.gap-md-3 {
        gap: 0.5rem !important;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .language-toggle {
        margin-top: 0;
        border-top: none;
    }
    
    [dir="rtl"] .navbar-collapse {
        text-align: right;
    }
    
    [dir="ltr"] .navbar-collapse {
        text-align: left;
    }
}

/* Mobile Phones (Max 767px) */
@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand .logo {
        height: 35px;
    }
    
    .navbar-brand {
        margin-left: 0;
        margin-right: 0;
    }
    
    .navbar-nav {
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler-icon {
        height: 1.25rem;
        width: 1.25rem;
    }
    
    .dropdown-menu {
        margin: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .d-flex.align-items-center.gap-2.gap-md-3 {
        gap: 0.5rem !important;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .btn-primary.btn-sm, 
    .btn-outline-primary.btn-sm {
        padding: 0.375rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Extra Small Phones (Max 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand .logo {
        height: 30px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.4rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        padding-right: 1rem;
    }
    
    .dropdown-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .d-flex.align-items-center.gap-2.gap-md-3 {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.5rem !important;
    }
    
    .btn-primary.btn-sm, 
    .btn-outline-primary.btn-sm {
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .language-toggle {
        width: 100%;
    }
    
    .language-toggle .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .floating-buttons,
    .ai-chat-modal {
        display: none !important;
    }
}

/* Header Smooth Transitions */
.navbar,
.navbar-nav,
.navbar-collapse,
.navbar-brand {
    /* Animation removed for smoother experience */
}

/* Remove all animations from navbar buttons and links */
.navbar .btn,
.navbar .btn-primary,
.navbar .btn-outline-primary,
.navbar .btn-sm,
.navbar #dashboardBtn,
.navbar .language-toggle .btn {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.navbar .btn:hover,
.navbar .btn-primary:hover,
.navbar .btn-outline-primary:hover,
.navbar .btn-sm:hover,
.navbar #dashboardBtn:hover,
.navbar .language-toggle .btn:hover {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* Remove pulse animation from navbar buttons */
.navbar .btn::before,
.navbar .btn-primary::before,
.navbar #dashboardBtn::before {
    display: none !important;
    animation: none !important;
}

/* Allow motion only for language switch state */
.navbar .language-toggle .btn .lang-toggle-label {
    display: inline-block;
    min-width: 2.6ch;
    text-align: center;
}

.navbar .language-toggle .btn.is-switching {
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease !important;
    box-shadow: 0 0 0 0.14rem rgba(197, 161, 78, 0.22);
}

.navbar .language-toggle .btn.is-switching i {
    animation: langGlobeSpin 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar .language-toggle .btn.is-switching .lang-toggle-label {
    animation: langLabelSwap 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes langGlobeSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    45% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes langLabelSwap {
    0% {
        opacity: 0.55;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.lang-transition-active,
    body.lang-transition-in {
        transition: none !important;
        animation: none !important;
    }

    .navbar .language-toggle .btn.is-switching i,
    .navbar .language-toggle .btn.is-switching .lang-toggle-label {
        animation: none !important;
    }
}

/* Enhanced Mobile Header */
@media (max-width: 991px) {
    [dir="rtl"] .language-toggle {
        text-align: right;
        margin-top: 1rem;
    }
    
    [dir="ltr"] .language-toggle {
        text-align: left;
        margin-top: 1rem;
    }
}

/* === Responsive Cards, Images, Buttons, Tables === */
@media (max-width: 991px) {
    .service-card, .feature-box, .package-card, .worker-card, .cleaning-type-card, .benefit-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
        min-height: unset;
    }
    .workers-section .row, .services-grid .row, .packages .row, .cleaning-types .row {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    .worker-card img, .service-card img, .package-card img, .cleaning-type-card img {
        width: 100%;
        height: auto;
        max-width: 180px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 1rem auto;
        display: block;
    }
    .btn, .btn-lg, .btn-primary, .btn-outline-primary {
        width: 100%;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    table {
        width: 100%;
        font-size: 0.95rem;
        overflow-x: auto;
        display: block;
    }
    th, td {
        padding: 0.5rem;
    }
}

@media (max-width: 767px) {
    .section-title, h1, .hero-title, .hero-transparent-title {
        font-size: 2rem !important;
    }
    .hero-content, .hero-transparent-content {
        padding: 0.5rem;
        text-align: center;
    }
    .navbar-nav {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .footer .row {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .worker-card img, .service-card img, .package-card img, .cleaning-type-card img {
        max-width: 120px;
    }
    .section-title, h1, .hero-title, .hero-transparent-title {
        font-size: 1.3rem !important;
    }
}

/* === Default Image/Icon Fallback === */
.default-img {
    background: url('../images/defualt.png') center/cover no-repeat;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: inline-block;
}
.default-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: #f9f9f9;
    border-radius: 50%;
    padding: 0.7rem;
    display: inline-block;
}

