/* ==========================================================================
   DESIGN TOKENS & STYLE VARIABLE DEFINITIONS
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #D4AF37;           /* Warm Classic Champagne Gold */
    --primary-dark: #A67C43;      /* Deep Burnished Gold/Bronze */
    --primary-light: #FBF6E9;     /* Cream Gold Wash */
    --secondary: #E6C8CE;         /* Soft Pastel Rose Outline */
    --bg-dark: #4A121A;           /* Luxury Rich Deep Maroon */
    --bg-dark-accent: #340B10;    /* Dark Velvet Burgundy */
    --bg-light: #FDFBF7;          /* Classic Warm Pearl/Cream */
    --bg-light-accent: #FAF0F1;   /* Pale Rosy Blush Background */
    --text-main: #3A1E22;         /* Deep Charcoal with Maroon Undertone */
    --text-muted: #6C4E53;        /* Muted Mahogany Rose Grey */
    --text-light: #FDFBF7;        /* Pearl White for Dark Backgrounds */
    --border-color: #EAD0D5;      /* Rose Gold Border tint */
    --success: #5D8C62;           /* Sage Green */
    
    /* Typography */
    --font-title: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Box Shadows */
    --shadow-sm: 0 4px 12px rgba(58, 30, 34, 0.05);
    --shadow-md: 0 12px 30px rgba(58, 30, 34, 0.08);
    --shadow-lg: 0 20px 50px rgba(58, 30, 34, 0.15);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
    
    /* Border Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE CONFIGURATIONS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==========================================================================
   COMMON LAYOUTS & UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--bg-dark-accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 18, 26, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-dark-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    width: 100%;
}

/* Section Header Typography */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-dark);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--bg-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* ==========================================================================
   TOP BAR INFO PANEL
   ========================================================================== */
.top-bar {
    background-color: var(--bg-dark-accent);
    color: var(--primary);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 500;
}

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

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .top-bar-container {
        justify-content: center;
        text-align: center;
        font-size: 10px;
    }
}

/* ==========================================================================
   NAVIGATION STICKY HEADER
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
    background-color: var(--bg-light);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-fast);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(58, 30, 34, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}

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

@media (max-width: 480px) {
    .logo-img {
        height: 46px;
    }
    .main-header.scrolled .logo-img {
        height: 40px;
    }
    .header-container {
        height: 70px;
    }
    .main-header.scrolled .header-container {
        height: 60px;
    }
}

.logo-text {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--bg-dark);
    font-weight: 700;
    text-shadow: 1px 1px 0px rgba(212, 175, 55, 0.2);
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-left: 2px;
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--bg-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-book {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--bg-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hamburger transition to close cross symbol */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(52, 11, 16, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-smooth);
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: rgba(253, 251, 247, 0.85);
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid rgba(253, 251, 247, 0.08);
        padding-bottom: 8px;
    }
    
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        color: var(--primary);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .btn-book {
        width: 100%;
        margin-top: 15px;
        background-color: var(--primary);
        color: var(--bg-dark-accent);
        border: 1px solid var(--primary);
    }
    
    .btn-book:hover {
        background-color: var(--primary-dark);
        color: var(--text-light);
    }
    
    .hamburger-menu.active .bar {
        background-color: var(--primary);
    }
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 160px 0 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(52, 11, 16, 0.95) 0%, rgba(52, 11, 16, 0.8) 45%, rgba(52, 11, 16, 0.4) 75%, rgba(52, 11, 16, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    margin-top: -74px;
}

.hero-content {
    max-width: 700px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(253, 251, 247, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.experience-badge .stars {
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.experience-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(to right, #FFFFFF 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.15rem;
    color: rgba(253, 251, 247, 0.85);
    margin-bottom: 40px;
    line-height: 1.65;
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px 0;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
                margin-top: -16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ==========================================================================
   BRAND SHOWCASE SECTION
   ========================================================================== */
.brand-showcase-section {
    padding: 80px 0 40px 0;
    background-color: var(--bg-light);
}

.showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--bg-dark-accent);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.showcase-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark-accent);
    padding: 30px;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.showcase-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-img {
    transform: scale(1.02);
}

.showcase-content {
    padding: 50px;
    color: var(--text-light);
}

.showcase-content .subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.showcase-content h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.showcase-content p {
    color: rgba(253, 251, 247, 0.8);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .showcase-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .showcase-content {
        padding: 40px 24px;
    }
    
    .showcase-img-wrapper {
        height: 250px;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 20px;
    }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light-accent);
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.heritage-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bg-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-round);
    background-color: var(--bg-dark);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.about-visual {
    background-color: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.rating-badge-large {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(253, 251, 247, 0.15);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.rating-badge-large .rating-num {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.rating-badge-large .rating-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-badge-large .stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-badge-large .rating-lbl {
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.7);
    font-weight: 500;
}

.about-quote {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(253, 251, 247, 0.9);
}

.about-quote cite {
    display: block;
    margin-top: 15px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   SERVICES CATALOG SECTION
   ========================================================================== */
.services-section {
    padding: 85px 0;
    background-color: var(--bg-light);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .services-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px 0 15px 0;
        margin-bottom: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .services-tabs::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        flex-shrink: 0;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

.tab-btn {
    background-color: var(--bg-light-accent);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.tab-btn.active {
    background-color: var(--bg-dark);
    color: var(--primary);
    border-color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(74, 18, 26, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    opacity: 1;
    transition: opacity var(--transition-fast);
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    padding: 4px 10px;
    border-radius: 4px;
}

.service-price {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-dark);
    letter-spacing: 0.5px;
}

.service-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-card-book {
    align-self: flex-start;
    background-color: transparent;
    color: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-card-book:hover {
    background-color: var(--bg-dark);
    color: var(--primary);
    border-color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(74, 18, 26, 0.15);
}

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

/* ==========================================================================
   PHOTO GLIMPSE GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light-accent);
}

.gallery-carousel-container {
    position: relative;
    width: 100%;
}

.gallery-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari/Edge */
}

.gallery-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

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

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

.gallery-info {
    padding: 24px;
}

.gallery-info h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Nav Buttons on Carousels */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--bg-dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
    background-color: var(--bg-dark);
    color: var(--primary);
    border-color: var(--bg-dark);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--bg-dark);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .gallery-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .carousel-nav-btn {
        display: none;
    }
}

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

/* ==========================================================================
   TESTIMONIALS REVIEW SECTION
   ========================================================================== */
.testimonials-section {
    padding: 85px 0;
    background-color: var(--bg-light);
}

.testimonials-carousel-container {
    position: relative;
    width: 100%;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background-color: var(--bg-light-accent);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    color: var(--primary-dark);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.client-name {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--bg-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.client-location {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   CONTACT US SECTION & GOOGLE MAPS LINK
   ========================================================================== */
.contact-section {
    padding: 85px 0;
    background-color: var(--bg-light-accent);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.contact-info-block p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background-color: var(--bg-dark);
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 18, 26, 0.15);
}

.contact-detail-item h4 {
    font-size: 1.1rem;
    color: var(--bg-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-detail-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-link {
    font-weight: 700;
    color: var(--bg-dark);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-directions-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-dark);
    transition: var(--transition-fast);
}

.btn-directions-link:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

/* Form Styles */
.contact-form-block {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-block h3 {
    font-family: var(--font-title);
    font-size: 1.75rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.contact-form-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-light-accent);
    outline: none;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--bg-dark);
    background-color: var(--bg-light);
    box-shadow: 0 0 0 3px rgba(74, 18, 26, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   MINIMAL FOOTER SECTION
   ========================================================================== */
.minimal-footer {
    background-color: var(--bg-dark-accent);
    color: var(--text-light);
    padding: 60px 0 30px 0;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.footer-tag {
    font-size: 0.95rem;
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.85);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.5);
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    padding-top: 24px;
    width: 100%;
}

/* Back to top scroll button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background-color: var(--primary);
    color: var(--bg-dark-accent);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--bg-dark);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   BOOKING RESERVATION MODAL OVERLAY
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 11, 16, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.modal-content {
    background-color: var(--bg-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 550px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    overflow-y: auto;
    max-height: 90vh;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-round);
    background-color: var(--bg-light-accent);
    border: none;
    color: var(--bg-dark);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--bg-dark);
    color: var(--primary);
}

.modal-content h2 {
    font-family: var(--font-title);
    font-size: 1.85rem;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

@media (max-width: 500px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   TOAST FEEDBACK ALERTS
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100000;
    background-color: var(--bg-dark);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.toast-notification.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-weight: 700;
    font-size: 1.2rem;
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* ==========================================================================
   SCROLL REVEAL TRIGGERS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}
