:root {
    --primary-color: #D4AF37;
    /* Gold */
    --primary-dark: #B4941F;
    --secondary-color: #1a1a1a;
    /* Dark */
    --secondary-light: #2c2c2c;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #B0B0B0;
    --bg-dark: #121212;
    --bg-light: #f9f9f9;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --gold-gradient: linear-gradient(135deg, #DFBD69 0%, #926F34 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* Animations & Reveals */
.reveal-item {
    opacity: 0.3;
    /* Start semi-visible to prevent blank screens on slow mobile */
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Mobile-first approach: show content immediately on small screens */
@media (max-width: 768px) {
    .reveal-item {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Glass Cards */
.service-card,
.article-card,
.clinic-card-dark {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover,
.article-card:hover,
.clinic-card-dark:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Custom Selection */
::selection {
    background: var(--primary-color);
    color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.8;
    /* Increased line height for better readability */
    overflow-x: hidden;
}

body.light-mode {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Article Highlights - for important medical info */
.article-highlight {
    background-color: transparent;
    color: inherit;
    font-weight: bold;
    padding: 0;
    display: inline;
    border-bottom: 2px solid var(--primary-color);
    /* Gold underline for all highlighted text */
    padding-bottom: 2px;
}

.article-highlight a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: none;
    /* Inherit from parent */
    transition: all 0.3s ease;
}

.article-highlight a:hover {
    color: #fff;
}

.text-center {
    text-align: center;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.btn-pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    margin-right: 15px;
    /* RTL aware handling needed? margin-inline-start */
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #000;
}

.sub-title {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}


.text-center .section-title::after {
    content: none;
}

/* Page Header for Inner Pages */
.page-header {
    background: var(--gold-gradient);
    padding: 120px 0 40px;
    text-align: center;
    color: #000;
}

.page-header h1 {
    color: #000;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #222;
}

.breadcrumb a {
    color: #222;
    font-weight: 600;
}

.breadcrumb span {
    color: #444;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 5px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px !important;
    width: auto;
    /* Preserve aspect ratio */
    max-height: none;
    transition: height 0.3s ease;
}

.nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-links.active {
    right: 0;
    display: flex;
}

.nav-links li {
    width: 100%;
    text-align: center;
}

.nav-links li a {
    display: block;
    padding: 15px;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links li a:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.05);
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-gray);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
}


.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-social a {
    color: var(--text-light);
    font-size: 1.1rem;
    transition: 0.3s;
}

.header-social a:hover {
    color: var(--primary-color);
}

.lang-switch {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.lang-switch:hover {
    background: var(--primary-color);
    color: #000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; Removed to allow scrolling if content overflows */
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../assets/images/hero-bg-blur.png');
    background-size: cover;
    background-position: center;
    /* Increased brightness */
    opacity: 0.7;
    filter: brightness(1.2);
}


.hero p {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 600px;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.8); */
}

/* Enhanced Hero Overlay for Text Visibility */
/* Enhanced Hero Overlay for Text Visibility - Lighter as requested */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter gradient: very transparent black */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 10;
    /* Ensure content is above overlay */
}

.hero-logo-side {
    width: 600px;
    max-width: 80vw;
    filter: drop-shadow(0 0 30px rgba(201, 169, 97, 0.3));
    position: relative;
    z-index: 10;
}

.hero-logo-side::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: url('../assets/images/hero-bg-blur.png');
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    text-align: right;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 10px;
    color: #fff;
    -webkit-text-fill-color: initial;
    background: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}



.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 70px;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        /* Reduced gap to balance positioning */
    }

    .hero-content {
        text-align: center;
        margin-top: 0;
    }

    .hero-logo-side {
        width: 350px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}



.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.stat-item .count {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 2rem;
    z-index: 20;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.scroll-indicator:hover {
    background: var(--primary-color);
    color: #000;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.hero-logo-side {
    margin-top: 60px;
    /* Lower the logo */
}

.image-wrapper {
    position: relative;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
    width: 100%;
    display: block;
}

/* Dark Theme Clinics Page Design */
.clinics-grid.new-design {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.clinic-card-dark {
    background: #1a1a1a;
    /* Dark card background */
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #333;
}

.clinic-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

.clinic-card-dark.contact-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.clinic-card-dark h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.clinic-card-dark .address {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
    min-height: 50px;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px dashed var(--primary-color);
    padding-bottom: 2px;
}

.map-link:hover {
    color: #fff;
    border-color: #fff;
}

.times p {
    color: #aaa;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.times strong {
    color: var(--primary-color);
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
}

.note {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-whatsapp-card {
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: -20px 20px 0 var(--primary-color);
    /* Artistic border */
}

.qualifications li {
    position: relative;
    padding-right: 25px;
    /* RTL */
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.qualifications li::before {
    content: '✔';
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

/* Services */
.bg-dark {
    background-color: #0d0d0d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary-light);
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid transparent;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-image-header {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-header img {
    transform: scale(1.1);
}

/* Premium Action Button */
.btn-premium-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: var(--primary-color);
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    gap: 20px;
}

.btn-premium-action .btn-icon-box {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    animation: pulse-gold 2s infinite;
}

.btn-premium-action:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.btn-premium-action:hover .btn-icon-box {
    background: #000;
    color: var(--primary-color);
    transform: rotate(360deg) scale(1.1);
}

.btn-premium-action span {
    position: relative;
    z-index: 2;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Clinics - The Card Design */
.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.clinic-card {
    background: var(--secondary-light);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.clinic-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.clinic-card.highlight {
    border: 1px solid var(--primary-color);
}

.clinic-info {
    padding: 25px;
}

.clinic-info h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.clinic-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.clinic-info p i {
    color: var(--primary-color);
    margin-top: 5px;
}

.price-hint {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.btn-map {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--text-gray);
}

.btn-map:hover {
    background: var(--primary-color);
    color: #000;
}

/* Reviews */
.review-card {
    background: var(--bg-dark);
    /* Card in card */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 15px;
    text-align: center;
}

.review-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-card .author {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

/* --- Testimonial Slider (Reference Image Style - Dark Version) --- */
.testimonials-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
}

.testimonials-viewport {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 25px;
    width: max-content;
}

.testimonial-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    min-width: 380px;
    /* Fixed width for better control */
    width: 380px;
    flex-shrink: 0;
    position: relative;
    text-align: right;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        width: 280px;
        padding: 30px 20px;
    }
}

.testimonial-card::before {
    content: '\f10e';
    /* Double quote icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.t-stars-row {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.t-content {
    color: #eee;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.t-user-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

[dir="rtl"] .t-user-row {
    flex-direction: row-reverse;
}

.t-avatar-circle {
    width: 50px;
    height: 50px;
    background: #222;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.t-user-meta {
    text-align: right;
}

[dir="ltr"] .t-user-meta {
    text-align: left;
}

.t-user-name {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.t-user-job {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    opacity: 0.8;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 20px;
    border-top: 5px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    text-align: center;
    /* Center everything */
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.about-col h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.about-col p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 1rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the items */
    gap: 10px;
    color: #fff;
    direction: ltr;
}

/* Fix LTR direction for icons in RTL context */
html[dir="rtl"] .contact-list li {
    flex-direction: row-reverse;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Language Switcher Premium Style */
.lang-btn {
    background: var(--gold-gradient) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 6px 15px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 10px rgba(201, 169, 97, 0.3) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.lang-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(201, 169, 97, 0.5) !important;
}

.lang-btn i {
    font-size: 1rem !important;
}

/* Highlighted Complaint Field */
.important-field {
    border: 2px solid var(--gold-primary) !important;
    background: rgba(201, 169, 97, 0.05) !important;
}

.important-field:focus {
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.4) !important;
    border-color: var(--gold-primary) !important;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* RTL switch? usually left is fine or right */
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Mobile & Universal Navigation Adjustments */
@media (max-width: 768px) {
    .nav-links {
        width: 100%;
    }
}

/* RTL / LTR Support for Menu */
html[dir="rtl"] .nav-links {
    right: -100%;
    left: auto;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

html[dir="rtl"] .nav-links.active {
    right: 0;
}

html[dir="ltr"] .nav-links {
    left: -100%;
    right: auto;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

html[dir="ltr"] .nav-links.active {
    left: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.loader-logo {
    width: 100px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments for Hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* --- Multi-page & Booking Page Styles --- */

/* Navigation Active State */
.nav-links a.active {
    color: var(--primary-color);
}

/* Booking Page Styles */
.page-booking {
    background-color: #f9f9f9;
    /* Light BG for contrast */
    color: #333;
}

.booking-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 50px;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 800px;
    /* Wider card */
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-title {
    color: #000;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

.booking-form {
    text-align: right;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    /* Light gray border */
    border-radius: 12px;
    background: #fdfdfd;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    color: #333;
    appearance: none;
    /* Remove default arrow */
}

/* Custom select arrow support (simple) */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group textarea[required] {
    border-left: 3px solid var(--primary-color);
    /* Visual indicator */
}


.btn-submit {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 20px 0;
    transition: 0.3s;
}

/* Clinic Card Actions */
.clinic-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-map {
    flex: 1;
    display: inline-block;
    /* Ensure it behaves like a button */
    padding: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    border-radius: 5px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-book-clinic {
    flex: 1;
    display: inline-block;
    padding: 10px;
    background: var(--primary-color);
    color: #000;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-book-clinic:hover {
    background: #fff;
    color: #000;
}


.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.whatsapp-link {
    display: block;
    text-align: center;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.whatsapp-link:hover {
    color: #128C7E;
}

.whatsapp-link i {
    margin-left: 8px;
    font-size: 1.3rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .booking-card {
        padding: 30px 20px;
    }
}

/* --- Premium Footer --- */
.footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-brand {
    text-align: right;
}

html[lang="en"] .footer-brand {
    text-align: left;
}

.footer-brand .footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    display: block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 60px;
}

html[lang="en"] .footer-col h4::after {
    right: auto;
    left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #ccc;
    transition: 0.3s;
    font-size: 1rem;
    display: block;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

html[lang="en"] .footer .social-links {
    justify-content: flex-start;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 25px;
    color: #777;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 900px) {
    .footer-col {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 40px;
    }

    .footer-brand,
    html[lang="en"] .footer-brand,
    .footer-col h4,
    html[lang="en"] .footer-col h4,
    .footer-col h4::after,
    html[lang="en"] .footer-col h4::after,
    .contact-list li,
    html[lang="en"] .contact-list li,
    .footer .social-links,
    html[lang="en"] .footer .social-links,
    .footer-links,
    .footer-links li {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-col h4::after,
    html[lang="en"] .footer-col h4::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    html[dir="rtl"] .contact-list li {
        flex-direction: row !important;
    }
}

/* Dark Booking Form */
.booking-section {
    background-color: #000;
    /* Match standard dark bg */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.form-title {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
    /* Handled by row gap or margin-bottom on form-row */
}

/* Vertical spacing for non-row groups */
.booking-form .form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #2c2c2c;
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
    background: #333;
    /* Keep it dark */
    color: #fff;
}

.btn-submit {
    background: var(--gold-gradient);
    color: #000;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
}



/* Testimonials Marquee Section */
.testimonials-scroll-section {
    background: radial-gradient(circle at center, #121212 0%, #000 100%) !important;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}



/* Compensate for fixed header height (approx 120px logo + 40px padding = 160px) */
.hero {
    padding-top: 80px;
    /* Adjusted for smaller header */
}

.nav-links {
    align-items: center;
    /* Ensure links align with center of large logo */
}

/* Global overflow fix */
body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Testimonials cleanup */
.testimonials-scroll-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    /* Ensure it never exceeds viewport */
    overflow: hidden !important;
    /* Force hide scrollbar */
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 0 !important;
}

/* Hide scrollbar just in case it tries to appear */
.testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.testimonials-viewport {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollTestimonialsRTL {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.marquee-track {
    display: flex;
    gap: 25px;
    padding: 40px 0;
    margin: 0;
    width: max-content;
    will-change: transform;
    animation: scrollTestimonials 150s linear infinite;
}

html[dir="rtl"] .marquee-track {
    animation-name: scrollTestimonialsRTL;
}

/* Pause on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-ticker-item {
    background: #111 !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 20px !important;
    padding: 35px;
    margin: 0 15px !important;
    min-width: 320px;
    flex-shrink: 0;
    transition: 0.4s;
    direction: rtl;
    text-align: right;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}




.testimonial-ticker-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.t-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    unicode-bidi: embed;
}

.t-footer {
    display: flex;
    align-items: center;
    gap: 15px;


}

.t-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.t-info {
    display: flex;
    flex-direction: column;
}

.t-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.t-role {
    color: var(--primary-color);
    font-size: 0.8rem;
}


/* FB Button */
.watch-fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877F2;
    /* Facebook Blue */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.watch-fb-btn:hover {
    background: #155db2;
    transform: scale(1.05);
}


/* Success Stories Page Styles */
.reviews-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    padding: 10px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    color: #efefef;
    padding: 12px 35px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.15);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
    transform: scale(1.05);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.success-card {
    background: #141414;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
}

.success-card:hover {
    transform: translateY(-15px);
    border-color: rgba(201, 169, 97, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 169, 97, 0.15);
}

.image-compare-container {
    display: flex;
    height: 250px;
    position: relative;
}

.img-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-label {
    position: absolute;
    top: 15px;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.img-wrapper.before .img-label {
    right: 15px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
}

.img-wrapper.after .img-label {
    left: 15px;
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-info {
    padding: 20px;
    text-align: center;
    background: #1a1a1a;
}

.story-info h3 {
    color: var(--primary-color) !important;
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffffff, #c9a961);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-info p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-info .view-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}


.video-thumbnail-wrapper {
    position: relative;
    height: 250px;
    background: #000;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

.video-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fb-wrapper {
    height: 350px !important;
}

.fb-play-bg {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fb-logo-watermark {
    position: absolute;
    width: 120px;
    opacity: 0.1;
    filter: grayscale(1);
    pointer-events: none;
}

.fb-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.fb-watch-btn {
    display: block;
    background: #1877f2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    text-align: center;
}

.success-card:hover .fb-watch-btn {
    background: #155db2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.single-image-wrapper {
    width: 100%;
    height: 350px;
    /* Taller for vertical posters */
    overflow: hidden;
    position: relative;
    background: #000;
}

.single-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or contain, depending on preference */
    object-position: top;
    transition: transform 0.5s ease;
}

.success-card:hover .single-image-wrapper img {
    transform: scale(1.03);
}


/* Lightbox Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 90%;
    max-width: 1200px;
}

.modal-img-wrapper {
    position: relative;
    flex: 1;
    max-width: 50%;
}

.modal-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-label {
    position: absolute;
    top: 15px;
    right: 15px;
    /* RTL default positions */
    background: rgba(201, 169, 97, 0.9);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 10;
}

.modal-arrow {
    color: var(--primary-color);
    font-size: 3rem;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Sidebar Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8,
.col-lg-4 {
    padding: 0 15px;
}

.col-lg-8 {
    width: 66.666%;
    max-width: 66.666%;
}

.col-lg-4 {
    width: 33.333%;
    max-width: 33.333%;
}

@media (max-width: 991px) {

    .col-lg-8,
    .col-lg-4 {
        width: 100%;
        max-width: 100%;
    }
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.service-card-sidebar {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.3s;
}

.service-card-sidebar:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

.service-card-sidebar h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.service-card-sidebar .date {
    color: #888;
    font-size: 0.85rem;
}

.btn-read-more-sm {
    display: inline-block;
    border: 1px solid #444;
    color: #ccc;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    align-self: flex-end;
    transition: 0.3s;
}

.service-card-sidebar:hover .btn-read-more-sm {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.service-content-wrapper {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-content-wrapper img.service-main-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-rich-text h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-rich-text p {
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-rich-text ul {
    list-style: disc;
    padding-right: 20px;
    color: #ddd;
    margin-bottom: 20px;
}

.service-rich-text li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .modal-img-wrapper {
        max-width: 100%;
    }

    .modal-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-card {
        padding: 30px 20px;
    }
}

/* --- Standalone WhatsApp Button --- */
.whatsapp-btn-fixed {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn-fixed:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.5);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .whatsapp-btn-fixed {
        width: 55px;
        height: 55px;
        font-size: 32px;
        bottom: 20px;
        left: 20px;
    }
}

/* --- Missing Styles for Image Testimonials (Restored) --- */
.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    background: #000;
    border: 1px solid #333;
}

/* --- Testimonials Slider Styles (Restored & Fixed) --- */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: #000;
}

.testimonials-viewport {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    /* Mask for fade effect on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Allow track to grow */
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-image {
    width: 350px !important;
    /* Force fixed width */
    height: 500px !important;
    /* Force fixed height for consistency */
    flex-shrink: 0;
    object-fit: contain;
    /* Show full screenshot */
    border-radius: 15px;
    background: #111;
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    text-align: right;
}

@media (max-width: 768px) {
    .testimonial-image {
        width: 280px !important;
        height: 450px !important;
    }

    .testimonial-card {
        width: 280px;
    }
}

/* --- Testimonial Card Fixed Height --- */
.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    text-align: right;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marquee-track {
    align-items: center;
}

/* --- Header & Navigation Fixes (Mobile & Desktop) --- */

/* 1. Contact Button Styling (Make it look like a nice button) */
.main-btn {
    background: var(--gold-gradient);
    color: #000;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: #000;
}

/* 2. Language Switcher Styling */
.lang-switcher .lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.lang-switcher .lang-btn:hover {
    background: var(--primary-color);
    color: #000;
}

/* 3. Header Spacing & Layout */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Default gap */
}

/* 4. Mobile Optimizations (Max Width 991px) */
/* "Desktop Look on Mobile" - Horizontal Scrollable Menu */
@media (max-width: 991px) {

    /* 0. Unstick Header (Allow it to scroll/move with page) */
    .header {
        position: absolute !important;
        background: rgba(18, 18, 18, 0.98);
        /* Less transparent for readability */
    }

    /* 1. Container: Enable Smooth Horizontal Scroll */
    .header-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* RTL: Flows from Right to Left */
        overflow-x: auto;
        /* Allow scrolling */
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
        white-space: nowrap;
        /* Prevent wrapping */
        padding-bottom: 0px;
        gap: 15px;
        /* Hide scrollbar for sleek look */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .header-inner::-webkit-scrollbar {
        display: none;
    }

    /* 2. Hide Hamburger (Requested: "Without Menu Bar") */
    .hamburger {
        display: none !important;
    }

    /* 3. Navigation Links: Unhide & Style like Desktop */
    .nav-links {
        display: flex !important;
        /* Force show */
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 5px;
        transform: none;
        /* Remove any slide effects */
        top: auto;
        right: auto;
    }

    /* 4. Small Text for Links */
    .nav-links li {
        width: auto;
        margin: 0;
    }

    .nav-links li a {
        padding: 5px;
        font-size: 0.7rem;
        /* Very small distinct text */
        color: #fff;
        font-weight: 600;
        border-bottom: none;
        display: block;
    }

    .nav-links li a:hover {
        background: transparent;
        color: var(--primary-color);
    }

    /* 5. Logo Adjustments (Aligned with Text) */
    .logo {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .logo img {
        height: 35px !important;
        /* Compact logo */
        width: auto;
        display: block;
        /* Visual tweak: sometimes logos need a pixel nudge to match text baseline */
        transform: translateY(1px);
    }

    /* 6. Buttons Adjustments */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-right: 0;
    }

    .header-btn.desktop-only {
        display: block !important;
        margin-right: 0 !important;
    }

    .main-btn {
        padding: 0 10px;
        /* Remove top/bottom padding issues */
        font-size: 0.7rem;
        height: 30px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .lang-switcher .lang-btn {
        padding: 0 8px;
        font-size: 0.7rem;
        height: 30px;
        display: flex;
        align-items: center;
    }

    .lang-switcher .lang-btn i {
        font-size: 0.8rem;
    }

    /* Prevent shrinking */
    .logo,
    .nav-links,
    .header-actions {
        flex-shrink: 0;
    }
}

/* 5. Desktop Optimizations (Min Width 992px) */
@media (min-width: 992px) {

    /* Ensure Navigation is Visible */
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        backdrop-filter: none;
    }

    .nav-links li {
        width: auto;
        margin: 0 10px;
    }

    .nav-links li a {
        padding: 5px 0;
        font-size: 1rem;
        border-bottom: none;
    }

    .nav-links li a:hover {
        background: transparent;
        color: var(--primary-color);
    }

    /* Hide Hamburger on Desktop */
    .hamburger {
        display: none !important;
    }
}