/* Global Styles */
:root {
    /* Gold Palette */
    --primary-color: #D4AF37;
    --primary-light: #F2D06B;
    --primary-dark: #A67C00;

    /* Black/Dark Palette */
    --bg-dark: #000000;
    --bg-card: #111111;
    --bg-secondary: #0a0a0a;

    --text-main: #ffffff;
    --text-muted: #cccccc;

    /* Specific Dark Footer Palette - can map to above */
    --footer-bg: var(--bg-card);
    --footer-text-main: var(--text-main);
    --footer-text-muted: var(--text-muted);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-speed: 0.3s;
    --border-radius-sm: 8px;
    --border-radius-md: 20px;
    --border-radius-lg: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0px 0px 10px rgba(212, 175, 55, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 3px;
}

/* Left-aligned section titles */
.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    left: 0;
    transform: none;
}

/* --- Header Section (Top Bar + Navbar) --- */

/* Top Bar */
.top-bar {
    background-color: var(--bg-card);
    /* Darker background */
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--primary-color);
}

/* Language Selector */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lang-selector:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.lang-selector i {
    color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-dropdown a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Main Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    /* No rounded corners for sticky nav usually, or stick to bottom only */
}

/* Logo */
.logo img {
    height: 70px;
    width: auto;
}

/* Nav Links (Center) */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li a {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-speed);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

/* Separator Dots */
.nav-links li:not(:last-child)::after {
    content: '•';
    color: var(--primary-dark);
    margin-left: 2rem;
    font-size: 1.2rem;
}

/* Right Side Actions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 1.1rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
    font-family: var(--font-heading);
}

/* Appointment Button */
.appointment-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-speed);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

/* Lang Selector inside Top Bar now maybe? Or nav right. References image doesn't strictly show lang. 
   We'll append it to top bar right. */

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.toggle .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.toggle .line:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Nav Container & Menu */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-speed);
    text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-btn {
    white-space: nowrap;
}

/* Mobile Navigation Styles */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }

    .nav-menu li a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        width: 100%;
    }

    .logo img {
        height: 50px;
    }

    .top-bar {
        display: none;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    height: 85vh;
    /* Adjusted since header is taller */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-main);
    padding: 0 1rem;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    position: relative;
    margin-top: 0;
    /* Sticky takes care */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color), var(--primary-light));
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-speed);
    animation: fadeInUp 1.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color), var(--primary-dark));
}

/* Services */
.services-section {
    padding: 5rem 5%;
    background-color: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-speed);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.service-card a {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.service-card a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.service-card a:hover::after {
    width: 100%;
}

/* About Preview */
.about-preview {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    margin: 2rem 0;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-md);
    box-shadow: 15px 15px 0 rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer (Kept from previous step) */
/* Footer (Dark Mode Preserved) */
footer {
    background-color: var(--footer-bg);
    padding: 6rem 5% 2rem;
    position: relative;
    color: var(--footer-text-main);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.footer-left h3,
.footer-right h3 {
    font-size: 1.1rem;
    color: var(--footer-text-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer-links-grid a {
    color: var(--footer-text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links-grid a:hover {
    color: var(--primary-color);
    padding-left: 3px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-center .footer-logo-img {
    height: 120px;
    margin-bottom: 1rem;
}

.footer-center p {
    max-width: 450px;
    margin: 1rem auto;
    font-size: 0.9rem;
    color: var(--footer-text-muted);
    line-height: 1.6;
}

.footer-social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--footer-text-main);
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

.footer-social-icon:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-right {
    text-align: right;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--footer-text-muted);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--footer-text-main);
}

.hours-row span:last-child {
    margin-left: 2rem;
    color: var(--primary-color);
}

.footer-bottom-pill {
    background-color: #000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.copyright-text,
.developer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.developer-text a {
    color: var(--text-main);
    border-bottom: 1px solid var(--primary-color);
}

.scroll-top-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
    border: 2px solid #000;
}

.scroll-top-btn:hover {
    transform: translate(-50%, -60%);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Layout Inputs */
input,
textarea {
    background-color: var(--bg-card);
    color: var(--text-main);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    font-family: var(--font-body);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 1rem 5%;
        flex-wrap: wrap;
        /* Allow wrapping */
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    /* Hide nav right elements like phone on mobile or simplify */
    .nav-right {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-150%);
        transition: var(--transition-speed);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li:not(:last-child)::after {
        content: none;
    }

    /* Remove separators on mobile */
    .nav-links li {
        margin-bottom: 1rem;
    }

    .top-bar {
        display: none;
        /* Often hidden on mobile to save space */
    }

    .about-preview {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Footer Responsive */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-left {
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links-grid {
        text-align: center;
    }

    .hours-row {
        justify-content: center;
        gap: 2rem;
    }

    .footer-bottom-pill {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .scroll-top-btn {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 1rem 0;
    }

    .scroll-top-btn:hover {
        transform: translateY(-5px);
    }
}

/* Language Selector Fixes */
.lang-selector {
    position: relative;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2000;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    background-color: #000;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    z-index: 2001;
    margin-top: 5px;
}

.lang-selector:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    padding: 0.8rem 1rem;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.2s;
    background-color: #000;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* --- Hero Slider Styles --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Match previous hero height */
    overflow: hidden;
    background-color: #000;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align content like in image */
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    z-index: 2;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

.slide-content {
    position: relative;
    z-index: 10;
    padding-left: 8%;
    /* Indent from left */
    max-width: 800px;
    color: #fff;
    margin-top: 50px;
    /* Slight offset for header */
}

.slide-subtitle {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.slide-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 400;
    /* Regular weight often looks elegant */
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    font-family: var(--font-body);
    /* Or heading font if you prefer */
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    /* Gold button */
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    /* Fully rounded */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    animation: fadeInUp 0.8s ease 0.6s backwards;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.slide-btn i {
    transition: 0.3s;
}

.slide-btn:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.slide-btn:hover i {
    transform: translateX(5px);
}

.slider-controls {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-dots .dot {
    display: block;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-content {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }

    .slide {
        justify-content: center;
    }

    .slide-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .slider-controls {
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: 20px;
        flex-direction: row;
    }

    .slide::after {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* --- Inner Peace Section Styles --- */
.inner-peace-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.inner-peace-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
}

.sub-pill {
    display: inline-block;
    background-color: var(--bg-secondary);
    color: var(--text-muted);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.peace-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: left;
    text-shadow: none;
}

.peace-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.peace-img-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.peace-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.peace-cta-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.peace-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.peace-cta-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.peace-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: 0.3s;
    width: fit-content;
}

.peace-cta-btn:hover {
    background-color: var(--primary-color);
    color: #000;
}

.peace-desc-main {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.peace-desc-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.peace-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.peace-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
}

.icon-box {
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    border: 1px dashed var(--primary-color);
    border-radius: 50%;
    transition: 0.3s;
}

.icon-box:hover .icon-circle {
    background-color: var(--primary-color);
    color: #000;
    border-style: solid;
}

.icon-box h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.icon-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .inner-peace-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .peace-icons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .peace-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .peace-icons-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Luxury Rituals Carousel Section --- */
.luxury-rituals-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.luxury-rituals-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 Q150,50 180,100 Q150,150 100,180 Q50,150 20,100 Q50,50 100,20" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.2"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.rituals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.rituals-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-family: var(--font-heading);
    margin: 0;
    flex: 1;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.rituals-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.rituals-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.ritual-card {
    min-width: calc(33.333% - 1.5rem);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ritual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ritual-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ritual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.ritual-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.ritual-content h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-heading);
}

.ritual-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.ritual-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.ritual-btn-dark {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.ritual-btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .ritual-card {
        min-width: calc(50% - 1rem);
    }

    .rituals-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .ritual-card {
        min-width: 100%;
    }

    .rituals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .carousel-nav {
        align-self: flex-end;
    }
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 1.5rem);
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
}

.author-info h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -20px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 1.2rem;
}

.testimonial-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        display: none;
        /* Hide tooltip on mobile */
    }
}

/* --- Appointment Form Section --- */
.appointment-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.appointment-info {
    position: sticky;
    top: 100px;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s;
}

.feature-box:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-box h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.appointment-form-wrapper {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

/* Fix for dropdown options visibility */
.form-group select option {
    background-color: #fff;
    color: #000;
    padding: 10px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .appointment-info {
        position: static;
    }

    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-form-wrapper {
        padding: 2rem;
    }
}

/* ===== Photo-Based Service Cards ===== */
.services-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-photo-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.2);
}

.service-photo-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-photo-card:hover .service-photo-image img {
    transform: scale(1.1);
}

.service-photo-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.service-photo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-photo-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-photo-card:hover .service-photo-btn {
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

/* Responsive for photo cards */
@media (max-width: 768px) {
    .services-photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .service-photo-image {
        height: 200px;
    }

    .service-photo-content h3 {
        font-size: 1rem;
    }

    .service-photo-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}


@media (max-width: 480px) {
    .services-photo-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Gallery Page ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.gallery-overlay p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}