/*
Theme Name: Clarte Beauty Theme
Theme URI: https://clarte.sa
Author: Goha Agency
Author URI: https://goha.agency
Description: A custom beauty theme with elegance and sophistication.
Version: 1.8
Text Domain: clarte.sa
*/



/* 29LT Zarid Display Font */
@font-face {
    font-family: '29LT Zarid Display';
    src: url('assets/fonts/29LT-Zarid-Display-Regular.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

/* -------------------------------------------------------------------------- */
/*	New Hero Section (Screenshot Replica)
/* -------------------------------------------------------------------------- */
.clarte-hero-new {
    background-color: #D5FCF7; /* Light Cyan Match */
    padding: 115px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-text {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
    letter-spacing: 10px;
}

.clarte-hero-new .container {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: var(--secondary-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.hero-model-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px; /* Soft rounded corners */
    box-shadow: 0 20px 40px rgba(12, 17, 49, 0.1);
    max-height: 600px;
    object-fit: cover;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 140px;
    height: 140px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
    z-index: 3;
    animation: rotate-swing 3s ease-in-out infinite, pulse-glow 2s infinite;
}

.floating-badge .badge-content {
    text-align: center;
    color: var(--secondary-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.floating-badge i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-color);
}

.floating-badge span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

@keyframes rotate-swing {
    0% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(15deg); }
    50% { transform: translateX(-50%) rotate(0deg); }
    75% { transform: translateX(-50%) rotate(-15deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Intro Text */
.hero-intro-text {
    text-align: right;
    margin-bottom: 30px;
}

.intro-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.intro-desc {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Booking Card */
.hero-booking-card {
   /* background: #ffffff; */
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(12, 17, 49, 0.08);
    position: relative;
}

.hero-booking-card .card-header i {
    font-size: 24px;
    color: var(--secondary-color);
}

.hero-booking-card .card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

.hero-form .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 2;
    font-size: 14px;
}

.hero-form .form-control {
    width: 100%;
    padding: 12px 40px 12px 15px; /* Icon padding */
    background: #f8f9fa; /* Light gray bg */
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    color: var(--secondary-color);
    transition: all 0.3s;
    text-align: right;
    direction: rtl;
}

.hero-form .form-control:focus {
    background: #ffffff;
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 17, 49, 0.1);
}

.hero-form .btn-submit {
    width: 100%;
    background-color: var(--primary-color); /* Light Cyan */
    color: var(--secondary-color); /* Navy Text */
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.hero-form .btn-submit:hover {
    background-color: #baf7ef; /* Slightly Darker Cyan */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 252, 247, 0.6);
}

/* Header Override for Dark Button (Match Screenshot) */
.header-right .btn-secondary, 
.off-canvas-info .header-btn-mobile {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    border-color: var(--secondary-color) !important;
}

.header-right .btn-secondary:hover,
.off-canvas-info .header-btn-mobile:hover {
    background-color: #1a2255 !important;
    color: #ffffff !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-main-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-intro-text {
        text-align: center;
        margin-top: 30px;
    }
    
    .floating-badge {
        right: 10px;
        bottom: 10px;
        width: 80px;
        height: 80px;
    }
    
    .clarte-hero-new {
        padding: 0;
        /* padding-bottom: 40px; Removed padding bottom to avoid eating space */
        align-items: flex-start; /* Force content to top */
        position: relative;
        min-height: 100vh; /* Ensure full height */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
} /* Close the previous media query here */

/* Hero Section Mobile Background (New Implementation) */
.hero-mobile-bg {
    position: absolute;
    top: 0;
    left: 50%; /* Center relative to viewport */
    width: 100vw; /* Full viewport width */
    margin-left: -50vw; /* Offset to center */
    height: 102%;
    min-height: 100vh; /* Ensure it covers full screen height */
    z-index: 0;
    overflow: hidden;
}

.hero-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0 !important;
    margin-top: -15px;
    /* Removed mask-image to ensure full opacity and no "faded" look at bottom */
}

@media (max-width: 991px) {
    .clarte-hero-new {
        /* Ensure the section takes full viewport height or at least enough space */
        min-height: 100vh;
        /* Padding top was handled by header transparency, but we need to ensure content is reachable */
        padding-top: 100px; 
    }

    .clarte-hero-new .container {
        position: relative;
        z-index: 2; /* Ensure content is above the background image */
        width: 100%;
        max-width: 100%;
        padding-bottom: 40px;
    }
    
    .clarte-hero-new .row {
        align-items: flex-start !important;
        width: 100%;
        margin: 0;
    }

    /* Reset old hacks if any remain affecting layout */
    .clarte-hero-new .col-lg-4 {
        position: static; /* Reset to default behavior */
        width: 100%;
    }

    /* Removed .hero-image-wrapper and .hero-model-img hacks for mobile as we use .hero-mobile-bg now */
    .hero-image-wrapper {
        display: none; /* Ensure original wrapper is hidden on mobile */
    }
    
    .hero-model-img {
       /* Kept for reference but hidden via wrapper */
    }

    /* Ensure form and text appear above the image */
    .hero-booking-card,
    .hero-intro-text, 
    .hero-main-title,
    .floating-badge {
        position: relative;
        z-index: 2;
    }

    /* Adjust form spacing since image is background */
    .hero-booking-card {
        margin-top: 200px; 
        background: rgb(255 255 255 / 30%);
        backdrop-filter: blur(10px);
        margin-bottom: 20px;
    }
    
    /* Hide floating badge on mobile if it interferes, or position it */
    .floating-badge {
        display: none; /* Often cleaner on mobile if full bg */
    }
}

.modern-luxury-header {
    position: relative;
    background-color: var(--secondary-color);
    padding: 10px 0 10px;
    background: linear-gradient(135deg, #702230 0%, #9d606b94 100%);
    overflow: hidden;
    text-align: center;
    margin-bottom: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 15px 40px rgba(12, 17, 49, 0.1);
}

/* Decorative Glows */
.modern-luxury-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(213, 252, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.modern-luxury-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(213, 252, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

/* Geometric Pattern Overlay */
.header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.modern-luxury-header .container {
    position: relative;
    z-index: 2;
}

.modern-luxury-header .page-title {
    color: #ffffff;
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.modern-luxury-header .title-decoration {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 25px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(213, 252, 247, 0.4);
}

.modern-luxury-header .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Mobile Responsiveness for Header */
@media (max-width: 768px) {
    .modern-luxury-header {
        padding: 10px 0 10px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        margin-bottom: 30px;
    }

    .modern-luxury-header .page-title {
        font-size: 32px;
    }
}

/* -------------------------------------------------------------------------- */
/*	Breadcrumbs
/* -------------------------------------------------------------------------- */
.clarte-breadcrumbs {
    padding: 15px 40px;
    background-color: #f8f9fa;
    /* border-bottom: 1px solid rgba(0,0,0,0.05); Removed for custom underline */
    font-size: 14px;
    color: var(--text-body);
    direction: rtl;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.clarte-breadcrumbs .breadcrumbs-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 10px; /* Space for the line */
}

.clarte-breadcrumbs .breadcrumbs-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    box-shadow: 0 0 8px 1px var(--primary-color); /* Shadow with primary color */
    border-radius: 2px;
}

.clarte-breadcrumbs a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.clarte-breadcrumbs a:hover {
    color: #2d3b8f; /* Darker Blue */
    transform: translateY(-1px);
}

.clarte-breadcrumbs .delimiter {
    color: #cbd5e1;
    font-size: 12px;
    --fa-primary-color: #cbd5e1;
    --fa-secondary-color: #cbd5e1;
}

.clarte-breadcrumbs .current {
    color: #64748b;
    font-weight: 500;
}

.clarte-breadcrumbs i {
    font-size: 16px;
    --fa-primary-color: var(--secondary-color);
    --fa-secondary-color: #1abc9c; /* Greenish Cyan */
    --fa-secondary-opacity: 0.6;
}

.clarte-breadcrumbs a:hover i {
    --fa-primary-color: #2d3b8f;
    --fa-secondary-color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .clarte-breadcrumbs {
        padding: 15px 20px;
        font-size: 13px;
    }
}

/* Iwan Zaza */
@font-face {
    font-family: 'Iwan Zaza';
    src: url('assets/fonts/iwanzazapersonal-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Colors */
    --primary-color: #D5FCF7;       /* Light Cyan - Backgrounds/Accents */
    --secondary-color: #0c1131;     /* Dark Navy - Text/Primary Elements */

    /* Typography Colors */
    --text-heading: #0c1131;        /* Matches Secondary */
    --text-body: #475569;           /* Slate Gray for better readability */
    --text-light: #ffffff;          /* White text */

    /* Button Colors (Primary) */
    --btn-bg: #0c1131;
    --btn-text: #D5FCF7;
    --btn-hover-bg: #1a2255;        /* Slightly lighter Navy */
    --btn-hover-text: #ffffff;

    /* Button Colors (Secondary/Alt) */
    --btn-alt-bg: #D5FCF7;
    --btn-alt-text: #0c1131;
    --btn-alt-hover-bg: #baf7ef;    /* Slightly darker Cyan */

    /* Border Colors */
    --border-color: #e2e8f0;
    
    /* Accent Colors */
    --accent-pink: #d63384;
}

body {
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font, 'Iwan Zaza', sans-serif);
    color: var(--text-heading);
    font-weight: normal;
    margin-bottom: 20px;
}

/* -------------------------------------------------------------------------- */
/*	About Page Stats Hero Section
/* -------------------------------------------------------------------------- */
.about-stats-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Dark overlay for better text readability */
.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 17, 49, 0.4); /* Dark Navy overlay */
}

.about-stats-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.stats-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.stat-luxury-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 15px; /* Reduced padding */
    width: calc(33.333% - 20px);
    min-width: 200px; /* Reduced min-width */
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Decorative top line */
.stat-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color); /* Changed to Primary/Cyan as requested */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-luxury-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 80px; /* Reduced size */
    color: var(--primary-color); /* Light Cyan Match #D5FCF7 */
    opacity: 0.2; /* Lower opacity for watermark effect */
    margin-bottom: 0;
    display: block;
    transition: all 0.5s ease;
    z-index: 0;
    transform: rotate(0deg);
    pointer-events: none;
}

.stat-luxury-card:hover .stat-icon {
    transform: scale(1.1) rotate(-10deg);
    opacity: 0.5;
    color: var(--primary-color);
}

.stat-num {
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
    font-size: 58px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-content h3 {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-stats-hero {
        height: auto;
        padding: 80px 0;
    }
    
    .stats-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-luxury-card {
        width: 100%;
        max-width: 500px;
    }
}



a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d3b8f; /* Lighter navy for links */
}

/* Screen Reader Text */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Button Base Styles */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 24px;
    border: 2px solid var(--btn-bg);
    border-radius: 4px; /* Slight rounding, can be 0 for sharp edges */
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
}

input[type="submit"], input[type="button"] {
    display: inline-block; /* Inputs don't support flex layout */
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background-color: var(--btn-hover-bg);
    border-color: var(--btn-hover-bg);
    color: var(--btn-hover-text);
}

/* Secondary Button Style */
.btn-secondary {
    background-color: var(--btn-alt-bg);
    color: var(--btn-alt-text);
    border-color: var(--btn-alt-bg);
}

.btn-secondary:hover {
    background-color: var(--btn-alt-hover-bg);
    border-color: var(--btn-alt-hover-bg);
    color: var(--btn-alt-text);
}

/* -------------------------------------------------------------------------- */
/*	Header Styles
/* -------------------------------------------------------------------------- */
.site-header {
    background-color: #D5FCF7;
    padding: 10px 0; /* Reduced padding for tighter look */
    position: sticky; /* Sticky Header */
    top: 0;
    width: 100%;
    z-index: 1000;
}

@media (max-width: 991px) {
    /* Only transparent/absolute on Home Page */
    .home .site-header {
        position: absolute;
        background-color: transparent;
        box-shadow: none;
    }
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%; /* Full Width */
    margin: 0 auto;
    padding: 0 40px; /* More horizontal padding */
}

/* Left: Contact Info (Hidden on mobile) */
.header-left {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: flex-start;
    gap: 6px; /* Space between address and phone */
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 13px; /* Slightly smaller for stacked view */
    font-weight: 500;
    line-height: 1.2;
}

.header-contact-item i {
    font-size: 16px;
    /* Duotone Colors */
    --fa-primary-color: var(--secondary-color);
    --fa-secondary-color: var(--primary-color);
    --fa-secondary-opacity: 1;
}

/* Center: Logo */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-branding .text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-branding .logo-icon {
    font-size: 24px;
    color: var(--secondary-color);
}

.site-branding .site-title {
    font-family: 'Iwan Zaza', sans-serif; /* Using distinctive font for logo */
    font-size: 28px;
    margin: 0;
    line-height: 1;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------------------------------------------------------------------------- */
/*	Logo Styles & Effects
/* -------------------------------------------------------------------------- */
.site-branding .custom-logo-link {
    display: inline-block;
    position: relative;
    overflow: hidden; /* For shine effect */
    
}

.site-branding .custom-logo-link img {
    padding-top: 8px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

/* Luxurious Hover Effect */
.site-branding .custom-logo-link:hover img {
    filter: drop-shadow(0 5px 15px rgba(213, 252, 247, 0.4)); /* Glow using Primary Color */
}

/* Shine Animation */
.site-branding .custom-logo-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    transition: none;
}

.site-branding .custom-logo-link:hover::after {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

/* Right: Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px; /* Pill shape */
}

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 24px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    background: transparent;
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Responsive Header Adjustments */
@media (max-width: 991px) {
    .header-left {
        display: none; /* Hide contact info on tablets/mobile */
    }
    
    .header-btn {
        display: none; /* Hide button on mobile, move to menu */
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        direction: ltr; /* Force Left-to-Right layout for mobile header */
    }
    
    /* Ensure Logo is on the Left */
    .header-center {
        order: unset; /* Remove order overrides */
        flex: 0 0 auto;
        text-align: left;
        width: auto;
        /* Reset Absolute Positioning from Desktop */
        position: static;
        left: auto;
        transform: none;
        margin: 0;
    }

    /* Ensure Toggle is on the Right */
    .header-right {
        order: unset; /* Remove order overrides */
        width: auto;
        flex: 0 0 auto;
    }

    /* Ensure Logo branding aligns left */
    .site-branding {
        justify-content: flex-start; /* Left align in LTR */
    }
    
    .site-branding .site-title {
        font-size: 22px; 
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #8E3A59; /* Approximate color from image description 'Bella Beauty' often uses maroon/pink, or use user's secondary color */
        /* User said "Regardless of color", but asked for "Look of icon".
           The image icon is a circle with white lines.
        */
        background-color: var(--secondary-color); /* Using theme secondary color */
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: none;
    }
    
    .menu-toggle:hover {
        transform: scale(1.05);
        background-color: var(--secondary-color);
        color: #ffffff;
    }
}

/* -------------------------------------------------------------------------- */
/*	Off-Canvas Menu Styles
/* -------------------------------------------------------------------------- */
.off-canvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2990; /* Increased to be just below menu */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.off-canvas-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.off-canvas-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 100%;
    height: 100vh;
    background-color: var(--secondary-color);
    z-index: 3000; /* Increased to ensure visibility over all elements */
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    overflow-y: auto;
}

.off-canvas-menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
    background: transparent;
    color: #ffffff;
}

/* Navigation Links */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
    margin-top: 60px;
}

.main-navigation ul li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Stagger animation for menu items */
.off-canvas-menu.active .main-navigation ul li {
    opacity: 1;
    transform: translateY(0);
}

.off-canvas-menu.active .main-navigation ul li:nth-child(1) { transition-delay: 0.1s; }
.off-canvas-menu.active .main-navigation ul li:nth-child(2) { transition-delay: 0.2s; }
.off-canvas-menu.active .main-navigation ul li:nth-child(3) { transition-delay: 0.3s; }
.off-canvas-menu.active .main-navigation ul li:nth-child(4) { transition-delay: 0.4s; }
.off-canvas-menu.active .main-navigation ul li:nth-child(5) { transition-delay: 0.5s; }

.main-navigation ul li a {
    color: #ffffff;
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* Mobile Info Section */
.off-canvas-info {
    margin-top: auto; /* Push to bottom */
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item p {
    margin: 5px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-btn-mobile {
    display: inline-block;
    margin-bottom: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    max-width: 300px;
}

.header-btn-mobile:hover {
    background-color: #ffffff;
    color: var(--secondary-color);
    border-color: #ffffff;
}

.off-canvas-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.off-canvas-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.off-canvas-social .social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* -------------------------------------------------------------------------- */
/*	CTA Section
/* -------------------------------------------------------------------------- */
.cta-section {
    background-color: rgba(213, 252, 247, 0.6); /* Primary Color with Transparency */
    padding: 30px 20px; /* Reduced Padding */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content {
    text-align: right;
    width: 30%;
    flex-shrink: 0;
    direction: rtl;
}

.cta-action {
    flex-grow: 1;
}

.cta-title {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 28px; /* Slightly smaller */
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cta-description {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(12, 17, 49, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Booking Form Styles */
.clarte-booking-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    direction: rtl; /* Set direction to RTL */
}

.form-inputs-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 20px; /* Increased gap */
    flex-grow: 1;
}

.form-submit-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-input-group {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.form-input-group i {
    position: absolute;
    right: 15px; /* Icon on the right for RTL */
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
    --fa-primary-color: var(--secondary-color);
    --fa-secondary-color: var(--primary-color);
    --fa-secondary-opacity: 1;
}

.clarte-booking-form input,
.clarte-booking-form select {
    width: 100%;
    padding: 12px 45px 12px 20px; /* Adjusted padding */
    border: 1px solid rgba(12, 17, 49, 0.2);
    border-radius: 50px; /* Rounded inputs */
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
    color: var(--secondary-color);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    text-align: right; /* Text align right */
    box-sizing: border-box; /* Ensure padding doesn't overflow */
}

/* Fix Placeholder Alignment for RTL */
.clarte-booking-form input::placeholder {
    text-align: right;
}

.clarte-booking-form input:focus,
.clarte-booking-form select:focus {
    background: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(12, 17, 49, 0.1);
}

.clarte-booking-form button {
    width: auto;
    margin-top: 0;
    white-space: nowrap;
    height: auto; 
    min-height: 50px; /* Increased height to match inputs + gap potentially, or just feel more substantial */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .clarte-booking-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-inputs-container {
        grid-template-columns: 1fr; /* Stack inputs on tablet/mobile */
        gap: 15px;
    }

    .form-submit-container {
        width: 100%;
        margin-top: 10px;
    }

    .clarte-booking-form button {
        width: 100%;
    }
}

.form-message {
    margin-top: 0;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.form-message.success {
    color: #10b981;
}

.form-message.error {
    color: #ef4444;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .clarte-booking-form {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .clarte-booking-form button {
        width: 100%;
    }
}

/* Works Slider Linear Transition for Marquee Effect */
.clarte-works-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* -------------------------------------------------------------------------- */
/*	Footer Styles
/* -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 80px 0 30px;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-widget h3.widget-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Iwan Zaza', sans-serif;
    letter-spacing: 1px;
}

/* Custom Footer Background Overrides */
.custom-footer-bg .footer-widget h3.widget-title {
    color: var(--secondary-color);
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
    /* Duotone support */
    --fa-primary-color: var(--primary-color);
    --fa-secondary-color: #ffffff;
    --fa-secondary-opacity: 0.6;
}

/* Custom Footer Background Overrides for Icons */
.custom-footer-bg .footer-contact-list li i {
    color: var(--secondary-color);
    --fa-primary-color: var(--secondary-color);
    --fa-secondary-color: var(--primary-color);
    --fa-secondary-opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* Custom Footer Background Overrides for Social Icons */
.custom-footer-bg .footer-social-link {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.custom-footer-bg .footer-social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    
    .footer-top {
        gap: 40px;
    }
}

/* Footer Bottom Menu */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.footer-bottom-menu li {
    margin: 0;
}

.footer-bottom-menu li a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom-menu li a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* -------------------------------------------------------------------------- */
/*	Floating Buttons
/* -------------------------------------------------------------------------- */
.clarte-floating-container {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.clarte-floating-container.position-right {
    right: 30px;
}

.clarte-floating-container.position-left {
    left: 30px;
}

.clarte-floating-trigger {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    animation: clarte-pulse 2s infinite;
}

@keyframes clarte-pulse {
    0% {
        box-shadow: 0 5px 20px rgba(0,0,0,0.2), 0 0 0 0 rgba(213, 252, 247, 0.9);
    }
    70% {
        box-shadow: 0 5px 20px rgba(0,0,0,0.2), 0 0 0 20px rgba(213, 252, 247, 0);
    }
    100% {
        box-shadow: 0 5px 20px rgba(0,0,0,0.2), 0 0 0 0 rgba(213, 252, 247, 0);
    }
}

.clarte-floating-trigger:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.clarte-floating-trigger .icon-close {
    display: none;
}

.clarte-floating-container.active .clarte-floating-trigger .icon-default {
    display: none;
}

.clarte-floating-container.active .clarte-floating-trigger .icon-close {
    display: block;
}

/* Floating Menu */
.clarte-floating-menu {
    position: absolute;
    bottom: 75px;
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
}

.clarte-floating-container.position-left .clarte-floating-menu {
    left: 0;
    transform-origin: bottom left;
}

.clarte-floating-container.position-right .clarte-floating-menu {
    right: 0;
}

.clarte-floating-container.active .clarte-floating-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.clarte-menu-section {
    margin-bottom: 20px;
}

.clarte-menu-section:last-child {
    margin-bottom: 0;
}

.clarte-menu-section h4 {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    font-family: 'Iwan Zaza', sans-serif;
}

.clarte-menu-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    white-space: pre-line;
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
}

.clarte-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    background: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
}

.clarte-menu-item:last-child {
    margin-bottom: 0;
}

.clarte-menu-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.clarte-menu-item.whatsapp i {
    color: #25D366;
}

.clarte-menu-item.phone i {
    color: var(--primary-color);
}

.clarte-menu-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Back to Top */
.clarte-back-to-top {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.clarte-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.clarte-back-to-top.position-right {
    right: 30px;
}

.clarte-back-to-top.position-left {
    left: 30px;
}

.clarte-back-to-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .clarte-floating-container, 
    .clarte-back-to-top.position-right,
    .clarte-floating-container.position-right {
        right: 20px;
        bottom: 20px;
    }

    .clarte-back-to-top.position-left,
    .clarte-floating-container.position-left {
        left: 20px;
        bottom: 20px;
    }
    
    .clarte-floating-menu {
        width: 280px;
    }
}

/* -------------------------------------------------------------------------- */
/*	Booking Page Template
/* -------------------------------------------------------------------------- */
.booking-page-wrapper {
    background-color: #f8f9fa;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    direction: rtl; /* Force RTL for Arabic */
}

.booking-form-section {
    flex: 1.2;
    padding: 80px;
    text-align: right;
}

.booking-image-section {
    flex: 0.3;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    position: relative;
}

.booking-image-section.no-image {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-image-section.no-image i {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.3;
}

.booking-title {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.booking-subtitle {
    color: #888;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.6;
}

.booking-fields-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout for all screens */
    gap: 25px;
    width: 100%;
}

/* Force vertical layout for the booking page form on all devices */
.clarte-booking-form.page-booking-form {
    flex-direction: column;
    align-items: stretch;
}

.clarte-booking-form.page-booking-form .form-submit-section {
    width: 100%;
}

.form-group {
    margin-bottom: 0;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper.with-icon input,
.input-wrapper.with-icon select {
    padding-right: 60px; /* Space for icon */
}

.booking-form-section .input-wrapper .input-icon {
    position: absolute !important;
    right: 25px !important;
    top: 50% !important;
    transform: translateY(-50%);
    /* Breadcrumb Icon Colors */
    --fa-primary-color: var(--secondary-color);
    --fa-secondary-color: #1abc9c; /* Greenish Cyan */
    --fa-secondary-opacity: 0.6;
    color: var(--secondary-color);
    font-size: 20px;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 10;
}

.booking-form-section input:focus ~ .input-icon,
.booking-form-section select:focus ~ .input-icon {
    opacity: 1;
    --fa-primary-color: #2d3b8f;
    --fa-secondary-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.booking-form-section input,
.booking-form-section select {
    width: 100%;
    padding: 20px 25px; /* Increased padding for more height */
    border: 1px solid #e2e8f0;
    border-radius: 8px; /* Slightly squarer for 'squares' feel but still elegant */
    font-size: 16px;
    background: #fdfdfd;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: inherit;
    color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    height: 75px; /* Increased height for comfort */
}

.booking-form-section input:focus,
.booking-form-section select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 10px 25px rgba(12, 17, 49, 0.08);
    background: #fff;
    transform: translateY(-2px);
}

.booking-form-section select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 40px !important; /* Make space for arrow on left */
}

.booking-form-section .input-wrapper .select-arrow {
    position: absolute !important;
    left: 20px !important; /* RTL Left */
    top: 50% !important;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--secondary-color);
    font-size: 14px;
    opacity: 0.7;
    z-index: 10;
}

.form-submit-section {
    margin-top: 50px;
}

.booking-form-section .btn-block {
    width: 100%;
    padding: 22px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2255 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(12, 17, 49, 0.2);
}

.booking-form-section .btn-block:hover {
    background: linear-gradient(135deg, #1a2255 0%, var(--secondary-color) 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(12, 17, 49, 0.3);
}

.booking-form-section .form-message {
    margin-top: 25px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.booking-form-section .form-message.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.booking-form-section .form-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid transparent;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-card {
        flex-direction: column-reverse;
        border-radius: 15px;
        max-width: 600px;
    }
    
    .booking-form-section {
        padding: 40px 30px;
    }
    
    .booking-image-section {
        min-height: 250px;
    }
    
    .booking-fields-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}

/* Doctors Page Styling */
.doctors-page-wrapper {
    padding: 80px 0 150px; /* Increased bottom padding for wave */
    background-color: #fcfcfc;
    position: relative; /* Needed for absolute positioning of wave */
    overflow-x: hidden; /* Ensure no horizontal overflow */
    width: 100%;
}

/* Ensure container is centered */
.container {
    max-width: 1400px; /* Increased max-width for 4 columns */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1; /* Ensure content is above wave */
}

.doctors-header {
    text-align: center;
    margin-bottom: 60px;
}

.doctors-header .page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.doctors-header .page-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
}

.doctor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.doctor-image-wrapper {
    height: 300px;
    position: relative;
    background-color: #f0f2f5;
    overflow: hidden;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 80px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* -------------------------------------------------------------------------- */
/*	About Stats Hero (Homepage Preview)
/* -------------------------------------------------------------------------- */
.about-stats-hero {
    position: relative;
    min-height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.about-stats-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-stats-hero .hero-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
    z-index: 1;
}

.about-stats-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.stats-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.stat-luxury-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-luxury-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-num {
    font-family: 'Iwan Zaza', sans-serif; /* Or appropriate font */
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}

.stat-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .stat-luxury-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .stat-luxury-card {
        width: 100%;
        max-width: 400px;
    }
    
    .about-stats-hero {
        padding: 60px 0;
    }
}

/* Video Overlay Playing State */
.video-blur-overlay.is-playing {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.doctor-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.doctor-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.doctor-specialty {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #1abc9c; /* Primary color fallback */
    background: rgba(26, 188, 156, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: center;
}

.doctor-bio {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.doctor-actions .btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 20px;
}

.doctor-actions .btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

/* Decorative Footer Wave */
.doctors-footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.wave-container {
    position: relative;
    width: 100%;
    height: 100px;
    background: transparent;
}

.waves {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: -7px; /* Fix for safari gap */
    min-height: 100px;
    max-height: 150px;
}

/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}

/* Mobile responsive wave */
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .doctors-page-wrapper {
        padding-bottom: 50px; /* Space for wave */
    }
}

/* Services Page Styling - Luxury Parallax Layout */
.services-luxury-wrapper {
    background-color: var(--primary-color);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Modern Header */
.modern-luxury-header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-luxury-header .header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(213, 252, 247, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.modern-luxury-header .page-title {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.modern-luxury-header .title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 20px;
}

.modern-luxury-header .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Luxury Rows */
.luxury-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 150px;
    position: relative;
}

.luxury-service-row:last-child {
    margin-bottom: 0;
}

.luxury-service-row.row-reverse {
    flex-direction: row-reverse;
}

/* Image Column */
.service-visual-col {
    width: 45%;
    position: relative;
}

.parallax-image-frame {
    width: 100%;
    height: 600px;
    border-radius: 200px 200px 20px 20px; /* Arch shape */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* For reverse rows, maybe flip the arch? Or keep consistent? 
   Let's keep consistent arch for now, or maybe vary it.
   Let's stick to the arch, it looks unique.
*/

.parallax-img {
    width: 100%;
    height: 120%; /* Taller for parallax movement */
    object-fit: cover;
    position: absolute;
    top: -10%; /* Start slightly up */
    left: 0;
    transition: transform 0.1s linear; /* Smooth JS update */
}

/* Placeholder */
.service-placeholder-luxury {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

/* Content Column */
.service-info-col {
    width: 45%;
    padding: 0 20px;
}

.info-content-box {
    position: relative;
}

.service-number {
    display: block;
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 5rem;
    color: rgba(12, 17, 49, 0.05); /* Very subtle watermark number */
    line-height: 1;
    position: absolute;
    top: -60px;
    right: -20px;
    z-index: -1;
}

.service-heading {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
}

.btn-luxury-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(12, 17, 49, 0.15);
}

.btn-luxury-filled i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-luxury-filled:hover {
    background-color: #fff;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(12, 17, 49, 0.2);
}

.btn-luxury-filled:hover i {
    transform: rotate(-15deg) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .modern-luxury-header .page-title {
        font-size: 2.5rem;
    }
    
    .luxury-service-row {
        flex-direction: column !important; /* Force column on mobile */
        margin-bottom: 80px;
    }
    
    .service-visual-col,
    .service-info-col {
        width: 100%;
    }
    
    .service-visual-col {
        margin-bottom: 40px;
    }
    
    .parallax-image-frame {
        height: 400px;
        border-radius: 20px; /* Simple rounded on mobile */
    }
    
    .service-info-col {
        text-align: center;
    }
    
    .service-number {
        right: 50%;
        transform: translateX(50%);
    }
}

/* -------------------------------------------------------------------------- */
/*	Contact Page Styling
/* -------------------------------------------------------------------------- */
.contact-page-wrapper {
    padding: 80px 0;
    background-color: var(--primary-color); /* Light background */
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

/* Columns */
.contact-info-col,
.contact-form-col {
    flex: 1;
}

/* Cards */
.contact-card-luxury,
.form-card-luxury {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(12, 17, 49, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-heading,
.form-heading {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-luxury {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item-luxury .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(213, 252, 247, 0.5); /* Light primary */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item-luxury:hover .icon-box {
    background-color: var(--secondary-color);
    color: #fff;
    transform: rotate(15deg);
}

.contact-item-luxury .item-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-item-luxury .item-content p,
.contact-item-luxury .item-content a {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-luxury .item-content a:hover {
    color: var(--secondary-color);
}

/* Socials */
.contact-socials-luxury {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

.social-link-luxury {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link-luxury:hover {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Form Styling */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control-luxury {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-luxury:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(12, 17, 49, 0.05);
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Map Section */
.contact-map-section {
    position: relative;
}

.map-frame {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 17, 49, 0.1);
    border: 5px solid #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
    }
    
    .contact-card-luxury,
    .form-card-luxury {
        padding: 30px;
    }
    
    .contact-heading,
    .form-heading {
        font-size: 1.8rem;
    }
}

/* -------------------------------------------------------------------------- */
/*	About Page Styling
/* -------------------------------------------------------------------------- */
.about-page-wrapper {
    overflow: hidden;
}

/* Story Section */
.about-story-section {
    padding: 100px 0;
    background-color: #fff;
}

.story-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.story-content {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
}

.sub-heading {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.main-heading {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
}

.story-signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.story-signature span {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.story-signature small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.image-frame-luxury {
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: visible; /* Allow badge to float */
}

.placeholder-img {
    width: 100%;
    height: 500px;
    background-color: var(--primary-color);
    border-radius: 200px 200px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(12, 17, 49, 0.1);
    position: relative;
    overflow: hidden;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.floating-badge {
    position: absolute;
    bottom: -195px;
    right: -30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-badge .count {
    display: block;
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    line-height: 1;
}

.floating-badge .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-top: 5px;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background-color: var(--primary-color);
}

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

.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vision-card:hover, .vision-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(12, 17, 49, 0.05);
    border-color: rgba(213, 252, 247, 1);
}

.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.vision-card:hover .card-icon, .vision-card.featured .card-icon {
    background-color: var(--secondary-color);
    color: #fff;
    transform: rotate(360deg);
}

.vision-card h3 {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: #fff;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZD0iTTAgNDAgTDQwIDAiIC8+PC9zdmc+');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: #fff;
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-us-text .section-title {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for list */
    gap: 20px;
    text-align: right;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-body);
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.features-list li:hover {
    transform: translateX(-5px);
    background: var(--primary-color);
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .story-row {
        flex-direction: column;
    }

    .story-image {
        width: 100%;
        margin-top: 50px;
    }
    
    .floating-badge {
        right: 20px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/*	Legal Pages (Privacy & Terms)
/* -------------------------------------------------------------------------- */
.legal-page-wrapper {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.legal-content-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(12, 17, 49, 0.05);
    position: relative;
    overflow: hidden;
}

.legal-content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.legal-section {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 40px;
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.legal-heading {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.legal-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
    border-radius: 2px;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-right: 25px; /* Space for bullet in RTL */
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.6;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.legal-list.contact-list li {
    padding-right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.legal-list.contact-list li::before {
    content: none;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content-container {
        padding: 30px;
        border-radius: 20px;
    }
    
    .legal-heading {
        font-size: 1.5rem;
    }
    
    .legal-section p, .legal-list li {
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
/*	About Preview Section (Chill Vibes)
/* -------------------------------------------------------------------------- */
.clarte-about-preview {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle background pattern or gradient */
.clarte-about-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(213, 252, 247, 0.2) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.about-carousel {
    position: relative;
    z-index: 2;
    padding: 20px; /* Space for shadow/transform */
}

.about-carousel .carousel-item img {
    border-radius: 40px 40px 40px 0; /* Unique organic shape */
    box-shadow: 20px 20px 60px rgba(12, 17, 49, 0.08);
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-carousel:hover .carousel-item img {
    transform: scale(1.02);
}

.about-preview-content {
    position: relative;
    z-index: 2;
    padding-right: 30px; /* Space from image in RTL */
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    background-color: rgba(213, 252, 247, 0.5);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitle i {
    color: #1abc9c; /* Greenish/Teal accent */
}

.about-preview-content .section-title {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-preview-content .section-desc {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Chill Button */
.btn-chill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: var(--secondary-color);
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-chill i {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-chill:hover {
    color: #2d3b8f;
    padding-right: 10px; /* Move text slightly */
    border-bottom-color: var(--secondary-color);
}

.btn-chill:hover i {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateX(-5px); /* Move icon left in RTL */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .clarte-about-preview {
        padding: 60px 0;
    }
    
    .about-preview-content {
        padding-right: 0;
        text-align: center;
        margin-top: 40px;
    }
    
    .about-carousel .carousel-item img {
        height: 350px;
        border-radius: 30px;
    }
    
    .about-preview-content .section-title {
        font-size: 36px;
    }

    .btn-chill {
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------- */
/*	Marquee Slider Section (Pure CSS Animation)
/* -------------------------------------------------------------------------- */
.clarte-marquee-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey bg */
    overflow: hidden; /* For full width marquee */
    position: relative;
    direction: ltr; /* Force LTR for correct animation direction */
}

/*.clarte-marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #f8f9fa, transparent);
    z-index: 2;
    pointer-events: none;
}

.clarte-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, #f8f9fa, transparent);
    z-index: 2;
    pointer-events: none;
}*/

.marquee-container-css {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track-css {
    display: flex;
    width: max-content; /* Ensure width fits all items */
    animation: marquee-scroll 100s linear infinite; /* Adjust duration for speed */
}

/* Pause on hover if desired, but user asked for continuous */
/* .marquee-track-css:hover {
    animation-play-state: paused;
} */

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move half way (since we duplicated items) */
    }
}

.marquee-item-css {
    width: 280px; /* Smaller width as requested */
    height: 400px; /* Fixed height for overlay effect */
    flex-shrink: 0; /* Prevent shrinking */
    margin-right: 30px; /* Space between items */
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.marquee-item-css:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.marquee-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.marquee-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.marquee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.marquee-item-css:hover .marquee-image img {
    transform: scale(1.1);
}

.marquee-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: right; /* RTL alignment */
}

.marquee-item-css:hover .marquee-text {
    opacity: 1;
    transform: translateY(0);
}

.marquee-text h3 {
    font-family: 'Iwan Zaza', sans-serif;
    font-size: 1.4rem;
    color: #fff; /* White text on overlay */
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.marquee-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9); /* Light white text */
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-item {
        width: 240px;
        height: 320px;
    }
    
    .clarte-marquee-section {
        padding: 50px 0;
    }

    /* Always show text on mobile */
    .marquee-text {
        opacity: 1;
        transform: translateY(0);
    }
}

.marquee-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* -------------------------------------------------------------------------- */
/*	Celebrities Section
/* -------------------------------------------------------------------------- */
.clarte-celebrities-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.clarte-celebrities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(213, 252, 247, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

.celebrity-embed-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 0; /* Remove padding for full-bleed luxury look */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden; /* Ensure no scrollbars */
}

.celebrity-embed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.celebrity-embed-card iframe {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 12px;
}

/* Fix for Instagram Embeds */
.celebrity-embed-card > iframe.instagram-media {
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
}

/* Fix for TikTok Embeds */
.celebrity-embed-card.platform-tiktok blockquote.tiktok-embed {
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
}

/* Fallback Card Styles */
.embed-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.embed-fallback i {
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

/* Header Adjustments for Celebrities Section */
.clarte-celebrities-section .section-header {
    margin-top: 40px;
    margin-bottom: 60px !important;
}

.clarte-celebrities-section .section-title {
    font-family: 'Iwan Zaza', sans-serif;
    color: var(--secondary-color);
    font-size: 2.5rem;
}

@media (min-width: 992px) {
    .clarte-celebrities-section .section-title {
        font-size: 2rem; /* Larger on Desktop */
    }
    
    .clarte-celebrities-section .section-header {
        margin-top: 60px;
        margin-bottom: 80px !important;
    }
}

/* =========================================
   Services Grid Design
   ========================================= */
.service-elegant-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-elegant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%; /* Fill height */
    object-fit: cover; /* Cover area without distortion */
    transition: transform 0.6s ease;
}

.service-elegant-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.service-elegant-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .btn-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.service-elegant-card:hover .service-overlay .btn-icon {
    transform: translateY(0);
}

.service-card-content {
    padding: 25px;
    text-align: center;
    background: linear-gradient(to bottom, #fff 0%, #fcfcfc 100%);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: var(--body-font, '29LT Zarid Display', sans-serif);
}

.service-desc p {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Placeholder */
.service-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
}

@media (max-width: 768px) {
    .service-card-image {
    }
    .service-title {
        font-size: 1.2rem;
    }
}

/* -------------------------------------------------------------------------- */
/*	Testimonials Section
/* -------------------------------------------------------------------------- */
.clarte-testimonials-section {
    background-color: #fcfcfc;
    overflow: hidden;
    padding-bottom: 80px;
    padding-top: 100px;
}

/* Header Controls Customization */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-color);
    background: transparent;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.swiper-button-prev-custom i,
.swiper-button-next-custom i {
    font-size: 18px;
}

/* Ensure Swiper Slide Sizing */
.testimonials-luxury-slider-v2 .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    /* width: auto !important;  REMOVED to let Swiper handle slidesPerView */
    /* flex-shrink: 0 !important; */
}

.testimonials-luxury-slider-v2 {
    overflow: hidden;
    padding-bottom: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .testimonial-image-card {
        height: 250px; /* Reduced from 300px for clearer view */
        max-width: 90%; /* Prevent full width stretching */
    }
    
    .testimonials-controls-wrapper {
        margin-top: 30px;
        gap: 15px;
    }
}

/* Parallax Elements */
.parallax-bg-element {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.1s linear; /* Smooth movement */
}

.parallax-bg-element.shape-1 {
    top: 10%;
    left: 5%;
    font-size: 15rem;
    transform: rotate(-10deg);
}

.parallax-bg-element.shape-2 {
    bottom: 10%;
    right: 5%;
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.05;
}

/* Slider Card (Image Only) */
.testimonial-image-card {
    width: 100%;
    max-width: 100%; /* Allow filling the slide */
    height: 350px; /* Reduced from 500px for better fit */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    margin: 0 auto;
    background: #fff;
    border: 0; /* Removed border to cleaner look */
}

.testimonial-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full screenshot */
    background-color: #fcfcfc; /* Match section bg */
    transition: transform 0.5s ease;
}

.testimonial-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-image-card:hover img {
    transform: scale(1.02);
}

/* Swiper Pagination & Controls Customization */
.testimonials-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.testimonials-controls-wrapper .swiper-button-prev,
.testimonials-controls-wrapper .swiper-button-next {
    position: static !important; /* Remove absolute positioning */
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--secondary-color);
    margin: 0 !important;
    transition: all 0.3s ease;
}

.testimonials-controls-wrapper .swiper-button-prev::after,
.testimonials-controls-wrapper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.testimonials-controls-wrapper .swiper-button-prev:hover,
.testimonials-controls-wrapper .swiper-button-next:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

.clarte-testimonials-section .swiper-pagination {
    position: static !important; /* Center naturally in flex container */
    width: auto !important;
    margin: 0 !important;
}

.clarte-testimonials-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    margin: 0 5px !important;
}

.clarte-testimonials-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 10px;
    background: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-image-card {
        height: 300px; /* Even smaller on mobile */
    }
    
    .testimonials-controls-wrapper {
        margin-top: 30px;
        gap: 15px;
    }
}

/* Legacy styles (removed or kept if needed for other parts) */
.client-header {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.client-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: 'Iwan Zaza', sans-serif;
}

.quote-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 3;
    border: 2px solid #fff;
}

.client-rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.client-content {
    margin-bottom: 25px;
}

.client-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.client-info h4 {
    font-family: 'Iwan Zaza', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.client-verified {
    font-size: 0.85rem;
    color: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Swiper Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
    position: relative;
}

.clarte-testimonials-section .swiper-button-prev,
.clarte-testimonials-section .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin: 0;
}

.clarte-testimonials-section .swiper-button-prev:after,
.clarte-testimonials-section .swiper-button-next:after {
    font-size: 1.2rem;
}

.clarte-testimonials-section .swiper-button-prev:hover,
.clarte-testimonials-section .swiper-button-next:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.clarte-testimonials-section .swiper-pagination {
    position: static;
    width: auto;
}

.clarte-testimonials-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.clarte-testimonials-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
    background: var(--secondary-color);
}

/* -------------------------------------------------------------------------- */
/*	About Services Section
/* -------------------------------------------------------------------------- */
.about-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
}

.about-service-card:hover .icon-wrapper {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* -------------------------------------------------------------------------- */
/*	Celebrities Slider
/* -------------------------------------------------------------------------- */
.clarte-celebrities-slider {
    padding: 20px 10px 60px; /* Top, Side, Bottom (for pagination) */
}

/* Video Overlay Styles */
.video-overlay-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden; /* Hide scrollbars and overflow */
}

.video-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); /* Stronger blur */
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    cursor: pointer;
}

.video-overlay-clean {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    cursor: pointer;
}

.video-blur-overlay.is-playing,
.video-overlay-clean.is-playing {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.play-video-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--secondary-color);
    font-size: 40px; /* Larger icon */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    padding: 0; /* Reset padding */
    backdrop-filter: blur(5px);
    --fa-primary-color: var(--secondary-color);
    --fa-secondary-color: var(--primary-color);
    --fa-secondary-opacity: 0.8;
}

.play-video-btn i {
    filter: drop-shadow(0 5px 10px rgba(28, 64, 76, 0.2)); /* Subtle shadow on icon */
}

.video-blur-overlay:hover .play-video-btn,
.video-overlay-clean:hover .play-video-btn {
    transform: scale(1.15);
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.video-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Hide scrollbars */
}

/* Ensure iframe fits and hides scrollbars */
.video-content iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 600px; /* Taller luxury height */
    display: block;
    border: none;
    overflow: hidden;
}

/* Specific styling for TikTok to hide UI/Text by cropping */
.celebrity-embed-card.platform-tiktok .video-content iframe {
    width: 100% !important;
    height: 110% !important; /* Slightly taller to push bottom text out */
    transform: translateY(-5%); /* Center the crop */
}

.clarte-celebrities-slider .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.clarte-celebrities-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
    width: 25px;
    border-radius: 5px;
}

/* Ensure slides have equal height */
.clarte-celebrities-slider .swiper-slide {
    height: auto;
    display: flex;
}

.clarte-celebrities-slider .celebrity-embed-card {
    width: 100%;
    height: 600px; /* Fixed luxury height */
}

/* Mobile Luxury Adjustments for Hero Section */
@media (max-width: 991px) {
    /* 
    .clarte-hero-new {
        padding-top: 0; 
        text-align: center;
    } 
    */
    /* Note: Spacing is handled in .clarte-hero-new .container rule above */

    /* Hero Text adjustments */
    .hero-text-content {
        text-align: center;
    }
}


