/* ============================================
   DIMORA HERITAGE - Complete Stylesheet
   Premium Italian Heritage Hotels Directory
   ============================================ */

/* CSS Variables - Refined Luxury Palette */
:root {
    /* Colors */
    --ivory: #FFFCF7;
    --cream: #F9F5EF;
    --cream-dark: #E8DCC8;
    --sand: #E8DCC8;
    --bronze: #9B7653;
    --terracotta: #B8755E;
    --olive: #6B6F54;
    --charcoal: #2A261F;
    --gold: #C9A870;
    --white: #FFFFFF;
    --shadow: rgba(42, 38, 31, 0.04);
    --shadow-hover: rgba(42, 38, 31, 0.08);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #FFFCF7 0%, #FAF6F0 100%);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   HEADER
   ============================================ */

header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: box-shadow;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    color: var(--bronze);
    transform: scale(1.03);
}

nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 12px 0;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.header-cta {
    padding: 12px 28px;
    background: var(--bronze);
    color: var(--white) !important;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(155, 118, 83, 0.25);
}

.header-cta:hover {
    background: var(--gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(155, 118, 83, 0.35);
}

.header-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--bronze);
    transform: scale(1.1);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--bronze);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.05s;
}

nav a:hover,
nav a:focus {
    color: var(--bronze);
    opacity: 0.85;
    outline: none;
}

nav a:hover::after {
    width: 100%;
}

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

.hero {
    position: relative;
    background: linear-gradient(180deg, rgba(42, 38, 31, 0.3) 0%, rgba(42, 38, 31, 0.5) 100%), 
                url('https://images.unsplash.com/photo-1523531294919-4bcd7c65e216?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 75vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
    will-change: transform;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, transparent 1px, transparent 40px);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
    animation: heroContentSlide 1s ease-out 0.3s both;
}

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

.hero-content h1 {
    font-size: 54px;
    font-weight: 400;
    margin-bottom: 28px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    line-height: 1.2;
    animation: titleFloat 3s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(201, 168, 112, 0.15);
    border: 1px solid rgba(201, 168, 112, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 32px;
    animation: fadeInDown 1s ease-out;
}

.hero-badge svg {
    color: var(--gold);
}

.hero-badge span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.hero-content p {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

.btn-hero-primary {
    background: var(--bronze);
    padding: 20px 56px;
    font-size: 13px;
}

.btn-hero-primary::before {
    background: var(--bronze);
}

.btn-hero-primary:hover::before {
    background: var(--gold);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-feature strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.hero-feature span {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-indicator svg {
    animation: arrowBounce 2s infinite;
}

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

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

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(-2px) scale(1.02);
}

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

.btn-primary {
    background: var(--bronze);
    color: var(--white);
    padding: 14px 32px;
    min-width: 130px;
    border: 2px solid var(--bronze);
    font-weight: 700;
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 100% { box-shadow: 0 4px 15px rgba(155, 118, 83, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(155, 118, 83, 0.5); }
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
}

.btn-primary:hover::before {
    width: 350px;
    height: 350px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(155, 118, 83, 0.4);
    border-color: var(--gold);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.03);
}

.btn:hover,
.btn:focus {
    outline: none;
}

/* ============================================
   HOTELS SECTION
   ============================================ */

.hotels {
    padding: 70px 0 90px;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    color: var(--charcoal);
    letter-spacing: 1px;
    animation: titleReveal 0.8s ease-out;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        letter-spacing: 5px;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 1px;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: var(--olive);
    margin-bottom: 60px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    letter-spacing: 0.3px;
    animation: subtitleFade 1s ease-out 0.3s both;
}

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

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

/* Hotel Cards */
.hotel-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(42, 38, 31, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: cardFloat 3s ease-in-out infinite;
}

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

.hotel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hotel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(42, 38, 31, 0.15), 0 10px 20px rgba(155, 118, 83, 0.1);
    animation: none;
}

.hotel-card:active {
    transform: translateY(-12px) scale(1.01);
}

.hotel-card:hover::after {
    border-color: var(--gold);
    box-shadow: inset 0 0 20px rgba(201, 168, 112, 0.1);
}

.hotel-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: imageZoom 10s ease-in-out infinite;
}

@keyframes imageZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hotel-card:hover .hotel-image {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.1) contrast(1.05);
    animation: none;
}

.hotel-content {
    padding: 28px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--charcoal);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hotel-card:hover .hotel-name {
    color: var(--bronze);
    transform: translateX(4px);
}

.hotel-location {
    color: var(--bronze);
    font-size: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hotel-tagline {
    font-style: italic;
    color: var(--olive);
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

.hotel-description {
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 13px;
    font-weight: 300;
    opacity: 0.9;
    min-height: 90px;
    flex: 1;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    background: var(--cream);
    color: var(--charcoal);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid var(--sand);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: tagWave 3s ease-in-out infinite;
}

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

.amenity-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 112, 0.3), transparent);
    transition: left 0.5s ease;
}

.amenity-tag:hover::before {
    left: 100%;
}

.amenity-tag:hover {
    background: var(--bronze);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.3);
    animation: none;
}

.amenity-tag:active {
    transform: translateY(-1px) scale(1.02);
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(232, 220, 200, 0.4);
    margin-top: auto;
}

.price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--bronze);
    letter-spacing: 0.5px;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(155, 118, 83, 0.2);
    }
    50% { 
        text-shadow: 0 0 20px rgba(155, 118, 83, 0.4);
        transform: scale(1.02);
    }
}

.price span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--olive);
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* ============================================
   AD SPACES (AdSense Placeholders)
   ============================================ */

.ad-space {
    background: var(--cream);
    border: 1px solid rgba(155, 118, 83, 0.15);
    padding: 32px;
    text-align: center;
    margin: 40px 0;
    border-radius: 0;
    color: var(--olive);
    opacity: 0.6;
    font-style: italic;
    font-size: 14px;
}

.sidebar-ad {
    position: sticky;
    top: 90px;
    background: var(--cream);
    border: 1px solid rgba(155, 118, 83, 0.15);
    padding: 20px;
    text-align: center;
    border-radius: 0;
    color: var(--olive);
    opacity: 0.6;
    font-style: italic;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    margin-top: 40px;
}

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

footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, #1a1714 100%);
    color: var(--cream);
    padding: 60px 0 32px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineShine 3s ease-in-out infinite;
}

@keyframes lineShine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 4px;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.social-links {
    margin: 32px 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    color: var(--sand);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    display: inline-block;
}

.social-links a:hover,
.social-links a:focus {
    color: var(--gold);
    opacity: 1;
    transform: translateY(-5px) scale(1.2) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(201, 168, 112, 0.5));
}

footer p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

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

@media (max-width: 1024px) {
    .layout-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-ad {
        display: none;
    }

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

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
    }

    .hero {
        min-height: 65vh;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .btn-hero-primary {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        gap: 32px;
        flex-wrap: wrap;
    }
    
    .hero-feature strong {
        font-size: 32px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-badge {
        padding: 8px 16px;
    }
    
    .hero-badge span {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .hotels {
        padding: 50px 0 60px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hotel-card {
        border-radius: 6px;
    }

    .hotel-name {
        font-size: 20px;
    }

    .hotel-content {
        padding: 24px 20px 20px;
    }

    .hotel-image-wrapper {
        height: 220px;
    }

    .amenity-tag {
        padding: 5px 10px;
        font-size: 8px;
    }

    .price {
        font-size: 26px;
    }
    
    nav {
        display: none !important;
    }

    .logo {
        font-size: 22px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 10px;
    }

    .btn-primary {
        padding: 12px 24px;
    }

    footer {
        padding: 50px 0 28px;
        margin-top: 60px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .social-links {
        gap: 20px;
    }

    .social-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .hotels-grid {
        gap: 20px;
    }

    .hotel-image-wrapper {
        height: 200px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-content {
        justify-content: space-between;
    }

    .btn {
        padding: 18px 42px;
        font-size: 12px;
    }

    .filter-nav {
        gap: 8px;
        margin: 40px 0 56px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 10px;
    }

    .hotel-badge {
        top: 12px;
        left: 12px;
        padding: 6px 14px;
        font-size: 9px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
    }

    .stat-number {
        font-size: 42px;
    }

    .testimonial {
        padding: 60px 20px;
        margin: 60px 0;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .quick-view-btn {
        padding: 12px 24px;
        font-size: 10px;
    }

    .advanced-search-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .view-controls {
        justify-content: space-between;
    }

    .advanced-filter-btn {
        flex: 1;
        justify-content: center;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .filter-action-btn {
        width: 100%;
    }

    .map-view {
        flex-direction: column;
    }

    .map-properties-list {
        width: 100%;
        max-height: 400px;
    }

    .map-regions {
        grid-template-columns: 1fr;
    }

    .newsletter-section {
        padding: 60px 20px;
    }

    .newsletter-title {
        font-size: 36px;
    }

    .newsletter-subtitle {
        font-size: 15px;
    }

    .newsletter-form {
        padding: 32px 24px;
    }

    .newsletter-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .newsletter-btn {
        justify-content: center;
    }

    .newsletter-privacy {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.hotel-card {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both, cardFloat 3s ease-in-out infinite;
}

.hotel-card:nth-child(1) { animation-delay: 0.1s, 0s; }
.hotel-card:nth-child(2) { animation-delay: 0.2s, 0.2s; }
.hotel-card:nth-child(3) { animation-delay: 0.3s, 0.4s; }
.hotel-card:nth-child(4) { animation-delay: 0.4s, 0.6s; }
.hotel-card:nth-child(5) { animation-delay: 0.5s, 0.8s; }
.hotel-card:nth-child(6) { animation-delay: 0.6s, 1s; }
.hotel-card:nth-child(7) { animation-delay: 0.7s, 1.2s; }
.hotel-card:nth-child(8) { animation-delay: 0.8s, 1.4s; }
.hotel-card:nth-child(9) { animation-delay: 0.9s, 1.6s; }
.hotel-card:nth-child(10) { animation-delay: 1.0s, 1.8s; }
.hotel-card:nth-child(11) { animation-delay: 1.1s, 2.0s; }
.hotel-card:nth-child(12) { animation-delay: 1.2s, 2.2s; }

/* Smooth scroll improvements */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Fade-in sections on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading skeleton for images */
.hotel-image,
.collection-image {
    background: linear-gradient(90deg, var(--sand) 0%, var(--cream) 50%, var(--sand) 100%);
    background-size: 1000px 100%;
}

.hotel-image.loaded,
.collection-image.loaded {
    background: none;
}

/* Filter Navigation */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 56px 0 72px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid var(--sand);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bronze);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--bronze);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(155, 118, 83, 0.3);
}

.filter-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(155, 118, 83, 0.2);
}

/* Hotel Card Enhancements */
.hotel-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
    color: var(--white);
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}

.hotel-badge.luxury {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--bronze) 100%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-card:hover .image-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--charcoal);
    border: none;
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.hotel-card:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.quick-view-btn:hover {
    background: var(--white);
    transform: translateY(0) scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

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

.hotel-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-location svg {
    flex-shrink: 0;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

.hotel-rating svg {
    fill: var(--gold);
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.amenity-tag svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-note {
    font-size: 10px;
    color: var(--olive);
    opacity: 0.7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Smooth Card Filtering */
.hotel-card.hidden {
    display: none;
}

.hotel-card.filtered-out {
    animation: fadeOut 0.3s ease-out forwards;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 80px 0;
    background: var(--cream);
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-item {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 12px;
    color: var(--olive);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Testimonial Section */
.testimonial {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 0;
    margin: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 200px;
    color: rgba(201, 168, 112, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 32px;
    color: var(--gold);
}

.testimonial-author {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sand);
}

/* Advanced Search Bar */
.advanced-search-bar {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr auto;
    gap: 12px;
    margin: 48px 0 32px;
    align-items: center;
}

@media (max-width: 1024px) {
    .advanced-search-bar {
        grid-template-columns: 1fr 1fr;
    }
}

.search-wrapper {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--olive);
    opacity: 0.6;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 14px 48px 14px 48px;
    border: 1.5px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.search-input:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.15);
}

.search-input::placeholder {
    color: var(--olive);
    opacity: 0.6;
}

.search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--olive);
    cursor: pointer;
    padding: 4px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.search-clear:hover {
    opacity: 1;
    color: var(--bronze);
}

/* Date Picker */
.date-picker-wrapper {
    position: relative;
}

.calendar-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--olive);
    opacity: 0.6;
    pointer-events: none;
}

.date-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.date-input:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.15);
}

.date-input::placeholder {
    color: var(--olive);
    opacity: 0.6;
}

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

.sort-select {
    padding: 14px 40px 14px 16px;
    border: 1.5px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%236B6F54' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.sort-select:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.15);
}

.results-counter {
    text-align: center;
    font-size: 14px;
    color: var(--olive);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    font-weight: 300;
}

.results-counter span {
    font-weight: 600;
    color: var(--bronze);
}

/* View Toggle Tabs */
.view-toggle-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.view-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--white);
    border: 2px solid var(--sand);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bronze);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.view-tab svg,
.view-tab span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.view-tab:hover::before,
.view-tab.active::before {
    left: 0;
}

.view-tab:hover,
.view-tab.active {
    color: var(--white);
    border-color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 118, 83, 0.3);
}

.view-tab:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .view-toggle-tabs {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .view-tab {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
}

/* View Controls */
.view-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.view-toggle-btn {
    padding: 12px;
    background: var(--white);
    border: 1.5px solid var(--sand);
    color: var(--olive);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover,
.view-toggle-btn.active {
    background: var(--bronze);
    border-color: var(--bronze);
    color: var(--white);
}

.advanced-filter-btn {
    padding: 12px 20px;
    background: var(--white);
    border: 1.5px solid var(--sand);
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.advanced-filter-btn:hover {
    background: var(--cream);
    border-color: var(--bronze);
}

.advanced-filter-btn.active {
    background: var(--bronze);
    color: var(--white);
    border-color: var(--bronze);
}

/* Advanced Filters Panel */
.advanced-filters-panel {
    background: var(--white);
    border: 1.5px solid var(--sand);
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(42, 38, 31, 0.06);
}

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

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
}

/* Price Range Slider */
.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: var(--bronze);
    margin-bottom: 8px;
}

.price-slider-container {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--sand);
    border-radius: 2px;
}

.price-slider {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    pointer-events: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--bronze);
    border: 3px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(42, 38, 31, 0.2);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    background: var(--gold);
    transform: scale(1.15);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--bronze);
    border: 3px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(42, 38, 31, 0.2);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--bronze);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--bronze);
}

/* Filter Actions */
.filter-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--sand);
}

.filter-action-btn {
    padding: 12px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.clear-btn {
    background: transparent;
    color: var(--olive);
    border: 1.5px solid var(--sand);
}

.clear-btn:hover {
    background: var(--cream);
    border-color: var(--bronze);
}

.apply-btn {
    background: var(--bronze);
    color: var(--white);
}

.apply-btn:hover {
    background: var(--gold);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.3);
}

/* Map View */
.map-view {
    width: 100%;
    display: flex;
    gap: 24px;
}

.map-container {
    flex: 1;
    background: var(--white);
    border: 1.5px solid var(--sand);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 48px;
    max-width: 500px;
}

.map-placeholder svg {
    color: var(--bronze);
    opacity: 0.4;
    margin-bottom: 24px;
}

.map-placeholder h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.map-placeholder p {
    color: var(--olive);
    margin-bottom: 32px;
}

.map-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.map-region-btn {
    padding: 16px 20px;
    background: var(--cream);
    border: 1.5px solid var(--sand);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.map-region-btn:hover {
    background: var(--bronze);
    color: var(--white);
    border-color: var(--bronze);
    transform: translateY(-2px);
}

.region-pin {
    font-size: 16px;
}

.map-note {
    font-size: 12px;
    color: var(--olive);
    font-style: italic;
}

.map-properties-list {
    width: 350px;
    background: var(--white);
    border: 1.5px solid var(--sand);
    padding: 24px;
    max-height: 600px;
    overflow-y: auto;
}

.map-property-card {
    padding: 16px;
    border-bottom: 1px solid var(--sand);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-property-card:hover {
    background: var(--cream);
}

.map-property-card:last-child {
    border-bottom: none;
}

.map-property-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.map-property-location {
    font-size: 12px;
    color: var(--bronze);
    margin-bottom: 8px;
}

.map-property-price {
    font-size: 14px;
    color: var(--olive);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    padding: 100px 0;
    margin: 100px 0 0;
}

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

.newsletter-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: var(--olive);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    background: var(--white);
    padding: 48px;
    box-shadow: 0 8px 32px rgba(42, 38, 31, 0.08);
}

.newsletter-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
}

.newsletter-input {
    padding: 16px 20px;
    border: 1.5px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.15);
}

.newsletter-input::placeholder {
    color: var(--olive);
    opacity: 0.6;
}

.newsletter-btn {
    padding: 16px 40px;
    background: var(--bronze);
    color: var(--white);
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--gold);
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(155, 118, 83, 0.35);
}

.newsletter-btn:active {
    transform: translateX(3px) scale(0.98);
}

.btn-arrow {
    transition: transform 0.4s ease;
}

.newsletter-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--olive);
    margin-top: 16px;
}

.newsletter-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--bronze);
}

.newsletter-privacy label {
    cursor: pointer;
}

.newsletter-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(155, 118, 83, 0.1);
    border: 1px solid var(--bronze);
    color: var(--bronze);
    font-weight: 500;
    margin-top: 20px;
}

.newsletter-success svg {
    flex-shrink: 0;
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--bronze);
    outline-offset: 3px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--terracotta);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BOOKING WIDGET
   ============================================ */

.booking-widget {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    border: 2px solid var(--sand);
    padding: 48px;
    margin: 56px 0;
    box-shadow: 0 12px 40px rgba(42, 38, 31, 0.08);
    position: relative;
    overflow: hidden;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bronze), var(--gold), var(--bronze));
}

.booking-widget-content {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 32px;
}

.booking-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.booking-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.booking-input-wrapper svg {
    position: absolute;
    left: 14px;
    color: var(--olive);
    opacity: 0.7;
    pointer-events: none;
}

.booking-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid var(--sand);
    background: var(--white);
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-input:focus {
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 4px 16px rgba(155, 118, 83, 0.15);
    transform: translateY(-2px);
}

.booking-input:hover {
    border-color: var(--bronze);
}

.booking-search-btn {
    padding: 14px 40px;
    background: var(--bronze);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(155, 118, 83, 0.25);
}

.booking-search-btn:hover {
    background: var(--gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(155, 118, 83, 0.35);
}

.booking-search-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid var(--sand);
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bronze);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.quick-action-btn svg,
.quick-action-btn span {
    position: relative;
    z-index: 1;
}

.quick-action-btn:hover::before {
    left: 0;
}

.quick-action-btn:hover {
    color: var(--white);
    border-color: var(--bronze);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 118, 83, 0.25);
}

@media (max-width: 1200px) {
    .booking-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .booking-search-btn {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .booking-widget {
        padding: 32px 24px;
        margin: 40px 0;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   HOTELS CAROUSEL SECTION (3 PER VIEW)
   ============================================ */

.hotels-carousel-section {
    margin: 60px 0 80px;
    position: relative;
}

.hotels-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.hotels-carousel-track-wrapper {
    overflow: hidden;
    position: relative;
}

.hotels-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hotels-carousel-track .hotel-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 380px;
    animation: none;
    opacity: 1;
}

.hotels-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(42, 38, 31, 0.12);
    z-index: 10;
    color: var(--charcoal);
    border-radius: 50%;
}

.hotels-carousel-nav:hover {
    background: var(--bronze);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(155, 118, 83, 0.35);
    transform: translateY(-50%) scale(1.12);
}

.hotels-carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

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

.hotels-carousel-nav:disabled:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-50%) scale(1);
}

.hotels-carousel-prev {
    left: 0;
}

.hotels-carousel-next {
    right: 0;
}

.hotels-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.hotels-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sand);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hotels-carousel-dot:hover {
    background: var(--bronze);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(155, 118, 83, 0.4);
}

.hotels-carousel-dot.active {
    background: var(--bronze);
    width: 32px;
    border-radius: 5px;
}

/* Responsive Hotels Carousel */
@media (max-width: 1200px) {
    .hotels-carousel-track .hotel-card {
        flex: 0 0 calc(50% - 16px);
        min-width: 350px;
    }
    
    .hotels-carousel-container {
        padding: 0 75px;
    }
}

@media (max-width: 1024px) {
    .hotels-carousel-track .hotel-card {
        flex: 0 0 calc(50% - 16px);
        min-width: 320px;
    }
    
    .hotels-carousel-container {
        padding: 0 70px;
    }
    
    .hotels-carousel-nav {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .hotels-carousel-section {
        margin: 40px 0 60px;
    }
    
    .hotels-carousel-container {
        padding: 0 60px;
    }
    
    .hotels-carousel-track .hotel-card {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .hotels-carousel-nav {
        width: 44px;
        height: 44px;
    }
    
    .hotels-carousel-dots {
        margin-top: 36px;
    }
}

@media (max-width: 480px) {
    .hotels-carousel-container {
        padding: 0 50px;
    }
    
    .hotels-carousel-nav {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   COLLECTIONS CAROUSEL SECTION
   ============================================ */

.collections-section {
    margin: 80px 0 100px;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
    position: relative;
}

.collections-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.collections-subtitle {
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    color: var(--olive);
    margin-bottom: 64px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

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

.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.collection-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: 380px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.collection-card:hover {
    transform: translateY(-8px);
}

.collection-image-wrapper {
    position: relative;
    height: 520px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(42, 38, 31, 0.15);
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.collection-card:hover .collection-image {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(42, 38, 31, 0.85) 0%, rgba(42, 38, 31, 0.3) 50%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 48px;
    transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(0deg, rgba(42, 38, 31, 0.92) 0%, rgba(42, 38, 31, 0.5) 60%, rgba(42, 38, 31, 0.2) 85%);
}

.collection-content {
    width: 100%;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(201, 168, 112, 0.15);
    border: 1px solid rgba(201, 168, 112, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.collection-card:hover .collection-count {
    background: rgba(201, 168, 112, 0.25);
    border-color: rgba(201, 168, 112, 0.5);
    transform: scale(1.05);
}

.collection-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-name {
    transform: translateY(-4px);
    letter-spacing: 1px;
}

.collection-description {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.collection-card:hover .collection-description {
    opacity: 1;
    transform: translateY(0);
}

.collection-btn {
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.collection-card:hover .collection-btn {
    opacity: 1;
    transform: translateY(0);
}

.collection-btn:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.collection-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(42, 38, 31, 0.12);
    z-index: 10;
    color: var(--charcoal);
}

.carousel-nav:hover {
    background: var(--bronze);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(155, 118, 83, 0.35);
    transform: translateY(-50%) scale(1.12);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

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

.carousel-nav:disabled:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-50%) scale(1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sand);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--bronze);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(155, 118, 83, 0.4);
}

.carousel-dot.active {
    background: var(--bronze);
    width: 32px;
    border-radius: 5px;
}

/* Smooth scrolling for carousel */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }
    
    .collection-image,
    .collection-card {
        transition: none;
    }
}

/* Responsive Collections Carousel */
@media (max-width: 1200px) {
    .collection-card {
        flex: 0 0 calc(50% - 16px);
        min-width: 350px;
    }
    
    .carousel-container {
        padding: 0 75px;
    }
}

@media (max-width: 1024px) {
    .collection-card {
        flex: 0 0 calc(50% - 16px);
        min-width: 320px;
    }
    
    .carousel-container {
        padding: 0 70px;
    }
    
    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    
    .collection-image-wrapper {
        height: 480px;
    }
    
    .collection-name {
        font-size: 32px;
    }
    
    .collection-overlay {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .collections-section {
        padding: 60px 0;
        margin: 60px 0 80px;
    }
    
    .collections-title {
        font-size: 36px;
    }
    
    .collections-subtitle {
        font-size: 15px;
        margin-bottom: 48px;
    }
    
    .carousel-container {
        padding: 0 60px;
    }
    
    .collection-card {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .collection-image-wrapper {
        height: 520px;
    }
    
    .collection-overlay {
        padding: 32px;
    }
    
    .collection-name {
        font-size: 28px;
    }
    
    .collection-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
    }
    
    .carousel-dots {
        margin-top: 36px;
    }
    
    .collection-description,
    .collection-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .collection-overlay {
        padding: 24px;
    }
    
    .collection-name {
        font-size: 24px;
    }
}

/* ============================================
   VALUE BANNER
   ============================================ */

.value-banner {
    background: var(--white);
    padding: 48px 0;
    border-bottom: 1px solid var(--sand);
}

.value-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--ivory);
    border: 1px solid var(--sand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 38, 31, 0.1);
    border-color: var(--bronze);
}

.value-item svg {
    flex-shrink: 0;
    color: var(--bronze);
    transition: all 0.4s ease;
}

.value-item:hover svg {
    color: var(--gold);
    transform: scale(1.1);
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.value-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.3px;
}

.value-text span {
    font-size: 13px;
    color: var(--olive);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .value-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .value-banner {
        padding: 32px 0;
    }
    
    .value-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-item {
        padding: 20px;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header,
.section-header-center {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(155, 118, 83, 0.08);
    border: 1px solid rgba(155, 118, 83, 0.2);
}

.section-header .section-title,
.section-header-center .section-title,
.section-header-center .collections-title {
    margin-top: 16px;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(42, 38, 31, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    background: var(--ivory);
    height: 100%;
    padding: 80px 40px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--bronze);
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--sand);
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--bronze);
    padding-left: 12px;
}

.mobile-cta {
    padding: 20px;
    background: var(--bronze);
    color: var(--white) !important;
    border-radius: 8px;
    margin-top: 24px;
    border: none !important;
    text-align: center;
    font-weight: 600;
    font-size: 16px !important;
}

.mobile-cta:hover {
    background: var(--gold);
    padding-left: 20px !important;
    transform: scale(1.02);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

.mobile-menu-footer p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    color: var(--olive);
    font-style: italic;
}

/* ============================================
   TRUST & SECURITY SECTION
   ============================================ */

.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.trust-badge {
    text-align: center;
    padding: 32px 24px;
    background: var(--ivory);
    border: 1px solid var(--sand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bronze);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover::before {
    transform: scaleX(1);
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(42, 38, 31, 0.12);
    border-color: var(--bronze);
}

.trust-badge svg {
    color: var(--bronze);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover svg {
    transform: scale(1.1);
    color: var(--gold);
}

.trust-badge h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.trust-badge p {
    font-size: 13px;
    color: var(--olive);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-badge {
        padding: 24px 20px;
    }
}

/* ============================================
   BOOKING MODAL
   ============================================ */

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.show {
    opacity: 1;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 38, 31, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.booking-modal-content {
    position: relative;
    background: var(--white);
    max-width: 600px;
    width: 90%;
    padding: 48px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal.show .booking-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--cream);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--bronze);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.booking-summary {
    background: var(--cream);
    padding: 32px;
    margin-bottom: 32px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 15px;
}

.summary-row span {
    color: var(--olive);
}

.summary-row strong {
    color: var(--charcoal);
    font-weight: 600;
}

.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
    margin: 16px 0;
}

.summary-row.total {
    font-size: 18px;
    padding: 16px 0 0;
}

.summary-row.total strong {
    color: var(--bronze);
    font-size: 28px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.modal-actions {
    display: flex;
    gap: 16px;
}

.modal-btn {
    flex: 1;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--sand);
}

.modal-btn-secondary:hover {
    background: var(--cream);
    border-color: var(--bronze);
    transform: translateY(-2px);
}

.modal-btn-primary {
    background: var(--bronze);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(155, 118, 83, 0.3);
}

.modal-btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(155, 118, 83, 0.4);
}

@media (max-width: 768px) {
    .booking-modal-content {
        padding: 32px 24px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .booking-summary {
        padding: 24px;
    }
}

/* ============================================
   BOOKING NOTIFICATION
   ============================================ */

.booking-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    width: 380px;
    background: var(--white);
    border-left: 4px solid var(--bronze);
    box-shadow: 0 8px 32px rgba(42, 38, 31, 0.15);
    padding: 20px 24px;
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.booking-notification.show {
    right: 32px;
}

.booking-notification.success {
    border-left-color: #4CAF50;
}

.booking-notification.warning {
    border-left-color: #FF9800;
}

.booking-notification.info {
    border-left-color: var(--bronze);
}

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

.notification-content svg {
    flex-shrink: 0;
    color: var(--bronze);
}

.booking-notification.success .notification-content svg {
    color: #4CAF50;
}

.booking-notification.warning .notification-content svg {
    color: #FF9800;
}

.notification-content span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--charcoal);
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--olive);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.notification-close:hover {
    background: var(--cream);
    color: var(--bronze);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .booking-notification {
        width: calc(100% - 32px);
        right: -100%;
        left: auto;
    }
    
    .booking-notification.show {
        right: 16px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .ad-space,
    .sidebar-ad,
    nav,
    footer,
    .collections-section {
        display: none;
    }
    
    .hotel-card {
        page-break-inside: avoid;
    }
}
