/*
 * La Corte Tuscana Hotel & Resort
 * Custom Luxury Styling
 * Merging Tuscan warmth with contemporary riverside elegance
 */

/* ==========================================================================
   1. Design System Tokens & Root Variables
   ========================================================================== */
:root {
    /* Harmonious Tuscan-Luxury Palette */
    --primary-terracotta: #EEB345;
    --primary-terracotta-hover: #D9A03B;
    --secondary-gold: #D4AF37;
    --secondary-gold-hover: #BC982C;
    --dark-charcoal: #1C1C1C;
    --dark-umber: #2C2B29;
    --light-alabaster: #FDFBF7;
    --light-sand: #FDFBF7;
    --accent-muted-gold: #E5D5B8;
    --border-light: rgba(238, 179, 69, 0.15);
    --glass-bg: rgba(253, 251, 247, 0.85);
    --glass-border: rgba(238, 179, 69, 0.2);

    /* Typography */
    --font-serif: 'League Spartan', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-sans: 'League Spartan', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-luxury: 0 15px 35px rgba(28, 28, 28, 0.05), 0 5px 15px rgba(28, 28, 28, 0.02);
    --shadow-hover: 0 20px 40px rgba(238, 179, 69, 0.12);
}

/* ==========================================================================
   2. Global Reset & Base Elements
   ========================================================================== */
body {
    font-family: var(--font-sans);
    color: var(--dark-umber);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    color: var(--dark-charcoal);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.serif-font {
    font-family: var(--font-sans);
    color: var(--dark-charcoal);
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    color: #5A5854;
    font-size: 1.15em;
}

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

a:hover {
    color: var(--primary-terracotta-hover);
}

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

::-webkit-scrollbar-track {
    background: var(--light-alabaster);
}

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

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

/* Text Selection */
::selection {
    background-color: var(--primary-terracotta);
    color: white;
}

/* ==========================================================================
   3. Typography & Section Accents
   ========================================================================== */
.text-gold {
    color: var(--secondary-gold) !important;
}

.small,
small {
    font-size: 1.15em;
}

.text-terracotta {
    color: var(--primary-terracotta) !important;
}

.bg-terracotta {
    background-color: var(--primary-terracotta) !important;
}

.bg-sand {
    background-color: var(--light-sand) !important;
}

.bg-alabaster {
    background-color: var(--light-alabaster) !important;
}

.section-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-terracotta);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-terracotta);
    margin-top: 1rem;
}

.section-title-center {
    text-align: center;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-terracotta);
    margin: 1rem auto 0 auto;
}

/* ==========================================================================
   4. Buttons & Interactive Elements
   ========================================================================== */
.btn-luxury {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    background-color: var(--primary-terracotta);
    color: white;
    border: 1px solid var(--primary-terracotta);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-gold);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-luxury:hover {
    color: white;
    border-color: var(--secondary-gold);
    box-shadow: 0 10px 20px rgba(200, 122, 83, 0.2);
}

.btn-luxury:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-luxury-outline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    background-color: transparent;
    color: var(--dark-charcoal);
    border: 1px solid var(--primary-terracotta);
    transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
    background-color: var(--primary-terracotta);
    color: white;
    border-color: var(--primary-terracotta);
    box-shadow: 0 10px 20px rgba(200, 122, 83, 0.15);
}

/* ==========================================================================
   5. Header & Navigation
   ========================================================================== */
.navbar-luxury {
    padding: 0.1rem 0;
    transition: var(--transition-smooth);
    background-color: #ffffff;
    border-bottom: 1px solid rgba(200, 122, 83, 0.15);
    box-shadow: 0 2px 15px rgba(28, 28, 28, 0.05);
}

.navbar-luxury.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.1rem 0;
    border-bottom: 1px solid rgba(200, 122, 83, 0.2);
    box-shadow: 0 5px 30px rgba(28, 28, 28, 0.08);
}

.navbar-logo-img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-luxury.scrolled .navbar-logo-img {
    height: 70px;
    max-height: 70px;
}

.navbar-brand-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark-charcoal) !important;
    transition: var(--transition-smooth);
}

.navbar-brand-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    display: block;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--primary-terracotta);
}

.nav-link-luxury {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-umber) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-terracotta);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link-luxury:hover,
.nav-link-luxury.active {
    color: var(--primary-terracotta) !important;
}

.nav-link-luxury:hover::after,
.nav-link-luxury.active::after {
    transform: scaleX(1);
}

/* Custom Dropdown Styling */
.dropdown-menu-luxury {
    background-color: var(--light-alabaster);
    border: 1px solid var(--border-light);
    border-radius: 0;
    box-shadow: var(--shadow-luxury);
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
}

.dropdown-menu-luxury .dropdown-item {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-umber) !important;
    padding: 0.6rem 1.5rem;
    transition: var(--transition-fast);
}

.dropdown-menu-luxury .dropdown-item:hover,
.dropdown-menu-luxury .dropdown-item:focus {
    background-color: var(--primary-terracotta);
    color: white !important;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu-luxury {
        display: block;
        margin-top: 0 !important;
    }
}

/* Navbar Toggle Design */
.navbar-toggler-luxury {
    border: none;
    padding: 0.5rem;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon-custom {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-charcoal);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Mobile Nav Menu Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse-luxury {
        background-color: #ffffff;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(200, 122, 83, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link-luxury {
        color: var(--dark-umber) !important;
        padding: 0.8rem 1rem !important;
        border-bottom: 1px solid rgba(200, 122, 83, 0.08);
    }

    .nav-link-luxury::after {
        display: none;
    }
}

/* ==========================================================================
   6. Hero & Booking Widgets
   ========================================================================== */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Carousel Slider Styles */
.hero-section.carousel {
    padding: 0;
    display: block;
}

.hero-section .carousel-inner {
    height: 100%;
}

.hero-section .carousel-item {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 1.2s cubic-bezier(0.6, 0, 0.3, 1), opacity 1.2s ease-in-out;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 5%;
    z-index: 4;
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.6;
}

.hero-section:hover .carousel-control-prev:hover,
.hero-section:hover .carousel-control-next:hover {
    opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    background-color: rgba(28, 28, 28, 0.4);
    border: 1px solid rgba(253, 251, 247, 0.2);
    padding: 1.5rem;
    border-radius: 50%;
    background-size: 50%;
    transition: var(--transition-fast);
}

.hero-section .carousel-control-prev-icon:hover,
.hero-section .carousel-control-next-icon:hover {
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
}

.hero-section .carousel-indicators {
    margin-bottom: 2rem;
    z-index: 4;
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 3px;
    background-color: rgba(253, 251, 247, 0.4);
    border: none;
    transition: var(--transition-smooth);
}

.hero-section .carousel-indicators .active {
    background-color: var(--secondary-gold);
    width: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.7) 0%, rgba(28, 28, 28, 0.4) 50%, rgba(28, 28, 28, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Quick Booking Widget */
.booking-widget-container {
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.booking-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.2rem;
    box-shadow: var(--shadow-luxury);
    border-radius: 0;
}

.booking-widget .form-label-luxury {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-umber);
    margin-bottom: 0.5rem;
    display: block;
}

.booking-widget .form-control-luxury {
    border-radius: 0;
    border: 1px solid rgba(28, 28, 28, 0.1);
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background-color: white;
    color: var(--dark-charcoal);
    transition: var(--transition-fast);
}

.booking-widget .form-control-luxury:focus {
    border-color: var(--primary-terracotta);
    box-shadow: none;
    background-color: white;
}

/* ==========================================================================
   7. Cards & Architectural Features
   ========================================================================== */
.luxury-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 122, 83, 0.3);
}

.luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
}

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

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

.luxury-card-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary-terracotta);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
}

.luxury-card-body {
    padding: 2.2rem;
}

.luxury-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.luxury-card-title a {
    color: var(--dark-charcoal);
}

.luxury-card-title a:hover {
    color: var(--primary-terracotta);
}

.luxury-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(200, 122, 83, 0.1);
    border-bottom: 1px solid rgba(200, 122, 83, 0.1);
}

.luxury-card-spec-item {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: #6C757D;
}

.luxury-card-spec-item i {
    color: var(--primary-terracotta);
    margin-right: 0.4rem;
}

.luxury-card-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-terracotta);
}

.luxury-card-price span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: #6C757D;
    font-weight: 400;
}

/* Glassmorphism elements */
.glass-card {
    background: rgba(253, 251, 247, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   8. Feature Grid & Split Sections
   ========================================================================== */
.feature-box {
    padding: 2.5rem;
    height: 100%;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    background-color: white;
    border-color: var(--border-light);
    box-shadow: var(--shadow-luxury);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-sand);
    color: var(--primary-terracotta);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-box-icon {
    background-color: var(--primary-terracotta);
    color: white;
}

.feature-box-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* Split Showcase Section */
.split-showcase-img {
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    width: 100%;
}

/* ==========================================================================
   9. Gallery Filtering Page
   ========================================================================== */
.gallery-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(28, 28, 28, 0.1);
    background: transparent;
    color: var(--dark-umber);
    transition: var(--transition-smooth);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
    color: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
    text-align: center;
}

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

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

.gallery-item-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item-category {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-gold);
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

.gallery-item-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-item-icon {
    transform: scale(1);
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
}

/* ==========================================================================
   10. Booking Page Multi-step Layout
   ========================================================================== */
.booking-step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-step-indicators::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(28, 28, 28, 0.08);
    z-index: 1;
}

.booking-step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.booking-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid rgba(28, 28, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: #6C757D;
    transition: var(--transition-smooth);
}

.booking-step-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.8rem;
    color: #6C757D;
    transition: var(--transition-smooth);
    text-align: center;
}

.booking-step-indicator.active .booking-step-number {
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
    color: white;
    box-shadow: 0 5px 15px rgba(200, 122, 83, 0.25);
}

.booking-step-indicator.active .booking-step-label {
    color: var(--primary-terracotta);
}

.booking-step-indicator.completed .booking-step-number {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: white;
}

.booking-step-indicator.completed .booking-step-label {
    color: var(--secondary-gold);
}

/* Booking sidebar details */
.booking-summary-card {
    background-color: var(--light-sand);
    border: 1px solid var(--border-light);
    padding: 2.2rem;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.booking-summary-item-label {
    color: #6C757D;
}

.booking-summary-item-value {
    font-weight: 600;
    color: var(--dark-charcoal);
}

.booking-summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(200, 122, 83, 0.2);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.booking-summary-total-label {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-charcoal);
}

.booking-summary-total-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-terracotta);
}

.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Custom form elements for all forms */
.form-group-luxury {
    margin-bottom: 1.8rem;
}

.form-label-custom {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dark-charcoal);
    margin-bottom: 0.6rem;
    display: block;
}

.form-control-custom {
    border-radius: 0;
    border: 1px solid rgba(28, 28, 28, 0.12);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background-color: var(--light-alabaster);
    color: var(--dark-charcoal);
    transition: var(--transition-smooth);
}

.form-control-custom:focus {
    border-color: var(--primary-terracotta);
    box-shadow: none;
    background-color: white;
}

.form-control-custom::placeholder {
    color: #ADB5BD;
    font-size: 0.9rem;
}

/* ==========================================================================
   11. Contact Page FAQ & Details
   ========================================================================== */
.contact-method-card {
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    background-color: white;
    transition: var(--transition-smooth);
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(200, 122, 83, 0.3);
}

.contact-method-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-sand);
    color: var(--primary-terracotta);
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.contact-method-card:hover .contact-method-icon {
    background-color: var(--primary-terracotta);
    color: white;
}

.contact-method-title {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.contact-method-detail {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #5A5854;
    margin-bottom: 0;
}

/* Accordion custom styling for FAQ */
.accordion-custom .accordion-item {
    border: 1px solid var(--border-light) !important;
    border-radius: 0 !important;
    margin-bottom: 1rem;
    background-color: white;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    padding: 1.4rem 1.8rem;
    background-color: white;
    border: none;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: var(--transition-fast);
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary-terracotta);
    background-color: var(--light-sand);
}

.accordion-custom .accordion-button::after {
    background-size: 1rem;
    transition: var(--transition-smooth);
}

.accordion-custom .accordion-body {
    padding: 1.8rem;
    font-size: 1rem;
    color: #5A5854;
    background-color: white;
    line-height: 1.8;
    border-top: 1px solid rgba(200, 122, 83, 0.1);
}

/* ==========================================================================
   12. Testimonials
   ========================================================================== */
.testimonial-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--dark-charcoal);
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-quote::before {
    content: '“';
    font-size: 6rem;
    font-family: var(--font-serif);
    position: absolute;
    top: -45px;
    left: -20px;
    opacity: 0.15;
    color: var(--primary-terracotta);
}

.testimonial-author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--secondary-gold);
}

.testimonial-author-name {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-charcoal);
    margin-bottom: 0.2rem;
}

.testimonial-author-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #8C8A85;
}

.testimonial-stars {
    color: var(--secondary-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.footer-luxury {
    background-color: var(--dark-charcoal);
    color: #A09F9C;
    padding: 5rem 0 2rem 0;
    border-top: 2px solid var(--primary-terracotta);
}

.footer-luxury h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-luxury h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background-color: var(--primary-terracotta);
}

.footer-luxury-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-luxury-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    display: block;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
}

.footer-social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(253, 251, 247, 0.05);
    color: white;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    background-color: var(--primary-terracotta);
    color: white;
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #A09F9C;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary-terracotta);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.footer-newsletter-form {
    position: relative;
}

.footer-newsletter-input {
    background-color: rgba(253, 251, 247, 0.04);
    border: 1px solid rgba(253, 251, 247, 0.1);
    color: white;
    border-radius: 0;
    padding: 0.9rem 1.2rem;
    width: 100%;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-terracotta);
    background-color: rgba(253, 251, 247, 0.07);
}

.footer-newsletter-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background-color: var(--primary-terracotta);
    color: white;
    border: none;
    width: 55px;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.footer-newsletter-btn:hover {
    background-color: var(--primary-terracotta-hover);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 251, 247, 0.05);
    font-size: 0.85rem;
    font-family: var(--font-sans);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #A09F9C;
}

.footer-bottom-links a:hover {
    color: var(--secondary-gold);
}

/* ==========================================================================
   13b. Exclusively for You – Full Width Slider
   ========================================================================== */
.exclusively-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.exclusively-slider-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
}

/* Title Overlay – positioned center of section */
.exclusively-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.exclusively-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-gold);
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.exclusively-heading {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
}

.exclusively-title-line {
    width: 60px;
    height: 2px;
    background-color: var(--secondary-gold);
    margin: 0 auto;
}

/* Carousel full height */
#exclusiveCarousel,
#exclusiveCarousel .carousel-inner,
#exclusiveCarousel .carousel-item {
    height: 100%;
}

/* Each slide background */
.exclusively-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear;
    will-change: transform;
}

/* Subtle Ken Burns zoom on active slide */
.carousel-item.active .exclusively-slide {
    animation: exclusiveZoom 8s ease-out forwards;
}

@keyframes exclusiveZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* Dark gradient overlay on each slide */
.exclusively-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(28, 28, 28, 0.35) 0%,
            rgba(28, 28, 28, 0.15) 40%,
            rgba(28, 28, 28, 0.6) 100%);
    z-index: 1;
}

/* Slide caption – bottom left */
.exclusively-slide-caption {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    z-index: 5;
    max-width: 450px;
}

.exclusively-caption-tag {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-gold);
    display: block;
    margin-bottom: 0.6rem;
}

.exclusively-caption-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Navigation arrows */
.exclusively-nav {
    width: 60px;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.exclusively-section:hover .exclusively-nav {
    opacity: 1;
}

.exclusively-nav-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    background: rgba(28, 28, 28, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}

.exclusively-nav:hover .exclusively-nav-icon {
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
}

/* Custom indicators – bottom right */
.exclusively-indicators {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    z-index: 10;
    display: flex;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
}

.exclusively-indicators button {
    width: 35px;
    height: 3px;
    border: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.exclusively-indicators button.active {
    background-color: var(--secondary-gold);
    width: 55px;
}

.exclusively-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .exclusively-heading {
        font-size: 3.5rem;
    }

    .exclusively-slide-caption {
        left: 2rem;
        bottom: 3rem;
        max-width: 350px;
    }

    .exclusively-indicators {
        right: 2rem;
        bottom: 3rem;
    }
}

@media (max-width: 575.98px) {
    .exclusively-slider-wrapper {
        height: 70vh;
        min-height: 420px;
    }

    .exclusively-heading {
        font-size: 2.5rem;
    }

    .exclusively-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.25em;
    }

    .exclusively-slide-caption {
        left: 1.5rem;
        bottom: 5rem;
        max-width: 280px;
    }

    .exclusively-caption-text {
        font-size: 1rem;
    }

    .exclusively-indicators {
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .exclusively-nav-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   14. Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scroll Animation classes (applied by IntersectionObserver in main.js) */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ==========================================================================
   15. Gallery Slider Section
   ========================================================================== */
.gallery-slider-section {
    position: relative;
    overflow: hidden;
}

.gallery-title-line {
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--primary-terracotta);
}

.gallery-subtitle-small {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-terracotta);
}

.gallery-title-big {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.gallery-header-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
}

.gallery-slider-wrapper {
    margin-top: 2rem;
    padding: 0 15px;
}

/* Slider Track Container */
.gallery-slider-container {
    overflow: hidden;
    margin: 0 -15px;
    padding: 15px 0;
}

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

.gallery-slider-card-wrapper {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.gallery-slider-card {
    background-color: #ffffff;
    border: 1px solid rgba(238, 179, 69, 0.15);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(28, 28, 28, 0.02);
    transition: var(--transition-smooth);
}

.gallery-slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(238, 179, 69, 0.12);
    border-color: rgba(238, 179, 69, 0.3);
}

.gallery-slider-img-container {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.gallery-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-slider-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--dark-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.gallery-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
    flex-grow: 1;
}

.gallery-card-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-terracotta) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.gallery-card-link:hover {
    color: var(--primary-terracotta-hover) !important;
}

.gallery-card-link .arrow-sym {
    font-size: 1.1rem;
    line-height: 1;
}

/* Floating Navigation Buttons */
.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(238, 179, 69, 0.2);
    color: var(--dark-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.gallery-slider-btn:hover {
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(238, 179, 69, 0.25);
}

.gallery-slider-btn.prev-btn {
    left: -25px;
}

.gallery-slider-btn.next-btn {
    right: -25px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .gallery-slider-btn.prev-btn {
        left: -10px;
    }

    .gallery-slider-btn.next-btn {
        right: -10px;
    }
}

@media (max-width: 991.98px) {
    .gallery-title-big {
        font-size: 2.3rem;
    }

    .gallery-slider-card-wrapper {
        flex: 0 0 50%;
        width: 50%;
    }

    .gallery-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .gallery-slider-btn.prev-btn {
        left: 5px;
    }

    .gallery-slider-btn.next-btn {
        right: 5px;
    }
}

@media (max-width: 767.98px) {
    .gallery-slider-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }

    .gallery-slider-img-container {
        height: 240px;
    }

    .gallery-slider-btn {
        display: none !important;
        /* Hide navigation buttons on mobile, rely on touch swipe */
    }

    .gallery-slider-wrapper {
        padding: 0;
    }

    .gallery-slider-container {
        margin: 0;
    }
}

/* ==========================================================================
   16. Blog Journal Section
   ========================================================================== */
.blog-section {
    position: relative;
    overflow: hidden;
}

.blog-title-line {
    display: inline-block;
    width: 35px;
    height: 2px;
    background-color: var(--primary-terracotta);
}

.blog-subtitle-small {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-terracotta);
}

.blog-title-big {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.blog-header-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
}

.blog-card {
    background-color: #ffffff;
    border: 1px solid rgba(238, 179, 69, 0.15);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(28, 28, 28, 0.02);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(238, 179, 69, 0.12);
    border-color: rgba(238, 179, 69, 0.3);
}

.blog-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #8c8a85;
}

.blog-meta-divider {
    margin: 0 0.4rem;
    color: rgba(28, 28, 28, 0.15);
}

.blog-category {
    color: var(--secondary-gold) !important;
    font-weight: 700;
}

.blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: var(--dark-charcoal);
    transition: var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary-terracotta);
}

.blog-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
    flex-grow: 1;
}

.blog-card-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-terracotta) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--primary-terracotta-hover) !important;
}

.blog-card-link .arrow-sym {
    font-size: 1.1rem;
    line-height: 1;
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .blog-title-big {
        font-size: 2.3rem;
    }
}

@media (max-width: 767.98px) {
    .blog-img-container {
        height: 220px;
    }
}

/* ==========================================================================
   21. Synced Carousel Thumbnails Component
   ========================================================================== */
.room-thumbnails-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.5rem;
    gap: 15px;
}

.room-thumbnails-slider {
    max-width: calc(100% - 100px);
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.room-thumbnails-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.room-thumbnails-track {
    display: flex;
    gap: 15px;
    padding: 5px;
}

.thumbnail-item {
    width: 120px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-luxury);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.thumbnail-item:hover img {
    opacity: 1;
    filter: none;
}

.thumbnail-item.active {
    border-color: var(--primary-terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.thumbnail-item.active img {
    opacity: 1;
    filter: none;
}

.thumb-control-btn {
    background: transparent;
    border: 1px solid rgba(28, 28, 28, 0.15);
    color: var(--dark-charcoal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.thumb-control-btn:hover {
    background-color: var(--primary-terracotta);
    border-color: var(--primary-terracotta);
    color: white;
}

.thumb-control-btn:focus {
    outline: none;
}

@media (max-width: 575.98px) {
    .thumbnail-item {
        width: 80px;
        height: 55px;
    }

    .thumb-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* Custom Accordion Styling for FAQ */
.accordion-luxury {
    --bs-accordion-bg: transparent;
    --bs-accordion-color: var(--dark-umber);
    --bs-accordion-border-color: rgba(238, 179, 69, 0.15);
    --bs-accordion-btn-color: var(--dark-charcoal);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-color: var(--primary-terracotta);
    --bs-accordion-active-bg: rgba(238, 179, 69, 0.03);
    border-radius: 0 !important;
}

.accordion-luxury .accordion-item {
    border-radius: 0 !important;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(238, 179, 69, 0.2);
    background-color: transparent;
}

.accordion-luxury .accordion-button {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: var(--transition-fast);
}

.accordion-luxury .accordion-button:not(.collapsed) {
    color: var(--primary-terracotta);
    background-color: rgba(238, 179, 69, 0.02);
}

.accordion-luxury .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-luxury .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EEB345'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-luxury .accordion-body {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5A5854;
    padding: 1.25rem;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-sticky i {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.whatsapp-sticky:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: white !important;
}

@media (max-width: 767.98px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}