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

:root {
    /* Airbnb Official Color Palette 2025 */
    --white: #FFFFFF;
    --off-white: #F7F7F7;
    --coral: #FF385C;           /* Airbnb Radical Red - Primary brand */
    --coral-hover: #FF5A5F;     /* Airbnb Rausch - Hover state */
    --dark-gray: #222222;       /* Airbnb Mine Shaft - Text */
    --medium-gray: #767676;     /* Airbnb Foggy - Secondary text */
    --hof-gray: #484848;        /* Airbnb Hof - Dark UI */
    --light-gray: #F7F7F7;
    --border-gray: #DDDDDD;
    --teal-accent: #00A699;     /* Airbnb Babu - Teal accent */
    --orange-accent: #FC642D;   /* Airbnb Arches - Orange accent */
    --light-gray-booked: #E0E0E0;
    
    /* Typography - Airbnb uses Circular, fallback to similar */
    --font-serif: 'Playfair Display', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-cta: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --mobile-padding: 40px 0;
    
    /* Animations */
    --transition-smooth: 0.3s ease;
    --transition-fast: 0.2s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography - Airbnb Style */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.section-title {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--coral);
    margin: 1rem auto;
    border-radius: 1px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-book {
    font-family: var(--font-cta);
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    font-size: 1rem;
    min-height: 48px;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.btn-primary:hover {
    background: var(--coral-hover);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: white;
    color: var(--dark-gray);
    border: 2px solid var(--coral);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.btn-book {
    background: var(--coral);
    color: white;
    width: 100%;
    font-size: 0.95rem;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(255, 90, 95, 0.25);
    border-radius: 6px;
}

.btn-book:hover:not(.disabled) {
    background: var(--coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.btn-book.disabled {
    background: var(--light-gray-booked);
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-book:not(.disabled) {
    text-decoration: none;
    display: inline-block;
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 2px 8px rgba(255, 90, 95, 0.25); }
    50% { box-shadow: 0 4px 16px rgba(255, 90, 95, 0.35); }
    100% { box-shadow: 0 2px 8px rgba(255, 90, 95, 0.25); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid var(--border-gray);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding: 10px 0;
}

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

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


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero-section {
    width: 100%;
    margin-top: 70px;
    position: relative;
    min-height: calc(100vh - 70px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-main {
    padding: 2rem 0;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #f0f8ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.highlight-text {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: center;
}

.hero-booking {
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

.booking-widget {
    width: 100%;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
}

.booking-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.form-group input,
.form-group select {
    padding: 8px 10px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    background: white;
    min-height: 38px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
}

.date-error {
    font-size: 0.75rem;
    color: var(--coral);
    margin-top: 0.25rem;
    display: none;
}

.date-error.show {
    display: block;
}

.price-display {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin: 1rem 0;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral);
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.booking-guarantee {
    text-align: center;
    margin-top: 1rem;
}

.guarantee-badge {
    background: var(--medium-gray);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.booking-alternatives {
    margin-top: 1rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.booking-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.contact-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.contact-btn {
    background: var(--medium-gray);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.contact-btn:hover {
    background: var(--dark-gray);
    transform: translateY(-1px);
}

.booking-contact {
    margin-top: 1rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-option {
    background: var(--coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    min-width: 150px;
    justify-content: center;
}

.contact-option:hover {
    background: var(--coral-hover);
    transform: translateY(-1px);
}

/* Value Proposition Section */
.value-proposition {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.large-card {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--coral), var(--medium-gray));
    color: white;
    text-align: center;
}

.medium-card {
    grid-column: span 2;
    position: relative;
}

.small-card {
    text-align: center;
    background: linear-gradient(135deg, var(--off-white), var(--off-white));
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card-content {
    position: relative;
    z-index: 2;
}

.medium-card .card-content {
    background: rgba(255, 255, 255, 0.95);

    padding: 1rem;
    border-radius: 12px;
    margin: auto 0 1rem 0;
}

.wave-animation {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

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

/* Availability Calendar Section */
.availability-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.calendar-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.calendar-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav {
    background: var(--coral);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.calendar-nav:hover {
    background: var(--coral-hover);
    transform: scale(1.1);
}

.calendar-month {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.calendar-legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.available {
    background: var(--light-green);
}

.legend-color.booked {
    background: #FFE5E9;
    border: 2px solid var(--coral);
}

.legend-color.selected {
    background: #2196F3;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.calendar-day:hover:not(.disabled) {
    background: var(--off-white);
    transform: scale(1.05);
}

.calendar-day.available {
    background: var(--light-green);
}

.calendar-day.booked {
    background: #FFE5E9;
    border: 2px solid var(--coral);
    cursor: not-allowed;
    color: var(--coral);
    font-weight: 600;
}

.calendar-day.selected {
    background: #2196F3;
    color: white;
    font-weight: 600;
}

.calendar-day.today {
    border: 2px solid var(--coral);
}

.booking-summary {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.summary-item span:first-child {
    font-weight: 500;
    color: var(--dark-gray);
}

.summary-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: white;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.summary-select:hover {
    border-color: var(--coral);
}

.summary-select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.1);
}

.booking-form-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 1.5rem 0;
}

.booking-contact-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.booking-contact-fields input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.booking-contact-fields input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.1);
}

.booking-contact-fields input::placeholder {
    color: #999;
}

.send-booking-btn {
    width: 100%;
    background: var(--coral);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.send-booking-btn:hover {
    background: var(--coral-hover);
}

.send-booking-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.booking-form-message {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.booking-form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Continue to Booking Button */
.continue-booking-btn {
    width: 100%;
    background: var(--coral);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.2);
}

.continue-booking-btn:hover {
    background: var(--coral-hover);
}

/* Pulse animation for booking summary */
.booking-summary.pulse {
    animation: pulse-highlight 2s ease-in-out;
}

@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 56, 92, 0.3);
    }
}

/* Mobile: Sticky button at bottom */
@media (max-width: 768px) {
    .continue-booking-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        padding: 1.25rem 2rem;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }
}

.price-breakdown {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid #ccc;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

/* Carousel Section */
.gallery-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--coral);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 90, 95, 0.3);
}

.carousel-btn:hover svg {
    color: white;
}

.carousel-btn.prev {
    left: 24px;
}

.carousel-btn.next {
    right: 24px;
}

.carousel-btn svg {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--coral);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* AOS (Animate On Scroll) styles */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Performance optimizations */
.gallery-section {
    contain: layout style paint;
}

/* Preload hint for critical images */
.gallery-item.hero-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-smooth);
}

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

.gallery-btn {
    background: white;
    color: var(--coral);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.carousel-indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--coral);
    width: 32px;
    border-radius: 5px;
}

.carousel-indicators .indicator:hover {
    background: rgba(0, 0, 0, 0.4);
}

.carousel-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    color: var(--dark-gray);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Amenities Section */
.amenities-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-smooth);
    font-family: var(--font-cta);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
    border: 1px solid var(--light-gray);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

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

.amenity-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.amenity-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

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

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
}

.benefit-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.benefit-info p {
    margin: 0;
    font-weight: 600;
    color: var(--coral);
}

.benefit-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 600;
    color: var(--coral);
}

.rating-stars {
    color: #ffd700;
    font-size: 1.5rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-rating {
    color: #ffd700;
}

.review-text {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.review-verified {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background: var(--coral);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--coral-hover);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--coral);
}

/* Host Section */
.host-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.host-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.host-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.host-info h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.host-info p {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.host-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.host-stat {
    display: flex;
    gap: 1rem;
}

.stat-label {
    font-weight: 500;
    min-width: 120px;
}

.stat-value {
    color: var(--coral);
    font-weight: 500;
}

.host-tips {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--coral);
}

.host-tips h3 {
    margin-bottom: 0.5rem;
    color: var(--coral);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--coral);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
}

.btn-submit:hover {
    background: var(--coral-hover);
}

.contact-info-wrapper {
    display: flex;
    align-items: start;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.contact-info-card h3 {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

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

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

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

.info-text a {
    color: var(--coral);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-text a:hover {
    color: var(--coral-hover);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: var(--off-white);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: white;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--coral);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--coral-hover);
}

.privacy-note {
    font-size: 0.8rem;
    color: #999;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.footer-security {
    display: flex;
    gap: 1rem;
}

.security-badge {
    background: var(--medium-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-counter {
    color: white;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .hero-booking {
        padding: 1rem 0;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .large-card {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .host-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: Compact booking widget */
@media (min-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr 280px;
    }
    
    .booking-widget {
        padding: 0.75rem;
    }
    
    .booking-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .booking-form {
        gap: 0.3rem;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .form-group label {
        margin-bottom: 0.2rem;
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 5px 8px;
        border: 1px solid var(--border-gray);
        font-size: 0.85rem;
        min-height: unset;
    }
    
    .btn-book {
        padding: 7px 14px;
        font-size: 0.85rem;
        min-height: unset;
    }
    
    .price-display {
        padding: 0.5rem;
        margin: 0.4rem 0;
    }
    
    .booking-guarantee {
        margin-top: 0.4rem;
    }
    
    .guarantee-badge {
        padding: 0.3rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .booking-alternatives {
        margin-top: 0.4rem;
        padding-top: 0.5rem;
    }
    
    .contact-buttons {
        gap: 0.4rem;
    }
    
    /* Smaller icons on desktop */
    .highlight-icon {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .highlight-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--mobile-padding);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--off-white);
        flex-direction: column;
        padding: 2rem;
        transition: right var(--transition-smooth);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu.active ~ .nav-overlay {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-smooth);
        z-index: 999;
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .hero-main {
        padding: 1rem 0;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-inline: auto;
    }
    
    .hero-booking {
        padding: 0.5rem 0;
    }
    
    .booking-widget {
        padding: 1rem;
        text-align: left;
    }
    
    .booking-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-items: center;
    }
    
    .highlight-item {
        padding: 0.75rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    
    .large-card,
    .medium-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .amenities-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-wrapper {
        height: 450px;
        padding: 1.5rem;
    }
    
    .carousel-slide {
        padding: 1.5rem;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .carousel-btn.prev {
        left: 16px;
    }
    
    .carousel-btn.next {
        right: 16px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        white-space: normal;
        padding: 14px 24px;
    }
    
    .calendar-container {
        padding: 0 5px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .calendar-wrapper {
        padding: 1rem;
        overflow: hidden;
    }
    
    .calendar-grid {
        width: 100%;
        max-width: 100%;
        padding: 1px;
        gap: 1px;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        box-sizing: border-box;
    }
    
    .calendar-day {
        aspect-ratio: auto;
        min-height: 44px;
        font-size: 0.9rem;
        padding: 4px 2px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .carousel-wrapper {
        height: 400px;
        padding: 1rem;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn.prev {
        left: 12px;
    }
    
    .carousel-btn.next {
        right: 12px;
    }
    
    .carousel-counter {
        top: 16px;
        right: 16px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .carousel-caption {
        font-size: 1rem;
        padding: 10px 24px;
        bottom: 20px;
    }
    
    .carousel-indicators {
        bottom: 80px;
    }
    
    .calendar-wrapper {
        padding: 0.75rem;
        overflow: hidden;
    }
    
    .calendar-grid {
        width: 100%;
        max-width: 100%;
        padding: 1px;
        gap: 1px;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        overflow: hidden;
    }
    
    .calendar-day {
        aspect-ratio: auto;
        min-height: 48px;
        font-size: 0.85rem;
        padding: 4px 2px;
        box-sizing: border-box;
    }
    
    .calendar-legend {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .legend-item {
        justify-content: center;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-option {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Policy Pages Styling */
.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.policy-page .container {
    max-width: 900px;
}

.policy-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--coral);
    padding-bottom: 1rem;
}

.policy-content {
    line-height: 1.8;
    color: var(--dark-gray);
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

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

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.policy-note {
    background: var(--light-gray);
    border-left: 4px solid var(--coral);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.policy-note p {
    margin: 0;
    color: var(--dark-gray);
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.back-link .btn-secondary:hover {
    background: var(--coral);
    color: var(--white);
}

@media (max-width: 768px) {
    .policy-page h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-family: var(--font-sans);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card:first-child {
    grid-column: 1 / -1;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-card video {
    width: 100%;
    display: block;
    background: var(--dark-gray);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

.video-card.shorts-video iframe,
.video-card.shorts-video video {
    aspect-ratio: 9 / 16;
    max-height: 500px;
    margin: 0 auto;
    width: auto;
}

.video-caption {
    padding: 1.5rem;
}

.video-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.video-caption p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card.shorts-video iframe,
    .video-card.shorts-video video {
        max-height: 400px;
    }
}

/* Floating Contact Widget */
.floating-contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--coral);
    color: var(--coral);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 58, 92, 0.4);
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-toggle:hover {
    background: var(--coral);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(255, 58, 92, 0.2);
}

.widget-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

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

.widget-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: all var(--transition-smooth);
    font-weight: 500;
    min-width: 160px;
}

.widget-option:hover {
    opacity: 0.9;
    padding-left: 25px;
}

.widget-option.whatsapp {
    background: #25D366;
}

.widget-option.viber {
    background: #7360F2;
}

.widget-option svg {
    flex-shrink: 0;
}

.widget-option span {
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .floating-contact-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .widget-toggle {
        width: 55px;
        height: 55px;
    }
}