/* ============================================
   AVTAR HOTELS - LUXURY WEBSITE STYLESHEET
   Inspired by ITC Hotels & Taj Properties
   ============================================ */

:root {
    /* Color Palette - Inspired by ITC/Taj luxury themes */
    --primary-burgundy: #7a1a1a;
    --primary-gold: #c8a882;
    --secondary-cream: #f5f1e8;
    --accent-bronze: #8b6f47;
    --dark-brown: #3d2817;
    --light-gold: #e6d4b8;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f7f5;
    --gray-medium: #8b8680;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-subtitle.light {
    color: var(--light-gold);
}

.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-large,
.btn-outline-large,
.btn-outline-light {
    font-family: var(--font-body);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-burgundy);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 2px;
}

.btn-primary:hover {
    background: #5d1313;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-gold);
    border-radius: 2px;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-primary-large {
    background: var(--primary-burgundy);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border-radius: 2px;
    font-size: 1rem;
}

.btn-primary-large:hover {
    background: #5d1313;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-large {
    background: transparent;
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border: 2px solid var(--white);
    border-radius: 2px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-large:hover {
    background: var(--white);
    color: var(--primary-burgundy);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 2px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-burgundy);
}

/* ============================================
   BOOKING BAR (STICKY)
   ============================================ */

.booking-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #e0dbd3;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
}

.booking-bar.visible {
    transform: translateY(0);
}

.booking-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.booking-fields {
    display: flex;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
}

.field-group {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.field-group label {
    font-size: 0.75rem;
    color: var(--gray-medium);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-input,
.select-input,
.promo-input {
    padding: 0.625rem;
    border: 1px solid #d4cfc7;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: border var(--transition-fast);
}

.date-input:focus,
.select-input:focus,
.promo-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.book-direct-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 99;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200, 168, 130, 0.2);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    letter-spacing: 3px;
}

.logo-subtitle {
    display: block;
    font-size: 0.625rem;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-burgundy);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-currency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.lang-select,
.currency-select {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
}

.divider {
    color: var(--gray-medium);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-burgundy);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c1810 0%, #5d4e37 50%, #8b6f47 100%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    margin-bottom: 0.5rem;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Fade-in animations */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

/* ============================================
   WHY BOOK DIRECT
   ============================================ */

.why-book-direct {
    background: var(--gray-light);
    padding: 3rem 0;
    border-bottom: 1px solid #e0dbd3;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.perk-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform var(--transition-medium);
}

.perk-card:hover {
    transform: translateY(-5px);
}

.perk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perk-card h3 {
    font-size: 1.125rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.perk-card p {
    color: var(--gray-medium);
    font-size: 0.875rem;
}

/* ============================================
   ACCOMMODATIONS
   ============================================ */

.accommodations {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
}

.room-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-burgundy);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.room-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-placeholder {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
}

.room-card:hover .room-placeholder {
    transform: scale(1.05);
}

.placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-burgundy);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-badge.premium {
    background: var(--primary-gold);
    color: var(--white);
}

.room-badge.signature {
    background: var(--dark-brown);
    color: var(--light-gold);
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.room-details {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.room-description {
    color: var(--black);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.room-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.375rem 0.75rem;
    background: var(--gray-light);
    border: 1px solid #e0dbd3;
    font-size: 0.75rem;
    border-radius: 2px;
    color: var(--gray-medium);
}

.room-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0dbd3;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    font-family: var(--font-display);
}

.price-period {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.btn-view {
    padding: 0.625rem 1.25rem;
    background: var(--primary-burgundy);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btn-view:hover {
    background: #5d1313;
}

/* ============================================
   VIRTUAL TOUR
   ============================================ */

.virtual-tour {
    background: var(--secondary-cream);
    padding: var(--spacing-xl) 0;
}

.tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tour-text {
    padding-right: 2rem;
}

.tour-description {
    font-size: 1.0625rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tour-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-size: 0.9375rem;
}

.tour-features svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.tour-visual {
    position: relative;
}

.tour-placeholder {
    height: 450px;
    background: linear-gradient(135deg, #5d4e37 0%, #8b6f47 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.vr-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tour-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================
   DINING
   ============================================ */

.dining {
    padding: var(--spacing-xl) 0;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.dining-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.dining-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.dining-image {
    position: relative;
}

.dining-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dining-placeholder .placeholder-text {
    color: var(--white);
    font-size: 1.75rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.dining-content {
    padding: 1.5rem;
}

.dining-content h3 {
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
}

.dining-cuisine {
    color: var(--primary-gold);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dining-description {
    color: var(--gray-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dining-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0dbd3;
}

.dining-hours {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.btn-book-table {
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--primary-burgundy);
    border: 1px solid var(--primary-burgundy);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btn-book-table:hover {
    background: var(--primary-burgundy);
    color: var(--white);
}

/* ============================================
   WELLNESS & SPA
   ============================================ */

.wellness {
    background: linear-gradient(135deg, #2c1810 0%, #5d4e37 100%);
    padding: 0;
}

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

.wellness-text {
    padding: var(--spacing-xl) 0;
    color: var(--white);
}

.wellness-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.wellness-features {
    margin-bottom: 2.5rem;
}

.wellness-feature {
    margin-bottom: 2rem;
}

.wellness-feature h4 {
    font-size: 1.125rem;
    color: var(--light-gold);
    margin-bottom: 0.5rem;
}

.wellness-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.wellness-visual {
    position: relative;
}

.wellness-placeholder {
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.3) 0%, rgba(93, 78, 55, 0.3) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%238b6f47" width="100" height="100"/></svg>');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wellness-placeholder .placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-display);
}

/* ============================================
   EXPERIENCES
   ============================================ */

.experiences {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.experience-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.exp-tab {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-burgundy);
    border: 1px solid var(--primary-gold);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.exp-tab:hover,
.exp-tab.active {
    background: var(--primary-burgundy);
    color: var(--white);
    border-color: var(--primary-burgundy);
}

.experience-content {
    transition: opacity var(--transition-medium);
}

.experience-content.hidden {
    display: none;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.exp-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.exp-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exp-card h3 {
    font-size: 1.25rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.75rem;
}

.exp-card p {
    color: var(--gray-medium);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ============================================
   MEETINGS & EVENTS
   ============================================ */

.meetings {
    padding: var(--spacing-xl) 0;
}

.meetings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.meetings-visual {
    position: relative;
}

.meetings-placeholder {
    height: 500px;
    background: linear-gradient(135deg, #3d2817 0%, #5d4e37 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meetings-placeholder .placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.meetings-description {
    font-size: 1.0625rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.meetings-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    font-family: var(--font-display);
    line-height: 1;
}

.feature-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meeting-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.amenity {
    color: var(--black);
    font-size: 0.9375rem;
}

/* ============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================ */

.social-proof {
    padding: var(--spacing-xl) 0;
    background: var(--secondary-cream);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.platform-rating {
    text-align: center;
}

.platform-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.review-count {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

/* ============================================
   SUSTAINABILITY
   ============================================ */

.sustainability {
    background: linear-gradient(135deg, #2c5530 0%, #1a3d1f 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--white);
}

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

.sustainability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.sustainability-badge p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.sustainability-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.sustainability-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--light-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: var(--gray-light);
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #d4cfc7;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: var(--gray-medium);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-brown);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 2rem;
    color: var(--light-gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.125rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--primary-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal p {
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.legal-links a:hover {
    color: var(--primary-gold);
}

.legal-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-certifications {
    display: flex;
    gap: 0.75rem;
}

.cert-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--light-gold);
}

/* ============================================
   CHATBOT
   ============================================ */

.chatbot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 360px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chatbot-header {
    background: var(--primary-burgundy);
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.chatbot-icon {
    font-size: 1.5rem;
}

.chatbot-header span {
    font-weight: 600;
    font-size: 1rem;
}

.chatbot-body {
    display: none;
    flex-direction: column;
    height: 400px;
}

.chatbot-body.active {
    display: flex;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: var(--gray-light);
}

.bot-message {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.bot-message p {
    font-size: 0.9375rem;
    color: var(--black);
}

.user-message {
    background: var(--primary-burgundy);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    margin-left: auto;
    max-width: 80%;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #e0dbd3;
    background: var(--white);
}

.chat-input input {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #d4cfc7;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.chat-input button {
    margin-left: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--primary-burgundy);
    border: none;
    border-radius: 2px;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.chat-input button:hover {
    background: #5d1313;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-content,
    .meetings-layout,
    .wellness-content {
        grid-template-columns: 1fr;
    }
    
    .wellness-visual {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left var(--transition-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .booking-bar {
        position: relative;
        transform: translateY(0);
    }
    
    .booking-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .booking-fields {
        flex-direction: column;
    }
    
    .field-group {
        width: 100%;
    }
    
    .rooms-grid,
    .dining-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .chatbot {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-large,
    .btn-outline-large {
        width: 100%;
    }
    
    .container {
        padding: 0 1rem;
    }
}
