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

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

:root {
    /* Updated Luxurious Palette */
    --primary-color: #C5A059; /* Sophisticated metallic gold (less yellow) */
    --primary-dark: #9E7D47; /* Antique bronze for depth */
    --primary-gradient: linear-gradient(135deg, #C5A059 0%, #E6C888 50%, #C5A059 100%); /* Shimmer effect */
    
    --secondary-color: #1C1C1C; /* Deep luxe charcoal instead of harsh black */
    --accent-color: #8B2828; /* Deep royal burgundy instead of bright red */
    
    --text-dark: #2D2D2D; /* Softer dark grey for text */
    --text-light: #666666; /* Elegant medium grey */
    
    --bg-light: #F9F7F2; /* Warm alabaster/cream background */
    --white: #ffffff;
    
    --shadow: 0 10px 30px rgba(0,0,0,0.05); /* Softer, more spread out shadow */
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.08);
}

/* Add custom text selection color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif; /* Modern clean font */
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between; /* Changed from flex-start */
    align-items: center;
    gap: 2rem; /* Reduced gap */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin-right: 0; /* Removed auto margin */
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
}

/* Add this new class for hidden text */
.logo span {
    transition: opacity 0.3s ease, width 0.3s ease;
}

.logo.compact span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 0; /* Removed auto margin */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}


/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
    background: var(--secondary-color);
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 10, 8, 0.82) 0%, rgba(12, 10, 8, 0.62) 44%, rgba(12, 10, 8, 0.4) 100%);
    z-index: 1;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/Front.png');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/i2.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/IMG_6674.PNG');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('images/i4.JPG');
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-shell {
    position: absolute;
    inset: 0;
    z-index: 11;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.75fr);
    gap: 32px;
    align-items: center;
}

.hero-copy {
    max-width: 760px;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.hero-copy h1 {
    font-size: 4.25rem;
    line-height: 1.08;
    margin-bottom: 1.1rem;
    animation: slideInDown 1s ease;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-description {
    max-width: 620px;
    font-size: 1.24rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--primary-gradient); /* New metallic gradient */
    background-size: 200% auto; /* Allows for shine animation */
    color: #1a1a1a; /* Dark text on gold looks more premium than white on gold */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.5s ease;
    animation: fadeIn 1.5s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    border: none;
}

.btn-primary:hover {
    background-position: right center; /* Simulates a shine passing through */
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.38);
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-fact {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-trust-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(249, 247, 242, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
}

.hero-card-label {
    margin-bottom: 20px;
    color: var(--accent-color);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-card-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    margin-bottom: 18px;
    align-items: start;
}

.hero-card-item i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.14);
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.hero-card-item h2 {
    margin-bottom: 6px;
    font-size: 1.08rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero-card-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(28, 28, 28, 0.2);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-link:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 12;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 12;
}

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

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

.section-kicker {
    text-align: center;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.trust-section {
    padding: 88px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}

.trust-section .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.trust-card {
    padding: 30px 28px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(0,0,0,0.08);
    border-color: rgba(197, 160, 89, 0.35);
}

.trust-card i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.14);
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.trust-card h3 {
    margin: 18px 0 10px;
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.trust-card p {
    color: var(--text-light);
    line-height: 1.75;
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title::before {
    content: 'âœ§';
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    /* Update underline to use the new gold */
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
    background-image: radial-gradient(#d4af37 0.5px, transparent 0.5px);
    background-size: 30px 30px; /* Subtle pattern */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 8px solid #fff; /* Photo frame effect */
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4b8 100%);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.gallery-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Subsection Styling */
.gallery-subsection {
    margin-bottom: 60px;
}

.gallery-subsection:last-child {
    margin-bottom: 0;
}

.gallery-subsection-title {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    padding-bottom: 20px;
}

.gallery-subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-color);
}

.gallery-subsection-title i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-subsection {
        margin-bottom: 50px;
    }
    
    .gallery-subsection-title {
        font-size: 1.5rem;
        gap: 10px;
    }
    
    .gallery-subsection-title i {
        font-size: 1.4rem;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2001;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-lightbox {
    left: 20px;
}

.next-lightbox {
    right: 20px;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
    user-select: none;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.faq-question:hover {
    background: var(--bg-light);
    border-left-color: var(--primary-color);
}

.faq-question h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Menu Section - Package Carousel */
.package-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.packages-container {
    display: flex;
    transition: transform 0.5s ease;
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    border: 1px solid rgba(0,0,0,0.05);
}

.package-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    position: relative;
    left: auto;
    transform: none;
    z-index: 2;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-header {
    padding: 2.5rem 2rem;
    text-align: center;
    background: #fff;
    border-bottom: 4px solid var(--primary-color);
    /* Add subtle gradient to header */
    background: linear-gradient(to bottom, #ffffff 0%, #fcfbf8 100%);
}

.package-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.package-badge.silver {
    color: #C0C0C0;
}

.package-badge.bronze {
    color: #CD7F32;
}

.package-badge.gold {
    color: var(--primary-color);
    /* Make the gold package shine more */
    text-shadow: 1px 1px 0px rgba(197, 160, 89, 0.2);
}

.package-badge i {
    font-size: 3rem;
}

.package-badge h3 {
    font-size: 2.2rem;
    margin: 0;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.popular-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.package-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-package {
    left: -60px;
}

.next-package {
    right: -60px;
}

.package-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.16), transparent 28%),
        linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 40px;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    display: grid;
    gap: 24px;
}

.contact-lead-card,
.visit-planner-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.lead-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.14);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-lead-card h3,
.visit-planner-card h3,
.booking-form-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.contact-lead-card p,
.visit-planner-card p,
.booking-form-header p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-benefits,
.visit-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.contact-benefits span,
.visit-highlights span,
.package-tags span {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(28, 28, 28, 0.05);
    color: var(--secondary-color);
    font-size: 0.88rem;
    font-weight: 600;
}

.booking-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-top: 5px solid var(--primary-color);
}

.booking-form-header {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    background: var(--white);
}
.form-group input.invalid {
    border: 2px solid #ff4444;
    background-color: #fff5f5;
}

.form-group input.valid {
    border: 2px solid #4CAF50;
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-helper-text {
    margin-top: 14px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.16);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    min-width: 30px;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.16);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.booking-success {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #fcfbf7 100%);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow-lg);
}

.booking-success-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(39, 174, 96, 0.14);
    color: #1f7a47;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.booking-success h3 {
    margin: 16px 0 10px;
    color: var(--secondary-color);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.booking-success p {
    color: var(--text-light);
}

.booking-summary {
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(28, 28, 28, 0.04);
    display: grid;
    gap: 10px;
}

.booking-summary-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: start;
}

.booking-summary-label {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.booking-summary-value {
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.6;
}

.booking-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.btn-success-primary,
.btn-success-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-success-primary {
    background: #25D366;
    color: var(--white);
}

.btn-success-primary:hover {
    background: #1fb357;
    transform: translateY(-2px);
}

.btn-success-secondary {
    background: rgba(197, 160, 89, 0.12);
    color: var(--secondary-color);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.btn-success-secondary:hover {
    transform: translateY(-2px);
    background: rgba(197, 160, 89, 0.2);
}

.text-link-btn {
    margin-top: 18px;
    padding: 0;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 30px; /* More breathing room */
    border-top: 5px solid var(--primary-color); /* Gold accent on top */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    color: #bbb;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-logo-img {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Facebook brand color */
.social-links a:hover .fa-facebook {
    color: #1877F2;
}

/* Instagram gradient effect */
.social-links a:hover .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* LinkedIn brand color */
.social-links a:hover .fa-linkedin {
    color: #0A66C2;
}

.social-links a:hover .fa-youtube {
    color: #FF0000;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
}

.sticky-contact-bar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1400;
    display: grid;
    gap: 12px;
}

.sticky-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sticky-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.sticky-call {
    background: rgba(255, 255, 255, 0.96);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sticky-whatsapp {
    background: #25D366;
    color: var(--white);
}

.sticky-visit {
    background: var(--primary-gradient);
    color: #1a1a1a;
}

.sticky-whatsapp:hover {
    background: #1fb357;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 92px;
    }

    .sticky-contact-bar {
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(28, 28, 28, 0.94);
        backdrop-filter: blur(14px);
    }

    .sticky-contact-btn {
        min-width: 0;
        border-radius: 14px;
        padding: 14px 12px;
        font-size: 0.9rem;
        box-shadow: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 100px;
    }

    .hero-slider {
        height: auto;
        min-height: 100vh;
    }

    .hero-shell {
        position: relative;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 110px;
        padding-bottom: 110px;
    }

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

    .hero-description {
        font-size: 1.12rem;
    }

    .hero-trust-card {
        max-width: 720px;
    }

    .trust-section {
        padding: 72px 0;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .prev-package {
        left: 10px;
    }

    .next-package {
        right: 10px;
    }

    .package-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .package-badge {
        padding: 15px 25px;
    }

    .package-badge h3 {
        font-size: 1.5rem;
    }

    .package-badge i {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 1.4rem;
    }

    .package-image {
        height: 200px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }

    .booking-success {
        padding: 26px;
    }

    .booking-summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .booking-success-actions,
    .visit-actions,
    .feedback-prompt-actions {
        flex-direction: column;
    }

    .btn-success-primary,
    .btn-success-secondary,
    .visit-actions .btn-outline,
    .visit-actions .btn-gold,
    .feedback-prompt-actions .btn-outline,
    .feedback-prompt-actions .btn-gold {
        width: 100%;
    }

    .feedback-prompt-card {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .navbar.scrolled {
        padding: 0.3rem 20px;
    }

    .navbar.scrolled .logo-img {
        height: 60px;
    }

    .navbar.scrolled .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .logo-img {
        height: 80px;
    }

    .hero-slider {
        height: auto;
        min-height: 100vh;
    }

    .hero-shell {
        position: relative;
    }

    .hero-layout {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-facts {
        gap: 10px;
    }

    .hero-fact {
        font-size: 0.8rem;
    }

    .hero-trust-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .hero-card-item {
        grid-template-columns: 40px 1fr;
    }

    .hero-card-item i {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    body {
        padding-bottom: 92px;
    }

    .sticky-contact-bar {
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(28, 28, 28, 0.94);
        backdrop-filter: blur(14px);
    }

    .sticky-contact-btn {
        min-width: 0;
        border-radius: 14px;
        padding: 14px 12px;
        font-size: 0.9rem;
        box-shadow: none;
    }

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

    .menu-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.feedback-section {
    background: #faf7f2;
    padding: 5rem 0;
}

.feedback-prompt-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.feedback-prompt-copy .section-title,
.feedback-prompt-copy .section-subtitle {
    text-align: left;
}

.feedback-prompt-copy .section-title::before,
.feedback-prompt-copy .section-title::after {
    left: 0;
    transform: none;
}

.feedback-prompt-copy .section-subtitle {
    margin-bottom: 0;
}

.feedback-prompt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.feedback-prompt-actions .btn-outline,
.feedback-prompt-actions .btn-gold {
    margin-top: 0;
}
/* =========================
   LUXURY MENU SECTION
========================= */

.luxury-menu-section {
    background: var(--bg-light); /* Changed to light background */
    padding: 90px 0;
  }

  .menu-compare-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 38px 0 8px;
  }

  .compare-pill {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(197, 160, 89, 0.16);
    box-shadow: var(--shadow);
  }

  .compare-pill strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
  }

  .compare-pill span {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.92rem;
  }
  
  .luxury-menu-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }
  
  .luxury-menu-card {
    background: var(--white); /* Changed to white background */
    border: 1px solid rgba(0,0,0,0.05); /* Subtle border instead of dark */
    border-radius: 22px; /* Softer radius */
    padding: 40px 32px;
    width: 360px;
    color: var(--text-dark); /* Dark text */
    text-align: left;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--shadow); /* Standard shadow */
  }

  .package-tier {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.14);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
  }
  
  .luxury-menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .luxury-menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary-color); /* Deep charcoal heading */
    margin-bottom: 10px;
  }
  
  .menu-tagline {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--primary-color); /* Gold accent */
    margin-bottom: 28px;
    font-weight: 500;
  }

  .package-meta {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
  }

  .package-meta-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(28, 28, 28, 0.04);
  }

  .package-meta-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }

  .package-meta-item strong {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 0.98rem;
  }
  
  .menu-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
  }
  
  .menu-points li {
    padding: 9px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Light separators */
    color: var(--text-light);
  }
  
  .menu-note {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 25px;
    font-style: italic;
  }

  .package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }

  .package-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-gold {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
    border: none;
  }
  
  .btn-gold:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  }
  
  /* Reset Featured Styling to match standard card */

  .luxury-menu-card.featured {
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 22px 40px rgba(197, 160, 89, 0.12);
    padding-top: 92px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfbf6 100%);
    padding-top: 74px;
  }

  .luxury-menu-card.featured .package-tier {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.14), rgba(230, 200, 136, 0.3));
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.08);
  }
  
  .featured-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 54px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #171717 0%, #2f2f2f 48%, #111111 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid rgba(230, 200, 136, 0.4);
    box-shadow: 0 18px 32px rgba(17, 17, 17, 0.18), 0 0 0 6px rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    max-width: calc(100% - 48px);
    text-align: center;
    z-index: 1;
  }

  .featured-label::before,
  .featured-label::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #f3dfad 0%, #c5a059 65%, #8f6d38 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
  }
  
  .menu-disclaimer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-compare-strip {
      grid-template-columns: 1fr;
    }

    .luxury-menu-card {
      width: 100%;
      max-width: 420px;
    }

    .luxury-menu-card.featured {
      padding-top: 78px;
    }

    .featured-label {
      min-height: 50px;
      padding: 10px 18px;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
    }
  }

  .btn-outline {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 26px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: transparent;
  }
  
  .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Replace the CUSTOMER REVIEWS SHOWCASE section with this: */
/* =========================
   CUSTOMER REVIEWS SHOWCASE - SLIDER
========================= */

.reviews-showcase-section {
    background: var(--white);
    padding: 90px 0;
    overflow: hidden;
}

.reviews-badge-row {
    display: flex;
    justify-content: center;
    margin: -10px 0 36px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--bg-light);
    border: 1px solid rgba(197, 160, 89, 0.22);
    box-shadow: var(--shadow);
}

.reviews-badge i {
    font-size: 1.5rem;
    color: #4285F4;
}

.reviews-badge strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.reviews-badge span {
    color: var(--text-light);
    font-size: 0.92rem;
}

.reviews-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 80px;
}

.reviews-grid-wrapper {
    overflow: hidden;
    padding: 10px 0;
    width: 100%; /* Add this */
}

.reviews-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform; /* Add for better performance */
}

/* FIXED: Card widths now match the gap properly */
.review-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 2 gaps Ã— 30px = 60px for 3 cards */
    min-width: calc((100% - 60px) / 3);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(197, 160, 89, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    pointer-events: none; /* Add this */
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reviewer-name {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: var(--primary-color);
    font-size: 1rem;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.review-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
}

.verified-badge i {
    font-size: 1rem;
}

/* Navigation Buttons */
.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.reviews-nav:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.reviews-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-nav:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.reviews-prev {
    left: 10px;
}

.reviews-next {
    right: 10px;
}

/* Navigation Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
    padding: 10px 0;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    border: none;
    outline: none;
}

.review-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.review-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* Reviews Statistics */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid rgba(197, 160, 89, 0.2);
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 10px 0;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc((100% - 30px) / 2); /* 1 gap Ã— 30px for 2 cards */
        min-width: calc((100% - 30px) / 2);
    }

    .reviews-slider-container {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%; /* No gap needed for single card */
        min-width: 100%;
        padding: 25px;
    }

    .reviews-slider-container {
        padding: 0 50px;
    }

    .reviews-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-content p {
        font-size: 0.9rem;
    }

    .reviews-slider-container {
        padding: 0 40px;
    }
}

/* Gallery Filter Tabs */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.filter-btn i {
    font-size: 1.1rem;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Responsive for Filters */
@media (max-width: 768px) {
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .filter-btn i {
        font-size: 1rem;
    }
    
    .gallery-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        flex: 1 1 auto;
        min-width: 140px;
    }
}