/* 
   Shagun – The Bridal Collection
   Core Stylesheet - Luxury Bridal Boutique
*/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Variables */
:root {
    --primary: #F8D9E5;          /* Baby Pink */
    --secondary: #FFF9F5;        /* Off White */
    --accent-gold: #D4AF37;      /* Light Gold */
    --accent-rose: #B76E79;      /* Rose Gold */
    --bg-cream: #FFFDFB;         /* Cream White */
    --text-charcoal: #1C1C1C;    /* Charcoal Text */
    --text-muted: #666666;       /* Muted Text */
    
    --font-heading: 'Playfair Display', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-luxury: 0 20px 40px rgba(183, 110, 121, 0.06);
    --shadow-hover: 0 30px 60px rgba(183, 110, 121, 0.12);
    --glass-bg: rgba(255, 249, 245, 0.75);
    --glass-border: rgba(248, 217, 229, 0.45);
    
    --gold-gradient: linear-gradient(135deg, #B76E79 0%, #D4AF37 50%, #B76E79 100%);
    --pink-gradient: linear-gradient(135deg, rgba(248, 217, 229, 0.2) 0%, rgba(255, 249, 245, 0.8) 100%);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--accent-rose));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-rose);
}

/* Base Styles & Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
}

p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-rose);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transition-timing-function: ease-out;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-rose);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(248, 217, 229, 0.2);
    border-color: var(--accent-gold);
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-cream);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 0.15em;
    color: var(--text-charcoal);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLoader 1.5s forwards ease-in-out;
}

.loader-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-rose);
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpLoader 1.5s 0.3s forwards ease-in-out;
}

.loader-line {
    width: 150px;
    height: 1px;
    background: #e0e0e0;
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    position: absolute;
    top: 0;
    left: 0;
    animation: progressLoader 2s infinite linear;
}

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

@keyframes progressLoader {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 9998;
}

/* Floating Particles - Flower Petals */
.petal-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.petal {
    position: absolute;
    background: radial-gradient(circle, #ffebf0 0%, #f8d9e5 70%, #f0c3d4 100%);
    border-radius: 150% 0 150% 150%;
    opacity: 0.75;
    pointer-events: none;
    transform: rotate(45deg);
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        top: 110%;
        transform: translateX(150px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* Premium Buttons */
.btn-luxury {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 30px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--text-charcoal);
    color: var(--secondary);
    box-shadow: var(--shadow-luxury);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-luxury span {
    position: relative;
    z-index: 2;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.25);
    color: #fff;
}

.btn-luxury:hover::before {
    left: 0;
}

.btn-luxury-outline {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 30px;
    border: 1px solid var(--accent-rose);
    cursor: pointer;
    background-color: transparent;
    color: var(--text-charcoal);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-luxury-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-luxury-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--text-charcoal);
}

.btn-luxury-outline:hover::before {
    left: 0;
}

/* Sticky Navbar */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: var(--transition-smooth);
    background: transparent;
}

header.main-header.scrolled {
    padding: 15px 8%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: var(--transition-smooth);
}

header.main-header.scrolled .logo-img {
    height: 95px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    margin-bottom: 20px;
}

.logo span {
    font-size: 0.65rem;
    display: block;
    letter-spacing: 0.35em;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: -3px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

nav.nav-menu ul {
    display: flex;
    gap: 45px;
    align-items: center;
}

nav.nav-menu ul li a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ffffff;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
    display: inline-block;
}

nav.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

nav.nav-menu ul li a:hover,
nav.nav-menu ul li.active a {
    transform: translateY(-2px);
    color: #ffffff;
}

nav.nav-menu ul li a:hover::after,
nav.nav-menu ul li.active a::after {
    width: 100%;
}

.nav-cta .btn-luxury {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

/* Scrolled overrides to restore charcoal colors on scrolled frosted glass */
header.main-header.scrolled .logo a {
    color: var(--text-charcoal);
}

header.main-header.scrolled .logo span {
    color: var(--accent-rose);
}

header.main-header.scrolled nav.nav-menu ul li a {
    color: var(--text-charcoal);
}

header.main-header.scrolled nav.nav-menu ul li a:hover,
header.main-header.scrolled nav.nav-menu ul li.active a {
    color: var(--accent-rose);
}

header.main-header.scrolled nav.nav-menu ul li a::after {
    background: var(--gold-gradient);
}

header.main-header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-charcoal);
}

.mobile-menu-toggle.open span {
    background-color: var(--text-charcoal) !important;
}

/* Fullscreen Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 249, 245, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50px);
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-nav-menu ul li a {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: var(--text-charcoal);
}

.mobile-nav-menu ul li a:hover {
    color: var(--accent-rose);
    letter-spacing: 0.12em;
}

/* Toggle Animation */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(28, 28, 28, 0.4) 0%, rgba(248, 217, 229, 0.55) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title-wrap {
    margin-bottom: 25px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: 0.3em;
    color: var(--secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.1;
    font-weight: 300;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-cta .btn-luxury-outline {
    border-color: #fff;
    color: #fff;
}

.hero-cta .btn-luxury-outline::before {
    background: rgba(255, 255, 255, 0.25);
}

.hero-cta .btn-luxury-outline:hover {
    color: #fff;
}

/* Sections General */
section {
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-rose);
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    display: block;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 15px;
}

/* Custom Grid Configurations */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Luxury Cards */
.card-luxury {
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    position: relative;
}

.card-luxury-img {
    height: 480px;
    overflow: hidden;
    position: relative;
    background: #FAF6F0;
}

.card-luxury-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.card-luxury:hover .card-luxury-img img {
    transform: scale(1.08);
}

.card-luxury-content {
    padding: 30px;
    text-align: center;
    background: var(--secondary);
}

.card-luxury-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--text-charcoal);
}

.card-luxury-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.card-luxury-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--accent-rose);
    color: var(--accent-rose);
    transition: var(--transition-fast);
}

.card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.card-luxury:hover .card-luxury-cta {
    background-color: var(--accent-rose);
    color: #fff;
}

/* Why Choose Us Section */
.why-us-grid {
    margin-top: 50px;
}

.why-us-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.why-us-icon {
    font-size: 2.2rem;
    color: var(--accent-rose);
    margin-bottom: 20px;
    background: rgba(248, 217, 229, 0.35);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-fast);
}

.why-us-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.why-us-card:hover .why-us-icon {
    background: var(--gold-gradient);
    color: #fff;
}

/* Bridal Journey Timeline */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(183, 110, 121, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.timeline-item {
    text-align: center;
    width: 14%;
    cursor: pointer;
}

.timeline-node {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border: 2px solid var(--accent-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: var(--accent-rose);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.timeline-item:hover .timeline-node,
.timeline-item.active .timeline-node {
    background: var(--gold-gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.timeline-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-charcoal);
    margin-bottom: 5px;
}

.timeline-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Testimonials Carousel */
.testimonials-section {
    background: var(--secondary);
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-luxury);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-charcoal);
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-rose);
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(183, 110, 121, 0.25);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--accent-rose);
    width: 25px;
    border-radius: 5px;
}

/* Instagram Gallery Masonry */
.masonry-gallery {
    columns: 4 250px;
    column-gap: 20px;
    margin-top: 50px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-luxury);
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 217, 229, 0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.masonry-overlay i {
    font-size: 1.8rem;
    color: var(--text-charcoal);
    transform: scale(0.6);
    transition: var(--transition-smooth);
}

.masonry-item:hover img {
    transform: scale(1.08);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-item:hover .masonry-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary);
}

/* VIP Experience Banner */
.luxury-banner-section {
    background: linear-gradient(135deg, rgba(248, 217, 229, 0.3) 0%, rgba(255, 249, 245, 0.9) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    padding: 120px 8%;
}

.luxury-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.luxury-banner-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.luxury-banner-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Newsletter Section */
.newsletter-card {
    background: var(--pink-gradient);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 25px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background-color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-charcoal);
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--accent-rose);
    box-shadow: 0 0 10px rgba(183, 110, 121, 0.1);
}

/* Footer styling */
footer.main-footer {
    background-color: var(--secondary);
    border-top: 1px solid var(--glass-border);
    padding: 80px 8% 30px;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-charcoal);
    font-weight: 500;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--accent-rose);
    color: #fff;
    border-color: var(--accent-rose);
    transform: translateY(-3px);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent-rose);
    padding-left: 5px;
}

.footer-insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.footer-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.footer-insta-item:hover img {
    transform: scale(1.1);
}

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transition: var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Reveal Classes (Initial state) */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Reveal States (Toggled by JS) */
.reveal-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Global Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28, 28, 28, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10002;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.booking-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-card {
    background: var(--secondary);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.booking-modal.open .booking-modal-card {
    transform: scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-charcoal);
    transition: var(--transition-fast);
}

.booking-modal-close:hover {
    color: var(--accent-rose);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-modal-header h3 {
    font-size: 1.8rem;
    color: var(--text-charcoal);
    margin-bottom: 5px;
}

.booking-modal-header p {
    font-size: 0.9rem;
}

/* Booking Form Elements */
.booking-form-group {
    position: relative;
    margin-bottom: 25px;
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-bottom: 1px solid var(--accent-rose);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-charcoal);
    outline: none;
    transition: var(--transition-fast);
}

.booking-form-group label {
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.booking-form-group input:focus ~ label,
.booking-form-group input:valid ~ label,
.booking-form-group select:focus ~ label,
.booking-form-group select:valid ~ label,
.booking-form-group textarea:focus ~ label,
.booking-form-group textarea:valid ~ label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--accent-rose);
    letter-spacing: 0.05em;
}

.booking-form-group textarea {
    resize: none;
    height: 80px;
}

/* Services page details modal */
.details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(28, 28, 28, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.details-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.details-modal-card {
    background: var(--secondary);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.details-modal.open .details-modal-card {
    transform: scale(1);
}

.details-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-charcoal);
    transition: var(--transition-fast);
}

.details-modal-close:hover {
    color: var(--accent-rose);
}

.details-modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-modal-img {
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background: #FAF6F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.details-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-charcoal);
}

.details-modal-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Story / About Section Layout Alignment */
.story-section {
    padding: 100px 8%;
}

.story-section .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-img-wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.story-img-frame {
    width: 100%;
    height: 560px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--glass-border);
    background: #FAF6F0;
    position: relative;
}

.story-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: var(--transition-smooth);
}

.story-img-frame:hover img {
    transform: scale(1.04);
}

.story-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

.story-content-wrap .section-subtitle {
    margin-bottom: 12px;
}

.story-content-wrap h2 {
    font-size: 2.3rem;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    line-height: 1.35;
    color: var(--text-charcoal);
}

.story-content-wrap p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
    font-weight: 300;
}

.story-content-wrap .btn-luxury {
    align-self: flex-start;
    margin-top: 10px;
}

/* Luxury Founder Section Styling */
.founder-section {
    background: linear-gradient(135deg, #FFFDFB 0%, #FAF4EE 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 100px 8%;
}

.founder-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 50px 45px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
}

.founder-card .quote-icon {
    font-size: 2.2rem;
    color: var(--accent-rose);
    opacity: 0.6;
    margin-bottom: 15px;
}

.founder-card .section-subtitle {
    margin-bottom: 12px;
}

.founder-title {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-charcoal);
    line-height: 1.35;
    margin-bottom: 24px;
}

.founder-quote-body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-rose);
}

.founder-author-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.founder-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.founder-author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-rose);
    margin-bottom: 3px;
}

.founder-author-info p {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.founder-img-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    perspective: 1000px;
}

.founder-img-frame {
    width: 100%;
    height: 540px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(91, 72, 89, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: floatGlassyFrame 6s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.founder-img-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.founder-img-frame::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(25deg);
    transition: all 0.8s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.founder-img-frame:hover::after {
    animation: glassyShineSweep 1.8s ease-in-out infinite;
    opacity: 1;
}

@keyframes floatGlassyFrame {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 25px 60px rgba(91, 72, 89, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: translateY(-12px);
        box-shadow: 0 35px 70px rgba(91, 72, 89, 0.25), 0 0 25px rgba(244, 212, 173, 0.3);
    }
}

@keyframes glassyShineSweep {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

.founder-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.7s ease;
}

.founder-img-frame:hover img {
    transform: scale(1.06);
    filter: brightness(1.04);
}

.founder-img-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    padding: 16px 26px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), inset 0 0 15px rgba(255, 255, 255, 0.5);
    z-index: 4;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    animation: badgePulse 4s ease-in-out infinite;
}

.founder-img-frame:hover .founder-img-badge {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 18px 40px rgba(230, 170, 125, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.7);
    }
}

.founder-img-badge i {
    font-size: 1.5rem;
    color: var(--accent-rose, #e08ba7);
    filter: drop-shadow(0 2px 8px rgba(224, 139, 167, 0.4));
}

.founder-img-badge span {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.05rem;
    color: var(--text-charcoal, #2b2b2b);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.founder-img-badge small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted, #777777);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Enhanced Global Luxury Animations */

/* 1. Header Nav Menu Link Hover Underline Animation */
.nav-menu ul li a {
    position: relative;
    transition: color 0.4s ease;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
    left: 0;
}

/* 2. Shimmer Gold Text Effect */
.shimmer-text {
    background: linear-gradient(90deg, #b76e79 0%, #d4af37 50%, #b76e79 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

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

/* 3. Hero Section Float & Ambient Glow Animations */
.hero-badge {
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-image-wrap img {
    animation: heroImgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroImgPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.04);
    }
}

/* 4. Luxury Card Hover Lift & Shimmer Effects */
.why-us-card, .service-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.why-us-card:hover, .service-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 25px 50px rgba(183, 110, 121, 0.18);
}

/* 5. Smooth Button Hover Sweep */
.btn-luxury {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease;
}

.btn-luxury:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 36px rgba(183, 110, 121, 0.3);
}

.btn-luxury:active {
    transform: translateY(-1px) scale(0.98);
}

/* 6. Gallery Masonry Item Hover Zoom & Overlay Transition */
.masonry-item img {
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.7s ease;
}

.masonry-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.masonry-overlay {
    transition: opacity 0.4s ease, background 0.4s ease;
}

.masonry-overlay i {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonry-item:hover .masonry-overlay i {
    transform: scale(1.2) rotate(10deg);
}

/* 7. WhatsApp Floating Button Spring Hover */
.whatsapp-floating {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.18) translateY(-6px) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Achievements Cards Section (Matching Design Spec) */
.achievements-section {
    background-color: #f7d5f1;
    padding: 90px 8%;
}

.achievement-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.achievement-card {
    background-color: #5b4859;
    border-radius: 24px;
    padding: 45px 25px 40px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(91, 72, 89, 0.22);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(91, 72, 89, 0.35);
}

.achievement-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    color: #ffffff;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.achievement-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8.5rem;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
}

.achievement-number {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #f1d4a6;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

.achievement-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ded7dc;
    position: relative;
    z-index: 2;
}

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

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

/* Testimonials Infinite Auto-Scroll Slider (Matching Design Spec) */
.testimonials-section {
    background-color: #f9f4f8;
    padding: 90px 0;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0 30px 0;
    margin-top: 40px;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials-slider-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: testimonialContinuousScroll 32s linear infinite;
}

.testimonials-slider-wrapper:hover .testimonials-slider-track {
    animation-play-state: paused;
}

@keyframes testimonialContinuousScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-slider-track .testimonial-card {
    width: 380px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 30px 30px 30px;
    box-shadow: 0 10px 30px rgba(91, 72, 89, 0.06);
    border: 1px solid rgba(240, 230, 237, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(91, 72, 89, 0.12);
}

.testimonial-stars {
    color: #e5b358;
    font-size: 0.85rem;
    margin-bottom: 22px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 25px;
}

.testimonial-divider {
    height: 1px;
    background-color: #f0e4ec;
    margin-bottom: 20px;
    width: 100%;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4d4ad 0%, #e6aa7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(230, 170, 125, 0.35);
    flex-shrink: 0;
}

.testimonial-author-name {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0 0 3px 0;
}

.testimonial-author-role {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #eb9cb8;
    display: block;
}

@media (max-width: 768px) {
    .testimonials-slider-track .testimonial-card {
        width: 300px;
        padding: 30px 22px 25px 22px;
    }
}
