@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Custom Properties for Luxury Interior Palette */
:root {
    --primary-brown: #4b312c;
    --secondary-brown: #3a241f;
    --luxury-gold: #C8A96A;
    --light-gold: #D4B57C;
    --soft-white: #F9F9F7;
    --muted-brown: #B8ADA4;
}

/* Base styles */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--soft-white);
    color: var(--primary-brown);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: var(--primary-brown);
}

/* Enhanced Navigation Bar Styles */
nav {
    border-bottom: 1px solid rgba(184, 173, 164, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* Navigation Links Enhancement */
nav a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C8A96A, #D4B57C);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #C8A96A !important;
    transform: translateY(-1px);
}

/* Mobile Menu Specific Styles */
#mobileMenu {
    background-color: #4b312c !important;
    background: #4b312c !important;
}

#mobileMenu a {
    color: #ffffff !important;
}

#mobileMenu a:hover {
    color: #C8A96A !important;
}

/* Logo Enhancement */
nav h1 {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav h1:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--luxury-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Enhancement */
#mobileMenu {
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-top: 1px solid rgba(184, 173, 164, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

#mobileMenu a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 4px 0;
}

#mobileMenu a:hover {
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0.05) 100%);
    color: #C8A96A !important;
    transform: translateX(4px);
}

/* Mobile Menu Button Enhancement */
.md\\:hidden button {
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0.05) 100%);
    border: 1px solid rgba(200, 169, 106, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.md\\:hidden button:hover {
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.2) 0%, rgba(200, 169, 106, 0.1) 100%);
    transform: scale(1.05);
}

/* Active Navigation State */
nav a.active {
    color: #C8A96A !important;
}

nav a.active::after {
    width: 100%;
    background: linear-gradient(90deg, #C8A96A, #D4B57C);
}

/* Scroll Effect for Navigation */
nav.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

nav.scrolled:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18);
}

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

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

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

/* Text Alignment System */
.text-left-desktop {
    text-align: left;
}

.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Premium Pattern Background */
.pattern-bg {
    background-color: rgba(62, 39, 35, 0.08);
    background-image: none;
}

.pattern-bg::before {
    display: none;
}

/* Service Card Image Animations */
.pattern-bg .card-luxury img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    filter: brightness(1) saturate(1);
    opacity: 0;
    animation: imageReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pattern-bg .card-luxury:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

/* Image container animations */
.pattern-bg .card-luxury .w-full.h-64 {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.pattern-bg .card-luxury:hover .w-full.h-64 {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.15);
}

/* Subtle image load animation */
@keyframes imageReveal {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Stagger animation delays for cards */
.pattern-bg .card-luxury:nth-child(1) img { animation-delay: 0.1s; }
.pattern-bg .card-luxury:nth-child(2) img { animation-delay: 0.2s; }
.pattern-bg .card-luxury:nth-child(3) img { animation-delay: 0.3s; }
.pattern-bg .card-luxury:nth-child(4) img { animation-delay: 0.4s; }
.pattern-bg .card-luxury:nth-child(5) img { animation-delay: 0.5s; }
.pattern-bg .card-luxury:nth-child(6) img { animation-delay: 0.6s; }

/* Grid System */
.grid-luxury {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-luxury {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced Button Styles - Hero Section */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    color: var(--soft-white);
    padding: 1rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(75, 49, 44, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f1f3 100%);
    border-color: rgba(255, 255, 255, 1);
    color: #1A1A1A;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--light-gold) 100%);
    color: var(--primary-brown);
    padding: 1rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(200, 169, 106, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.18) 100%);
}

/* Button glow effect on focus */
.btn-primary:focus,
.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Card Styles */
.card-luxury {
    background-color: white;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.hero-slide.active {
    transform: translateX(0);
    opacity: 1;
}

.hero-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/slide 1.jpg');
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/slide 2.jpg');
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/slide 3.jpg');
}

/* Force 4th slide to show image */
.hero-slideshow .hero-slide:nth-child(4) {
    background-image: url('images/slide 4.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 10 !important;
    opacity: 1 !important;
}

.hero-slideshow .hero-slide:nth-child(4)::before {
    display: none !important;
}

.hero-slideshow .hero-slide:nth-child(4)::after {
    display: none !important;
}

/* Slideshow Navigation Dots */
.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--luxury-gold);
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Video Card Styles */
.video-card {
    position: relative;
    background-color: white;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #b59a5f;
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

/* Dynamic Mesh Gradient Background for Hero */
.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 0% 0%, var(--luxury-gold) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, var(--muted-taupe) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #4f46e5 0%, transparent 50%);
    filter: blur(100px);
    opacity: 0.6;
}

/* Glass Card for Hero Content */
.glass-card {
    margin: auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(200, 169, 106, 0.5),
                0 0 20px rgba(200, 169, 106, 0.3),
                0 0 40px rgba(200, 169, 106, 0.2);
    animation: neonGlow 4s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(200, 169, 106, 0.5),
                    0 0 20px rgba(200, 169, 106, 0.3),
                    0 0 40px rgba(200, 169, 106, 0.2);
    }
    25% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(200, 169, 106, 0.7),
                    0 0 25px rgba(200, 169, 106, 0.5),
                    0 0 50px rgba(200, 169, 106, 0.3);
    }
    50% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(200, 169, 106, 0.4),
                    0 0 15px rgba(200, 169, 106, 0.2),
                    0 0 30px rgba(200, 169, 106, 0.1);
    }
    75% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(200, 169, 106, 0.9),
                    0 0 30px rgba(200, 169, 106, 0.6),
                    0 0 60px rgba(200, 169, 106, 0.4);
    }
}

.glass-card span {
    display: inline-block;
    background: var(--luxury-gold);
    color: var(--deep-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.glass-card h1 {
    font-size: 4rem;
    margin: 1rem 0;
    line-height: 1.1;
    font-weight: 600;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.glass-card p {
    font-size: 1.25rem;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Hero Animations */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Caption Animations - New Animation Types */
.hero-heading {
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.hero-heading.animate {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.hero-description {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.hero-description.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Caption slide animations */
.caption-slide-out-left {
    opacity: 0 !important;
    transform: translateX(-100px) rotateY(25deg) !important;
    transition: all 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) !important;
}

.caption-slide-out-right {
    opacity: 0 !important;
    transform: translateX(100px) rotateY(-25deg) !important;
    transition: all 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) !important;
}

.caption-slide-in-left {
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg) scale(0.9);
}

.caption-slide-in-right {
    opacity: 0;
    transform: translateX(50px) rotateY(15deg) scale(0.9);
}

.caption-slide-in-left.animate,
.caption-slide-in-right.animate {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
}

/* Alternative zoom animation */
.caption-zoom-out {
    opacity: 0 !important;
    transform: scale(0.5) rotateZ(5deg) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.caption-zoom-in {
    opacity: 0;
    transform: scale(1.2) rotateZ(-3deg);
}

.caption-zoom-in.animate {
    opacity: 1;
    transform: scale(1) rotateZ(0);
}

/* Flip animation */
.caption-flip-out {
    opacity: 0 !important;
    transform: rotateX(90deg) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center top;
}

.caption-flip-in {
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: center top;
}

.caption-flip-in.animate {
    opacity: 1;
    transform: rotateX(0);
}
.btn-slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.btn-slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Unique Pattern Background for Testimonials */
section.py-20.bg-gray-50 {
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 169, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 181, 124, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(200, 169, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(212, 181, 124, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, rgba(200, 169, 106, 0.02) 0%, rgba(212, 181, 124, 0.02) 50%),
        linear-gradient(135deg, rgba(200, 169, 106, 0.01) 0%, rgba(212, 181, 124, 0.01) 50%),
        linear-gradient(225deg, rgba(200, 169, 106, 0.01) 0%, rgba(212, 181, 124, 0.01) 50%);
    background-size: 400% 400%, 200% 200%;
    background-position: 0% 0%, 100% 100%;
    animation: testimonialPattern 20s ease-in-out infinite;
    position: relative;
}

section.py-20.bg-gray-50::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(200, 169, 106, 0.05) 35px, transparent 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 181, 124, 0.05) 35px, transparent 70px);
    animation: diagonalLines 10s linear infinite;
    opacity: 0.3;
}

section.py-20.bg-gray-50::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(200, 169, 106, 0.03) 2px, transparent 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 181, 124, 0.03) 2px, transparent 4px);
    animation: gridLines 15s linear infinite;
    opacity: 0.2;
}

@keyframes testimonialPattern {
    0%, 100% {
        background-position: 0% 0%, 100% 100%;
    }
    25% {
        background-position: 100% 0%, 0% 100%;
    }
    50% {
        background-position: 100% 100%, 0% 0%;
    }
    75% {
        background-position: 0% 100%, 100% 0%;
    }
}

@keyframes diagonalLines {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(70px) translateY(70px);
    }
}

@keyframes gridLines {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(4px) translateY(4px);
    }
}
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-card .bg-white {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card .bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C8A96A 0%, #D4B57C 50%, #C8A96A 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.testimonial-card .bg-white::after {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(200, 169, 106, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-card .bg-white:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-card .w-24.h-24 {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #C8A96A 0%, #b59a5f 50%, #9d8456 100%);
    box-shadow: 
        0 8px 25px rgba(200, 169, 106, 0.3),
        0 4px 12px rgba(200, 169, 106, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
}

.testimonial-card .w-24.h-24::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #C8A96A, #D4B57C, #C8A96A, #D4B57C, #C8A96A);
    background-size: 400% 400%;
    border-radius: 50%;
    z-index: -1;
    animation: avatarGlow 4s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.8;
}

.testimonial-card .w-24.h-24:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(200, 169, 106, 0.4),
        0 6px 18px rgba(200, 169, 106, 0.3);
}

.testimonial-card .mb-6 .fas.fa-star {
    color: #C8A96A;
    font-size: 1rem;
    margin: 0 1px;
    text-shadow: 0 2px 4px rgba(200, 169, 106, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.testimonial-card .mb-6 .fas.fa-star:hover {
    transform: scale(1.2);
    text-shadow: 0 4px 8px rgba(200, 169, 106, 0.5);
}

.testimonial-card .text-gray-700 {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.testimonial-card .text-gray-900 {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 2;
}

.testimonial-card .text-gray-600 {
    color: #6B7280;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card .text-gray-600::before {
    content: '📍';
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

/* Animations */
@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes avatarGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
        filter: blur(8px) brightness(1.2);
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.9;
        filter: blur(12px) brightness(1.3);
    }
}

/* Enhanced Statistics Cards */
.stat-number {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #4b312c 0%, #3a241f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(75, 49, 44, 0.1);
    transition: all 0.3s ease;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(212, 181, 124, 0.1) 100%);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.3s ease;
}

.stat-container {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C8A96A 0%, #D4B57C 50%, #C8A96A 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.stat-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 169, 106, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.stat-container:hover::after {
    opacity: 1;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
}

.stat-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-icon-container {
    position: relative;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #C8A96A, #D4B57C, #C8A96A, #D4B57C, #C8A96A);
    background-size: 400% 400%;
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 4s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.8;
}

.stat-icon-container:hover {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon-container:hover::before {
    opacity: 1;
    filter: blur(12px) brightness(1.3);
}

/* Red card specific styling for Unhappy Clients */
.stat-container.red-card .stat-icon-container {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.stat-container.red-card .stat-icon-container::before {
    background: linear-gradient(45deg, #ef4444, #dc2626, #ef4444, #dc2626, #ef4444);
}

.stat-container.red-card .stat-number {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-container.red-card::before {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
}

/* Counting animation enhancement */
.stat-number.counting {
    animation: numberPop 0.3s ease-out;
}

@keyframes numberPop {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Stat description enhancements */
.stat-description {
    position: relative;
    font-weight: 500;
    color: #6B7280;
    transition: all 0.3s ease;
}

.stat-container:hover .stat-description {
    color: #4b312c;
    transform: translateY(-2px);
}

/* Enhanced Navigation Dots */
.testimonial-dot {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #C8A96A;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dot:hover::before {
    width: 20px;
    height: 20px;
}

.testimonial-dot.bg-\[C8A96A\]::before {
    width: 12px;
    height: 12px;
}

/* Enhanced Navigation Arrows */
.testimonial-carousel button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(200, 169, 106, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.testimonial-carousel button:hover {
    background: linear-gradient(135deg, #C8A96A 0%, #b59a5f 100%);
    border-color: #C8A96A;
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(200, 169, 106, 0.3),
        0 6px 18px rgba(200, 169, 106, 0.2);
}

.testimonial-carousel button:hover i {
    color: white;
    transform: scale(1.1);
}

.testimonial-carousel button i {
    transition: all 0.3s ease;
    color: #C8A96A;
}

@media (max-width: 768px) {
    .glass-card {
        padding: 2rem;
        margin: 1rem;
        max-width: 95%;
    }
    
    .glass-card h1 {
        font-size: 2.5rem;
    }
    
    .glass-card p {
        font-size: 1rem;
    }
    
    .testimonial-card .bg-white {
        padding: 2rem;
    }
    
    .testimonial-card .text-gray-900 {
        font-size: 1.25rem;
    }
    
    .testimonial-card .text-gray-700 {
        font-size: 1rem;
    }
}    
    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-group .btn-primary,
    .cta-group .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Custom styles that can't be achieved with Tailwind utilities */
.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1616046229475-9a2b7d0239d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in;
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.3s ease;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--warm-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--muted-taupe);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-charcoal);
}

/* Mobile responsive hero background */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
    
    .animate-fade-in {
        animation-duration: 0.6s;
    }
    
    /* Mobile Design Rules */
    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 16px;
        min-height: 52px;
    }
    
    .card-luxury {
        margin-bottom: 24px;
    }
    
    .img-hover-zoom img {
        min-height: 200px;
        object-fit: cover;
    }
}

/* Service card luxury styling */
.service-luxury {
    background-color: var(--warm-beige);
    border: 1px solid var(--muted-taupe);
}

.service-luxury:hover {
    border-color: var(--luxury-gold);
}
