/* General Reset and Custom Properties */
:root {
    @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');
    --primary-color: #0A66C2;
    --primary-gradient: linear-gradient(135deg, #0A66C2 0%, #1e88e5 100%);
    --secondary-color: #0F172A;
    --accent-color: #38BDF8;
    --success-color: #16A34A;
    --bg-color: #FFFFFF;
    --section-bg-color: #F8FAFC;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --white: #FFFFFF;
    --card-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --hover-shadow: 0 20px 40px -15px rgba(10, 102, 194, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections Common */
section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background-color: rgba(10, 102, 194, 0.08);
    border-radius: 50px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-call {
    background: rgba(10, 102, 194, 0.1);
    color: var(--primary-color);
}

.btn-call:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    background: var(--section-bg-color);
}

.btn-whatsapp-cta {
    background: #25D366;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-cta:hover {
    transform: translateY(-2px);
    background: #20ba59;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Sticky Header */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1300px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

.main-header.scrolled {
    top: 15px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-container {
    width: 100%;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.main-header.scrolled .header-container {
    padding: 12px 32px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 48px;
}

.lang-toggle {
    margin-left: auto;
    margin-right: 20px;
}

.logo-accent {
    color: var(--accent-color);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 200px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(10, 102, 194, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

/* Highlights Grid */
.highlights-section {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    background: var(--white);
}

.highlight-icon {
    font-size: 32px;
}

.highlight-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* About Section */
.about-section {
    padding-top: 180px;
    background-color: var(--white);
}

/* ── About Card ─────────────────────────────── */
.about-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 860px;
    margin: 0 auto;
}

.about-card-image {
    position: relative;
    width: 100%;
    height: 340px;
    flex-shrink: 0;
    overflow: hidden;
}

.about-card-image .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.about-card-image .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(10, 102, 194, 0.35);
}

.about-card-body {
    padding: 36px 40px 40px;
}

.about-card-body .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.about-card-body .section-title {
    margin-bottom: 20px;
}

/* keep old grid for desktop if needed — hidden now */
.about-grid {
    display: none;
}

.exp-num {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.exp-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(10, 102, 194, 0.3);
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-checklist {
    list-style: none;
    margin-top: 30px;
}

.about-checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.about-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: rgba(10, 102, 194, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Services Section */
.services-section {
    background-color: var(--section-bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(10, 102, 194, 0.15);
}

.service-icon-bg {
    width: 100%;
    height: 220px;
    border-radius: 0;
    background: rgba(10, 102, 194, 0.08);
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card:hover .service-icon-bg {
    background: var(--primary-color);
}

.service-svg {
    width: 30px;
    height: 30px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px 28px 32px;
    flex: 1;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--section-bg-color);
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Working Process Section */
.process-section {
    background-color: var(--section-bg-color);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    position: relative;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(10, 102, 194, 0.15);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(10, 102, 194, 0.1);
    transition: var(--transition);
}

.timeline-item:hover .timeline-circle {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Brands Slider Section */
.brands-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.brands-title {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.brands-slider-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.brands-slider-container::before,
.brands-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brands-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #FFFFFF, transparent);
}

.brands-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #FFFFFF, transparent);
}

.brands-track {
    display: inline-flex;
    gap: 60px;
    animation: scrollBrands 30s linear infinite;
}

.brand-slide {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.35);
    transition: var(--transition);
}

.brand-slide:hover {
    color: var(--primary-color);
}

/* Statistics Counter */
.stats-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--card-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* ── Customer Reviews – Marquee ─────────────────────── */
.reviews-section {
    background-color: var(--section-bg-color);
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Outer wrapper clips overflow and fades edges */
.reviews-marquee-outer {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    /* fade left & right edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Scrolling track */
.reviews-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* Individual compact card */
.review-mini-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review-mini-card:hover {
    box-shadow: 0 8px 32px rgba(10, 102, 194, 0.14);
    transform: translateY(-3px);
}

/* Card header row */
.rmc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* Coloured avatar circle */
.rmc-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    border: 2px solid rgba(10, 102, 194, 0.2);
    box-shadow: 0 2px 8px rgba(10, 102, 194, 0.15);
}

.rmc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.rmc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.rmc-location {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Google logo pinned to right */
.rmc-google {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-left: auto;
}

/* Stars */
.rmc-stars {
    color: #FBBF24;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Comment text */
.rmc-comment {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}


/* Emergency CTA banner */
.emergency-cta {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 80px 0;
}

.emergency-cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.emergency-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 32px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* FAQ Section Accordion */
.faq-section {
    background-color: var(--white);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Big enough to fit text */
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

/* Contact and Map Section */
.contact-section {
    background-color: var(--section-bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h5 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.text-accent {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.booking-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.1);
}

.map-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Section */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .highlights-section {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    
    .timeline-circle {
        margin: 0;
        flex-shrink: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {

    /* ── Base ─────────────────────────────── */
    body {
        font-size: 17px;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 50px 0;
    }

    /* ── Typography ───────────────────────── */
    .section-tag {
        font-size: 13px;
        padding: 5px 14px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .about-text,
    .about-checklist li,
    .service-card h3,
    .service-card ul li,
    .why-card h4,
    .why-card p,
    .timeline-item h4,
    .timeline-item p,
    .booking-card h3,
    .form-group label,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .footer-desc,
    .footer-col h4,
    .footer-col ul li,
    .footer-bottom p,
    .footer-links a {
        font-size: 16px;
    }

    /* ── Header ───────────────────────────── */
    .main-header {
        top: 12px;
        width: calc(100% - 24px);
    }

    .header-container {
        padding: 8px 16px;
    }

    .main-header.scrolled {
        top: 8px;
    }

    .main-header.scrolled .header-container {
        padding: 6px 16px;
    }

    .logo-img {
        height: 38px;
    }

    .main-header.scrolled .logo-img {
        height: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    /* ── Nav menu ─────────────────────────── */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        padding: 40px 24px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }

    .nav-menu a {
        font-size: 18px;
    }

    /* ── Hero ─────────────────────────────── */
    .hero {
        height: auto;
        padding-top: 110px;
        padding-bottom: 50px;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .hero-container {
        padding: 0 16px;
    }

    .highlights-section {
        display: none;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* ── About Card ───────────────────────── */
    .about-card {
        border-radius: 16px;
        margin: 0;
    }

    .about-card-image {
        height: 220px;
    }

    .about-card-body {
        padding: 22px 18px 28px;
    }

    .about-checklist li::before {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .exp-num {
        font-size: 28px;
    }

    /* ── Services ─────────────────────────── */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 0;
    }

    .service-card-body {
        padding: 20px 18px 24px;
    }

    /* ── Why Choose ───────────────────────── */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 24px 20px;
    }

    /* ── Stats ────────────────────────────── */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ── Booking ──────────────────────────── */
    .booking-card {
        padding: 24px 16px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
    }

    /* ── Reviews ──────────────────────────── */
    .review-slide {
        padding: 24px 16px;
    }

    /* ── Footer ───────────────────────────── */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }

    /* ── CTA ──────────────────────────────── */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
    margin-right: 12px;
    margin-left: 0;
}

.rtl-mode .rmc-google {
    left: 20px;
    right: auto;
}

.rtl-mode .faq-question {
    text-align: right;
}

.rtl-mode .faq-icon {
    float: left;
}

/* Fix highlight cards icon */
.rtl-mode .highlight-icon {
    margin-left: 15px;
    margin-right: 0;
}

/* Adjust contact details text alignment */
.rtl-mode .contact-details li div {
    text-align: right;
}

.rtl-mode .footer-col ul li a {
    text-align: right;
}

/* Missing RTL Styles */
.rtl-mode .rmc-header div {
    margin-right: 12px;
    margin-left: 0;
}
.rtl-mode .detail-icon {
    margin-left: 15px;
    margin-right: 0;
}

/* RTL Marquee Fix */
.rtl-mode .reviews-marquee-track {
    animation: marquee-scroll-rtl 32s linear infinite;
}

@keyframes marquee-scroll-rtl {
    0%   { transform: translateX(0); }
    100% { transform: translateX(25%); }
}

/* ── Floating Action Buttons ── */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp {
    right: 30px;
    background-color: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
}

.floating-call {
    left: 30px;
    background-color: var(--accent-color);
    animation: pulse-call 2.5s infinite;
}

.floating-call:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
}

.floating-icon {
    width: 38px;
    height: 38px;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(10, 102, 194, 0); }
    100% { box-shadow: 0 0 0 0 rgba(10, 102, 194, 0); }
}

@media (max-width: 768px) {
    .floating-btn {
        width: 56px;
        height: 56px;
        bottom: 20px;
    }
    .floating-whatsapp {
        right: 20px;
    }
    .floating-call {
        left: 20px;
    }
    .floating-icon {
        width: 30px;
        height: 30px;
    }
}

/* RTL Layout Fixes for Lists and Margins */
.rtl-mode .about-checklist li {
    padding-left: 0;
    padding-right: 32px;
}
.rtl-mode .about-checklist li::before {
    left: auto;
    right: 0;
}

.rtl-mode .service-card ul li {
    padding-left: 0;
    padding-right: 20px;
}
.rtl-mode .service-card ul li::before {
    left: auto;
    right: 0;
}

.rtl-mode .footer-col ul a:hover {
    padding-left: 0;
    padding-right: 4px;
}

.rtl-mode .rmc-google {
    margin-left: 0;
    margin-right: auto;
    left: auto;
    right: auto;
}

/* ── Review Modal ── */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.review-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-card {
    background: var(--white);
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.review-modal-overlay.active .review-modal-card {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--primary-color);
}

.modal-subtitle {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 20px;
}

.star-rating-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    direction: ltr; /* keep stars LTR logically even in Arabic, or swap visual direction */
}

.star {
    font-size: 32px;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.star.active,
.star:hover,
.star.hovered {
    color: #F59E0B;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.review-success {
    text-align: center;
    padding: 20px 0;
}

.review-success.hidden {
    display: none;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* RTL Support for Modal */
.rtl-mode .review-form {
    text-align: right;
}
.rtl-mode .close-modal-btn {
    right: auto;
    left: 20px;
}
.rtl-mode .star-rating-input {
    flex-direction: row-reverse;
}
