* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #5B4A3E;
    /* Urban Espresso */
    --secondary-color: #8A8077;
    /* Pavement Shadow */
    --accent-color: #CBBFAF;
    /* Luxe Oat */
    --accent-dark: #8A8077;
    --text-color: #5B4A3E;
    --text-muted: #8A8077;
    --bg-light: #F6F2EB;
    /* Sunlit Veil */
    --bg-secondary: #E8DED4;
    /* Ivory Silk */
    --white: #ffffff;
    --elegant-gradient: linear-gradient(135deg, #CBBFAF 0%, #E8DED4 100%);
    --marble-bg: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url('https://www.transparenttextures.com/patterns/marble-similar.png');
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
.script-font {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.reveal-text span {
    display: inline-block;
    animation: revealUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    transform: translateY(100%);
}

@keyframes revealUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Bokeh Effect */
.bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
}

.bokeh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float-bokeh 25s infinite linear;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: -10%;
    left: -10%;
    animation-duration: 35s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-color);
    bottom: -5%;
    right: -5%;
    animation-duration: 45s;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 40%;
    left: 50%;
    animation-duration: 40s;
    animation-delay: -10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--bg-secondary);
    bottom: 30%;
    left: 10%;
    animation-duration: 30s;
    animation-delay: -15s;
}

@keyframes float-bokeh {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.1);
    }

    66% {
        transform: translate(-100px, 50px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float-soft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer-premium {
    to {
        background-position: 200% center;
    }
}

@keyframes blur-in {
    from {
        filter: blur(10px);
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes mask-reveal-side {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.shimmer-text {
    background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-premium 4s linear infinite;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    /* More modern than round for luxury */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(91, 74, 62, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(91, 74, 62, 0.2);
}

.btn-elegant {
    background: var(--elegant-gradient);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(203, 191, 175, 0.2);
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(203, 191, 175, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header & Nav */
.top-bar {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 12px 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .top-bar-text {
        font-size: 0.65rem;
    }

    .top-bar-link {
        font-size: 0.65rem;
        margin-left: 10px !important;
    }
}

.top-bar a {
    color: inherit;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

/* Base Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

#bookingBtn {
    color: var(--white) !important;
}

#bookingBtn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.nav-booking-wrapper {
    position: relative;
    display: inline-block;
}

.booking-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--secondary-color);
}

/* Header & Layers */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 37, 32, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2005;
}

.mobile-nav {
    display: none;
}

/* Mobile Media Queries */
@media (max-width: 991px) {
    header {
        z-index: 2100;
        backdrop-filter: none !important;
        /* Fix for Safari clipping fixed children */
        -webkit-backdrop-filter: none !important;
        background: rgba(255, 255, 255, 1) !important;
        /* Solid background on mobile */
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 2200;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #F6F2EB;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
        padding: 120px 40px 40px;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        visibility: hidden;
    }

    .mobile-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav a {
        font-size: 1.4rem !important;
        color: #5B4A3E !important;
        font-weight: 600 !important;
        text-decoration: none;
        width: 100%;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: block;
    }

    .mobile-booking-options {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(91, 74, 62, 0.1);
        padding-top: 20px;
    }

    .mobile-booking-label {
        display: block;
        font-size: 0.8rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .mobile-nav .mobile-booking-item {
        background: var(--primary-color);
        color: #ffffff !important;
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 2px;
        font-size: 1rem !important;
        display: block;
    }

    .booking-dropdown {
        position: static !important;
        /* Don't float on mobile menu */
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        margin-top: 10px;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        transform: none !important;
    }

    .booking-dropdown.active {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, var(--bg-secondary) 0%, var(--bg-light) 70%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-content h1 span {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    max-width: 100%;
    border-radius: 2px;
    box-shadow: 40px 40px 0px var(--bg-secondary);
}

/* Locations */
.locations {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.2;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(91, 74, 62, 0.1);
}

.location-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.location-info {
    padding: 40px;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.location-info i {
    width: 20px;
    color: var(--secondary-color);
}

.opening-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #efefef;
}

/* Services */
.services {
    padding: 150px 0;
    background: var(--bg-secondary);
}

.service-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.accordion-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.accordion-content {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-item.active .accordion-content {
    padding: 0 40px 40px 40px;
    max-height: 2000px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 500;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
}

/* Gallery */
.gallery {
    padding: 150px 0;
    background: var(--white);
}

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

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2D2520;
    /* Darker version of espresso */
    color: var(--white);
    padding: 60px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #A89D93;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
}

.footer-links a i {
    margin-right: 10px;
    width: 15px;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact-block .location-name,
.footer-address .location-name {
    display: block;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-contact-block a {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

/* Animations & Reveal Effects */
.reveal-text {
    position: relative;
    overflow: hidden;
}

[data-aos="reveal-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: transform, opacity;
}

[data-aos="reveal-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    perspective: 1000px;
}

.hero-main-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 5px;
    animation: mask-reveal-side 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards, shimmer-premium 4s linear infinite 1.5s;
}

.hero-sub-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 400;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blur-in 2s cubic-bezier(0.23, 1, 0.32, 1) forwards, float-soft 6s ease-in-out infinite;
    animation-delay: 0.5s, 2s;
    opacity: 0;
}

.hero-collage {
    position: relative;
    width: 100%;
    height: clamp(350px, 50vh, 550px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.collage-img {
    position: absolute;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    background: white;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes swapLayers1 {

    0%,
    40% {
        z-index: 2;
        transform: translate(-15%, -10%) rotate(-2deg);
        opacity: 1;
    }

    50% {
        z-index: 1;
        transform: translate(0, 0) scale(0.9);
        opacity: 0.7;
    }

    60%,
    100% {
        z-index: 1;
        transform: translate(25%, 15%) rotate(3deg);
        opacity: 0.9;
    }
}

@keyframes swapLayers2 {

    0%,
    40% {
        z-index: 1;
        transform: translate(25%, 15%) rotate(3deg);
        opacity: 0.9;
    }

    50% {
        z-index: 2;
        transform: translate(0, 0) scale(1.1);
        opacity: 1;
    }

    60%,
    100% {
        z-index: 2;
        transform: translate(-15%, -10%) rotate(-2deg);
        opacity: 1;
    }
}

.img-1 {
    width: clamp(180px, 30vw, 320px);
    height: clamp(260px, 45vw, 480px);
    border: clamp(4px, 1vw, 8px) solid white;
    animation: swapLayers1 8s ease-in-out infinite;
}

.img-2 {
    width: clamp(160px, 28vw, 300px);
    height: clamp(240px, 40vw, 420px);
    border: clamp(4px, 1vw, 8px) solid white;
    animation: swapLayers2 8s ease-in-out infinite;
}

.collage-img:hover {
    z-index: 10;
    transform: translate(0, 0) scale(1.05);
}

@keyframes textAppear {
    from {
        opacity: 0;
        transform: rotateX(-40deg) translateY(30px);
    }

    to {
        opacity: 1;
        transform: rotateX(0) translateY(0);
    }
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--white);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--bg-secondary);
    border-radius: 2px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.badge-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.badge-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.owner-image {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    filter: grayscale(10%) contrast(1.05);
}

.owner-title {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.owner-headline {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 25px 0;
    color: var(--primary-color);
    line-height: 1.2;
}

.owner-greeting {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 35px;
    font-weight: 500;
}

.owner-name-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.owner-text-wrapper {
    color: var(--text-muted);
    line-height: 2;
    font-size: 1.15rem;
}

.owner-quote {
    margin-bottom: 30px;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.owner-desc {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
        text-align: center;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .owner-image {
        max-width: 280px;
        height: auto;
    }

    .owner-headline {
        margin: 20px 0;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Testimonial Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-stars {
    color: #D4AF37;
    /* Gold */
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1rem;
}

.testimonial-author {
    justify-content: center;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--elegant-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(91, 74, 62, 0.05);
    pointer-events: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 40px 20px;
    }

    .testimonials-slider {
        min-height: 500px;
    }
}

.whatsapp-float-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
}

.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(91, 74, 62, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-main-btn:hover {
    transform: scale(1.1);
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: none;
    width: 250px;
    animation: slideUp 0.3s ease-out;
}

.whatsapp-menu.active {
    display: block;
}

.whatsapp-option {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.whatsapp-option:hover {
    background: var(--bg-secondary);
}

.whatsapp-option strong {
    display: block;
    font-size: 0.9rem;
}

.whatsapp-option span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marble Card Effect */
.marble-card {
    background: white;
    background-image: var(--marble-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
    .whatsapp-float-wrapper {
        bottom: 20px;
        right: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        order: 2;
    }

    .hero-collage {
        order: 1;
        height: 350px;
        margin-top: 0;
    }

    .hero-main-title {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
        white-space: normal;
    }

    .hero-sub-title {
        font-size: 1.8rem;
        white-space: normal;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .img-1 {
        width: 180px;
        height: 270px;
    }

    .img-2 {
        width: 160px;
        height: 240px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 37, 32, 0.95);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 5px solid white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}