:root {
    --primary: #028a92;
    --primary-dark: #026f76;
    --brief-blue: #000094;
    --gold: #c5a47e;
    --dark: #0f172a;
    --light-gray: #f1f5f9;
    --white: #ffffff;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 12px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    /* Let Lenis handle it */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Custom Selection */
::selection {
    background-color: var(--primary);
    color: var(--white);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(2, 138, 146, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99998;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}



/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--brief-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--white);
}

.section-title.center {
    text-align: center;
}

.section-desc.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #64748b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 138, 146, 0.4);
}

.btn-outline {
    background-color: var(--white);
    /* White background as in design */
    color: var(--dark);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* --- Custom Animated Sticky Header (Elementor Pro Style) --- */

.header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    /* Initial large padding */
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth Elementor-like easing */
    background: transparent;
    color: var(--white);
}

/* Scrolled State */
.header.scrolled {
    padding: 0.8rem 0;
    /* Shrink on scroll */
    background: rgba(255, 255, 255, 0.822);
    backdrop-filter: blur(15px);
    /* Stronger glass effect */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle premium shadow */
    color: var(--brief-blue);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left: Logo */



/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    /* Removed margin-left */
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1003;
}

.header.scrolled .logo-img {
    height: 45px;
    filter: none;
}

/* Right side content */
.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: currentColor;
    /* Matches text color (white or blue) */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Button Header */
.btn-header {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(2, 138, 146, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-header:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 138, 146, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: currentColor;
    margin: 6px 0;
    transition: 0.4s;
}


.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background-color: var(--primary);
    /* Teal background */
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(2, 138, 146, 0.3);
}

.contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 138, 146, 0.4);
}

.contact-btn::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    justify-content: center;
    /* Center horizontally */
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Will be animated by GSAP */
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    /* More subtle, natural overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
}

.hero-logo {
    width: 250px;
    /* Adjust size based on preference */
    height: auto;
    object-fit: contain;
    margin-bottom: 0rem;
    /* Space between logo and title */
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-contact-info {
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro {
    padding: 8rem 0;
    background-color: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.intro-text em {
    font-style: italic;
    color: var(--primary);
}

.intro-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-top: 0.5rem;
}

/* --- Serenity Split Layout (Redesign) --- */
.serenity-split-layout {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: var(--dark);
    min-height: 100vh;
}

.split-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
    height: 100vh;
    /* Full viewport height for pinning */
    max-width: 1400px;
}

/* Left: Marquee Wrapper */
.serenity-marquee-wrapper {
    width: 60%;
    /* Wider for 3 columns */
    height: 100vh;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, white 15%, white 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, white 15%, white 85%, transparent 100%);
    display: flex;
    gap: 1.5rem;
}

.marquee-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: marqueeVertical 40s linear infinite;
    flex: 1;
    /* Equal width columns */
}

/* Reverse Animation for middle column */
.marquee-column.reverse {
    animation: marqueeVerticalReverse 45s linear infinite;
    transform: translateY(-50%);
    /* Start from bottom essentially */
}

.marquee-column img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    filter: brightness(1);
    transition: filter 0.9s ease;
}

.marquee-column img:hover {
    filter: brightness(1);
}

@keyframes marqueeVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
        /* Assuming we duplicated images, move by half height */
    }
}

@keyframes marqueeVerticalReverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Right: Text Content */
.serenity-text-content {
    width: 45%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.sticky-title-wrapper {
    margin-bottom: 3rem;
}

.serenity-main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--brief-blue);
    font-weight: 700;
}

.serenity-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 1rem;
    font-weight: 500;
}

.serenity-dynamic-text {
    position: relative;
    height: auto;
    /* Allow natural height */
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* Space between blocks */
    padding-bottom: 2rem;
}

.text-block {
    position: relative;
    /* Static stacking */
    width: 100%;
    opacity: 1;
    /* Always visible */
    transform: none;
    pointer-events: auto;
}

.text-block.active {
    opacity: 1;
    transform: none;
}

.text-block h3 {
    font-size: 2rem;
    color: var(--primary);
    /* Teal for prominence */
    margin-bottom: 1rem;
}

.text-block p {
    font-size: 1.1rem;
    color: #475569;
    /* Darker slate for readability */
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        height: auto;
        padding: 4rem 1rem;
    }

    .serenity-marquee-wrapper {
        width: 100%;
        height: 50vh;
        margin-bottom: 3rem;
    }

    /* Stop Marquee on Mobile */
    .marquee-column,
    .marquee-column.reverse {
        animation: none;
        transform: none !important;
        overflow-y: hidden;
    }

    .serenity-text-content {
        width: 100%;
        height: auto;
    }

    .serenity-dynamic-text {
        height: auto;
    }

    .text-block {
        position: relative;
        opacity: 1;
        transform: none;
        margin-bottom: 2rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:nth-child(even) {
    transform: translateY(4rem);
    /* Offset layout */
}

/* Contact Section////////////////////////////////////////////////////////////////////////////////// */
.contact {
    background-color: var(--white);
    /* Light Theme */
    padding: 8rem 0;
    color: var(--dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    /* Vertically align */
}

.contact-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: #475569;
    /* Darker Slate */
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #fff;
    /* Clean white bg */
}

.contact-list .icon {
    font-size: 1.2rem;
    color: #475569;
    /* Slate Icon Color */
}

.social-icon-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-text .label {
    font-size: 0.9rem;
    color: #64748b;
    /* Light Slate Label */
    font-weight: 500;
}

.contact-text .value {
    font-size: 1.1rem;
    color: #0f172a;
    /* Dark Value */
    font-weight: 600;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.contact-form {
    background: var(--white);
    /* White Form */
    padding: 3rem;
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    /* Darker label for white bg */
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #f8fafc;
    /* Very light gray input */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: var(--dark);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(2, 138, 146, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary);
    /* Darker blue */
    padding: 2rem 0;
    color: rgb(255, 255, 255);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    margin-left: 2rem;
}

.footer-links a:hover {
    color: var(--white);
}


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: 250px;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
}

.loading-bar {
    width: 200px;
    height: 2px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    opacity: 0;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
}

/* Mobile Toggle & Navigation */
.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
}

.mobile-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    margin: 6px 0;
    transition: all 0.4s ease;
}

.header.scrolled .mobile-toggle .bar {
    background-color: var(--brief-blue);
}

/* Toggle Animation State */
body.nav-active .mobile-toggle .bar-1 {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--white);
}

body.nav-active .mobile-toggle .bar-2 {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--white);
}

/* Sidebar Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-nav {
    position: fixed;
    top: 2.5vh;
    left: 2.5vw;
    width: 280px;
    height: 95vh;
    background: rgba(255, 255, 255, 0.85);
    /* White transparent */
    backdrop-filter: blur(15px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(15px);
    color: var(--dark);
    z-index: 2001;
    border-radius: 20px;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sidebar-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: none;
    /* Show original colors */
}

.sidebar-logo .logo-text {
    font-size: 1.5rem;
    color: var(--brief-blue);
}

.sidebar-logo .logo-sub {
    color: var(--primary);
    font-size: 0.7rem;
    display: block;
}

.close-sidebar-btn {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: 0.3s;
    color: var(--dark);
}

.close-sidebar-btn:hover {
    opacity: 1;
    color: var(--primary);
}

.sidebar-links {
    padding: 2rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: #64748b;
    /* Slate 500 */
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.sidebar-link .icon {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.sidebar-link:hover,
.sidebar-link.active {
    background-color: rgba(2, 138, 146, 0.1);
    color: var(--brief-blue);
    transform: translateX(5px);
}

.sidebar-footer {
    padding: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #64748b;
}

/* Sidebar Active States */
body.nav-active .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

body.nav-active .sidebar-nav {
    transform: translateX(0);
}


/* Media Queries */
@media (max-width: 900px) {

    .header-right .nav {
        display: none;
        /* Hide Desktop Nav */
    }

    .header-right .btn-header {
        display: none;
        /* Hide Contact Button on Mobile - usually accessed via menu */
    }

    .mobile-toggle {
        display: block;
        /* Show hamburger */
    }

    /* Adjust Logo for Mobile */
    .logo-img {
        height: 40px;
        /* Smaller Logo */
    }

    .logo-main {
        font-size: 1.2rem;
        /* Smaller Text */
        white-space: normal;
        /* Allow text wrapping if needed, or keep nowrap */
        line-height: 1.1;
    }

    .logo {
        gap: 0.5rem;
    }

    body.nav-active .mobile-toggle .bar {
        background-color: var(--white);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .intro-grid,
    .book-content,
    .contact-container,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .book-card {
        height: auto;
        min-height: 60vh;
    }

    .book-visual {
        min-height: 300px;
    }

    .gallery-item:nth-child(even) {
        transform: none;
    }
    
    .contact-list li:last-child {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (min-width: 901px) {
    .mobile-nav-overlay {
        display: none;
    }
}

/* --- Interior 3D Carousel (Swiper Coverflow) --- */
.interiors-section {
    padding: 6rem 0;
    background-color: #0b0b14;
    overflow: hidden;
    color: white;
}

.interiors-section .section-title,
.interiors-section .section-subtitle {
    color: white;
}

.center-text {
    text-align: center;
    margin-bottom: 3rem;
}

.interiors-slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.interiors-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    /* Elementor-like shadow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Transition for smooth popup effect */
    transition: all 0.5s ease;
}

.interiors-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination Adjustments */
.interiors-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.interiors-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
}

/* --- Responsive Testimonials Slider (Dark Theme) --- */
.testimonials-section {
    background-color: #0b0b14;
    /* Match interiors or go darker */
    padding: 8rem 0;
    position: relative;
}

.text-gold {
    color: var(--primary);
}

.testimonials-slider {
    padding-bottom: 2rem;
}

/* Card */
.testimonial-card {
    background: #15151e;
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* User Profile */
.testi-user {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.testi-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

/* Stars */
.user-info .stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Typography */
.testi-text {
    font-size: 1.05rem;
    color: #94a3b8;
    /* Slate 400 */
    line-height: 1.7;
    flex-grow: 1;
    font-style: italic;
}

/* Controls Wrapper */
.testi-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    padding: 0 1rem;
}

/* Pagination Dots */
.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.2;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
}

/* Nav Buttons */
.swiper-nav-btns {
    display: flex;
    gap: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary) !important;
    transition: 0.3s;
    margin: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #000 !important;
}

/* --- Health Journey Section (Rounded Images) --- */
.health-journey-section {
    padding: 8rem 0;
    background-color: var(--white);
    overflow: hidden;
    /* For entrance animations */
}

.journey-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    /* Image - Content - Image */
    align-items: center;
    gap: 2rem;
    position: relative;
}

.journey-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image-wrapper {
    width: 350px;
    height: 350px;
    /* Force circle if image is square, or just container */
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #e0f2fe;
    /* Light blue border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    z-index: 1;
}

.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding: 2rem 0;
}

/* Timeline vertical line */
.journey-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    /* Align with icon center */
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(2, 138, 146, 0.1) 100%);
    z-index: 0;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 138, 146, 0.15);
}

.text-box h3 {
    font-size: 1.2rem;
    color: var(--brief-color);
    /* Actually use primary-dark or specific blue */
    color: #0369a1;
    /* Specific content blue */
    margin-bottom: 0.5rem;
}

.text-box p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}


/* Media Queries for Journey */
@media (max-width: 1024px) {
    .journey-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .journey-visual {
        display: none;
    }

    .right-visual {
        order: 3;
    }

    .journey-content {
        order: 2;
        width: 100%;
        max-width: 600px;
    }


}

/* --- Why Choose Us (Orbit Section) --- */
.orbit-section {
    background-color: #0b0b14;
    /* Dark Background */
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-container {
    position: relative;
    width: 650px;
    /* Diameter of the orbit */
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Fixed Circle */
.orbit-center {
    position: absolute;
    /* width: 320px;
    height: 320px;
    
    border-radius: 50%; */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* box-shadow: 0 0 60px rgba(255, 255, 255, 0.4); */
    color: var(--white);
    padding: 2rem;
}

.center-content h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}



.orbit-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orbit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Rotating Track */
.orbit-track {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25%;
    /* border: 1px dashed rgba(255, 255, 255, 0.1); Optional Guide */
    animation: orbitSpin 60s linear infinite;
}

/* Orbit Items */
.orbit-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
    height: 250px;
    text-align: center;
    margin: -75px -80px;
    /* Center the item (Half height/width) */
    transform-origin: center center;
    animation: orbitCounterSpin 60s linear infinite;
}

/* Positioning with Top/Left to avoid Transform conflict with Animation */
/* Item 1: Top (0deg) */
.orbit-item.item-1 {
    top: 0;
    left: 50%;
    transform: none;
}

/* Item 2: Top Right (60deg) */
.orbit-item.item-2 {
    top: 25%;
    left: 93.3%;
    transform: none;
}

/* Item 3: Bottom Right (120deg) */
.orbit-item.item-3 {
    top: 75%;
    left: 93.3%;
    transform: none;
}

/* Item 4: Bottom (180deg) */
.orbit-item.item-4 {
    top: 100%;
    left: 50%;
    transform: none;
}

/* Item 5: Bottom Left (240deg) */
.orbit-item.item-5 {
    top: 75%;
    left: 6.7%;
    transform: none;
}

/* Item 6: Top Left (300deg) */
.orbit-item.item-6 {
    top: 25%;
    left: 6.7%;
    transform: none;
}






*/

/* Inner content counter-rotates */
.orbit-item .orbit-visual,
.orbit-item .orbit-label {
    animation: none;
}



.orbit-visual {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: #000;
}

.orbit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbit-label {
    color: var(--white);
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    max-width: 440px;
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitCounterSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* --- Our Post Section (Infinite Slider) --- */
.post-section {
    background: #f8fafc;
    padding: 6rem 0;
    overflow: hidden;
}

.post-slider-container {
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    /* Fade mask */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.post-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

/* Pause on Hover */
.post-track:hover {
    animation-play-state: paused;
}

.post-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: scale(1.02);
}

.post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.5rem)); /* Subtract half the gap to smoothly stitch the double track */
    }
}

/* --- Why Choose Us (Grid Layout) --- */
.gallery-section {
    background: linear-gradient(135deg, #e0eaee 0%, #ffffff 50%, #e0eaee 100%);
    padding: 8rem 0;
    overflow: hidden;
}

.gallery-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #0f172a;
    font-family: var(--font-heading);
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5rem;
    row-gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wcu-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.wcu-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #028a92;
    color: #028a92;
    flex-shrink: 0;
    background-color: transparent;
    position: relative;
}

.wcu-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #028a92;
    border-radius: 50%;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.wcu-content {
    flex-grow: 1;
}

.wcu-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.wcu-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- The Serenity Standard (Premium Stacked Cards) --- */
.serenity-standard-section {
    background: linear-gradient(135deg, #0e2a30 0%, #1a5c66 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.serenity-standard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

/* LEFT SIDE (Sticky) */
.serenity-standard-left {
    flex: 0 0 45%;
    position: sticky;
    top: 20vh;
    padding-bottom: 2rem;
}

.serenity-standard-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: var(--font-heading);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.serenity-standard-subtitle {
    font-size: 1.3rem;
    color: #a5f3fc;
    /* Light cyan */
    font-weight: 400;
    margin-bottom: 3rem;
}

.serenity-standard-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: visible;
    /* to allow backdrop to bleed if needed */
}

.serenity-standard-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.serenity-standard-image {
    position: relative;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* RIGHT SIDE (Scrolling Stacked Cards)//////////////////////////////////////////////////////////////////////////////////// */
.serenity-standard-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* spacing out cards */
    padding-top: 5rem;
    padding-bottom: 10rem;
    /* extra space to ensure last card scrolls up */
}

/* Base Card Style */
.serenity-standard-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;

    position: sticky;
    /* initial top before stacked offset applied via JS or pure CSS */
    top: 20vh;
    transform-origin: top center;
    transition: box-shadow 0.3s ease;
}

/* Hardcode stacking top offsets so they cascade */
.serenity-standard-card[data-index="1"] {
    top: -20vh;
    z-index: 1;
}

.serenity-standard-card[data-index="2"] {
    top: 30vh;
    z-index: 2;
}

.serenity-standard-card[data-index="3"] {
    top: 15vh;
    z-index: 3;
}

.serenity-standard-card[data-index="4"] {
    top: 20vh;
    z-index: 4;
}

.serenity-standard-card-content {
    flex: 1;
}

.serenity-standard-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.serenity-standard-card-num {
    background: #028a92;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
}

.serenity-standard-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.serenity-standard-card-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.serenity-standard-card-icon {
    font-size: 5rem;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .serenity-standard-container {
        flex-direction: column;
        gap: 3rem;
    }

    .serenity-standard-left {
        width: 100%;
        position: relative;
        top: 0;
        text-align: center;
    }

    .serenity-standard-image-wrapper {
        display: none;
    }

    .serenity-standard-right {
        padding-top: 2rem;
        padding-bottom: 2rem;
        gap: 2rem;
        /* Add gap since no sticky stacking on mobile */
    }

    .serenity-standard-card {
        position: relative;
        top: 0 !important;
        margin-top: 0 !important;
        flex-direction: column-reverse;
        text-align: center;
        padding: 2rem;
        width: 100%;
    }

    .serenity-standard-card-header {
        justify-content: center;
    }

    .serenity-standard-card-icon {
        display: none;
    }
}

/* --- Lightbox / Image Popup --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.2s;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox.active .lightbox-caption {
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    color: var(--primary);
}

.interiors-slider .swiper-slide img {
    cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding-left: 0;
    transition: all 0.4s ease;
}

.whatsapp-float:hover .whatsapp-text {
    max-width: 250px;
    opacity: 1;
    padding-left: 10px;
    padding-right: 15px;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}