/* ===== DOM ELENA - Main Styles ===== */
/* Tema Nero Elegante con Oro */

:root {
    /* Colori Oro */
    --gold: #D4AF37;
    --gold-light: #E8CC6A;
    --gold-dark: #B8962E;

    /* Colori Base - Tema Scuro */
    --bg-dark: #0D0D0D;
    --bg-dark-light: #1A1A1A;
    --bg-dark-card: #151515;

    /* Colori Base - Elementi Chiari */
    --bg-light: #FAFAFA;
    --bg-cream: #F5F3EF;

    /* Testi */
    --text-light: #FFFFFF;
    --text-light-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #1A1A1A;
    --text-dark-muted: #666666;

    /* Altri */
    --whatsapp: #25D366;
    --shadow-gold: rgba(212, 175, 55, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    background: var(--bg-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-sun-icon {
    height: 40px;
    width: auto;
}

.nav.scrolled .nav-logo {
    color: var(--gold);
}

.nav-powered {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-left: 45px;
}

.nav-powered:hover {
    opacity: 1;
}

.nav-powered img {
    height: 28px;
    width: auto;
}

.nav-powered span:first-child {
    color: var(--text-light-muted);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.4s ease;
}

.nav.scrolled .nav-links a {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Voce menu evidenziata (Prezzi) */
.nav-highlight {
    font-size: 1.4em !important;
    font-weight: 700 !important;
    color: var(--white) !important;
}

.nav-cta {
    background: var(--gold);
    color: var(--bg-dark) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 1rem;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
}

.lang-current:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.lang-current .lang-flag {
    display: flex;
    align-items: center;
    line-height: 1;
}

.lang-current .lang-flag svg,
.lang-option svg {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.lang-current .lang-arrow {
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-current .lang-arrow {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-dropdown.open .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.7rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-light-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--white);
}

.lang-option.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
    background: var(--white);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/beach-panorama.jpg') center/cover no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 46, 68, 0.4) 0%,
        rgba(26, 46, 68, 0.2) 40%,
        rgba(26, 46, 68, 0.5) 100%
    );
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 98, 0.9);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero h1 span {
    display: block;
    font-size: 0.35em;
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
    font-weight: 400;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

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

.hero-feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-light);
}

.hero-feature span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 1s ease 1.1s forwards;
}

.hero-cta:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

/* ===== SECTIONS ===== */
section {
    padding: 8rem 4rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-label::before { right: calc(100% + 15px); }
.section-label::after { left: calc(100% + 15px); }

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    line-height: 1.8;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-dark);
}

.about-content h2 {
    color: var(--text-light);
}

.about-content h2 span {
    color: var(--gold);
}

.about-text {
    color: var(--text-light-muted);
}

.highlight-text {
    color: var(--text-light);
}

.highlight-icon {
    background: var(--bg-dark-light);
}

.highlight-icon svg {
    stroke: var(--gold);
}

.about-rating {
    background: var(--bg-dark-light);
    border-left-color: var(--gold);
}

.rating-score {
    color: var(--gold);
}

.rating-text {
    color: var(--text-light-muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    box-shadow: 0 30px 60px var(--shadow-strong);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.02);
    z-index: 2;
}

.about-img-1 {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.about-img-2 {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    object-fit: cover;
    border: 8px solid var(--white);
}

.about-badge {
    position: absolute;
    bottom: 15%;
    left: 60%;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 3;
}

.about-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    color: var(--gold-dark);
    font-style: italic;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--text-light-muted);
    opacity: 0.85;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.highlight-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-dark);
}

.highlight-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-dark-light);
    border-left: 3px solid var(--gold);
}

.rating-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    opacity: 0.7;
}

/* ===== HOST SECTION ===== */
.host {
    background: var(--bg-dark-light);
    padding: 5rem 4rem;
}

.host-intro-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.host-photo {
    flex-shrink: 0;
}

.host-photo img {
    width: 130px;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.host-intro-text {
    flex: 1;
}

.host-intro-text .section-label {
    color: var(--gold-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.host-intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.host-intro-text p {
    color: var(--text-light-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.host-intro-text strong {
    color: var(--gold);
}

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

.host-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.host-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.host-card h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.host-card p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .host {
        padding: 4rem 2rem;
    }

    .host-intro-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .host-photo img {
        width: 100px;
        height: auto;
    }

    .host-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--bg-dark);
    color: var(--white);
}

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

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

.gallery .section-subtitle {
    color: var(--bg-dark-light);
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 68, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-dark-light);
    padding: 5rem 4rem;
}

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

.testimonial-card {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.testimonial-score {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-country {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.testimonial-text {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.8;
}

.testimonials-source {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light-muted);
    font-size: 0.85rem;
}

.testimonials-source a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonials-source a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* New booking link button style */
.testimonials-source-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonials-source-text {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    margin: 0;
}

.booking-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #003580 0%, #00224f 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-link-btn:hover {
    background: linear-gradient(135deg, #004a9f 0%, #003580 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.4);
}

.booking-link-btn svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.booking-link-btn:hover svg {
    transform: translate(2px, -2px);
}

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

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== AMENITIES ===== */
.amenities {
    background: var(--bg-dark);
}

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

.amenity-card {
    background: var(--bg-dark-light);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-gold);
    border-color: var(--gold);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
}

.amenity-card:hover .amenity-icon {
    background: var(--gold);
}

.amenity-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    transition: stroke 0.4s ease;
}

.amenity-card:hover .amenity-icon svg {
    stroke: var(--bg-dark);
}

.amenity-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.amenity-desc {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    background: var(--bg-dark-light);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-table {
    background: var(--bg-dark);
    box-shadow: 0 20px 60px var(--shadow-dark);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    color: var(--text-light);
}

.pricing-row:hover:not(.pricing-header-row) {
    background: var(--bg-dark-light);
}

.pricing-header-row {
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-highlight {
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.1), transparent);
    border-left: 3px solid var(--gold);
}

.pricing-period {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.period-icon {
    font-size: 1.2rem;
}

.pricing-price {
    text-align: center;
}

.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
}

.pricing-season {
    text-align: right;
}

.season-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
}

.season-low {
    background: #E8F5E9;
    color: #2E7D32;
}

.season-mid {
    background: #FFF3E0;
    color: #E65100;
}

.season-high {
    background: #FFEBEE;
    color: #C62828;
}

.season-peak {
    background: var(--gold);
    color: var(--bg-dark);
}

.pricing-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-info-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-info-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
}

.pricing-info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--gold);
}

.pricing-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.pricing-info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pricing-info-card p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.6;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.pricing-cta-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.pricing-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.pricing-cta-btn:hover svg {
    transform: translateX(5px);
}

/* ===== CALENDAR ===== */
.calendar-section {
    background: var(--bg-dark);
    color: var(--white);
}

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

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

.calendar-section .section-subtitle {
    color: var(--text-light-muted);
}

/* Calendar + Booking Wrapper - Side by Side Layout */
.calendar-booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.calendar-container {
    max-width: 100%;
}

/* Booking Form Container */
.booking-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form-container h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.booking-form-subtitle {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

.booking-form-group {
    margin-bottom: 0.5rem;
}

.booking-form-group label {
    display: block;
    color: var(--text-light-muted);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.booking-form-group label.label-filled {
    color: var(--gold);
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.9rem;
}

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

.booking-form-group textarea {
    resize: vertical;
    min-height: 60px;
}

/* Phone input with prefix */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.phone-prefix-input {
    width: 70px !important;
    min-width: 70px;
    max-width: 70px;
    flex-shrink: 0;
    text-align: center;
    padding: 0.7rem 0.3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.85rem;
}

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

.phone-number-input {
    flex: 1;
    min-width: 0;
}

/* Date picker button icon */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-picker-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.booking-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.booking-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Quote Box in booking form */
.booking-form-container .quote-box {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.booking-form-container .quote-box h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Responsive: stack on smaller screens */
@media (max-width: 1024px) {
    .calendar-booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-form-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

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

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-dot.available {
    background: #4CAF50;
}

.legend-dot.booked {
    background: #666;
}

.legend-dot.selected {
    background: #4CAF50;
}

.calendar-months {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.calendar-month {
    background: var(--bg-dark-light);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.calendar-month-header {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: #4CAF50;
    color: var(--white);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 600;
}

.calendar-day:hover:not(.booked):not(.empty) {
    background: #66BB6A;
    color: var(--white);
    transform: scale(1.1);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.booked {
    background: rgba(100, 100, 100, 0.5);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.today {
    border: 3px solid #e53935 !important;
    font-weight: 700;
}

.calendar-day.available:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    transform: scale(1.1);
}

/* Spunta bianca per indicare giorni validi per check-in */
.calendar-day.valid-checkin {
    position: relative;
}

.calendar-day.valid-checkin::after {
    content: '⇄';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.calendar-day.selected-checkin {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
}

.calendar-day.selected-checkout {
    background: var(--gold-dark);
    color: var(--bg-dark);
    font-weight: 600;
}

.calendar-day.selected-range {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
    opacity: 0.85;
}

.calendar-day.selected {
    background: #4CAF50;
    color: var(--white);
}

.calendar-loading {
    text-align: center;
    padding: 3rem;
    color: var(--gold-light);
}

.calendar-error {
    text-align: center;
    padding: 2rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    margin-bottom: 1rem;
}

/* ===== BOOKING RULES INFO ===== */
.booking-rules-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.rules-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.rule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}

.rule-period {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.rule-details {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.rule-checkin-day strong {
    color: var(--gold);
}

.checkin-times {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.checkin-times strong {
    color: var(--white);
}

/* ===== LOCATION ===== */
.location {
    background: var(--bg-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.location-map {
    position: relative;
    height: 500px;
    background: var(--bg-dark-light);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
}

.location-content h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-dark-light);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-address svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.location-address p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.distances {
    margin-bottom: 2rem;
}

.distances h4 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-light);
}

.distance-item:last-child {
    border-bottom: none;
}

.distance-name {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.distance-name svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.distance-value {
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--gold);
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
}

/* ===== HOST ===== */
.host {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-light) 100%);
    color: var(--white);
}

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

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

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

.host-image {
    position: relative;
}

.host-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
}

.host-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.8rem 1rem;
    text-align: center;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.host-badge-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.host-badge-text {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.host-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.host-title {
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.host-text {
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.language-tag {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ===== RULES ===== */
.rules {
    background: var(--bg-dark);
}

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

.rule-card {
    background: var(--bg-dark-light);
    padding: 2rem;
    border-top: 3px solid var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid var(--gold);
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid var(--gold);
}

.rule-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.rule-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.rule-text {
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-dark-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--bg-dark);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-wrapper-compact {
    grid-template-columns: 1fr;
    max-width: 600px;
    text-align: center;
}

.contact-wrapper-compact .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-wrapper-compact .contact-item {
    justify-content: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: var(--text-light-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: var(--bg-dark);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-dark-light);
}

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

.form-group input:disabled {
    background: rgba(100, 100, 100, 0.3);
    cursor: not-allowed;
}

.form-submit {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--bg-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--shadow-strong);
}

.form-submit:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.contact-info {
    color: var(--white);
    padding-left: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.contact-item-content p,
.contact-item-content a {
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--gold-light);
}

.contact-direct {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(201, 169, 98, 0.15);
    border-left: 3px solid var(--gold);
}

.contact-direct h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.contact-direct p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== QUOTE BOX ===== */
.quote-box {
    background: var(--bg-dark-light);
    border: 2px solid var(--gold);
    padding: 1.5rem;
    margin: 1rem 0;
}

.quote-box h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.quote-warning {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gold);
    line-height: 1.4;
}

.quote-warning strong {
    color: var(--gold-dark);
}

.quote-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gold-dark);
    color: var(--text-light-muted);
}

.quote-total {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.quote-total-value {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.quote-deposit {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--gold-light);
    font-size: 0.9rem;
}

.quote-note {
    font-size: 0.75rem;
    color: var(--text-light-muted);
    opacity: 0.7;
    margin-top: 1rem;
}

.quote-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* Prezzo originale barrato */
.price-original {
    text-decoration: line-through;
    color: var(--text-light-muted);
    opacity: 0.6;
    font-size: 0.9em;
    margin-right: 0.5rem;
}

/* Prezzo scontato evidenziato */
#quoteRateDiscounted,
#quoteStayDiscounted {
    color: var(--gold);
    font-weight: 600;
}

/* Riga sconto */
.quote-discount-row {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin: 0.5rem -1rem;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
}

/* Badge sconto */
.discount-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Cancellazione gratuita */
.quote-cancellation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    color: #4CAF50;
    font-size: 0.9rem;
    border-top: 1px solid var(--gold-dark);
    margin-top: 0.5rem;
}

.quote-cancellation .cancellation-icon {
    font-size: 1.1rem;
    font-weight: bold;
}

.quote-cancellation .cancellation-date {
    font-weight: 600;
    color: #4CAF50;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem;
    text-align: center;
    border-top: 1px solid var(--gold);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-sun-icon {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light-muted);
    margin-bottom: 2rem;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

.footer-legal {
    margin-bottom: 1.5rem;
}

.footer-legal a {
    color: var(--text-light-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-light-muted);
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-powered:hover {
    opacity: 1;
}

.footer-powered img {
    height: 32px;
    width: auto;
}

.footer-powered span:first-child {
    color: var(--text-light-muted);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    section {
        padding: 6rem 3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-months {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav {
        padding: 1rem 1.5rem !important;
        padding-top: 50px !important;
        flex-wrap: wrap;
        background: rgba(13, 13, 13, 0.95) !important;
        backdrop-filter: blur(20px);
    }

    .nav-brand {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-logo {
        font-size: 1.4rem;
        gap: 0.3rem;
    }

    .nav-sun-icon {
        height: 30px;
    }

    .nav-powered {
        display: none;
    }

    .lang-dropdown {
        margin-left: auto;
        margin-right: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        color: var(--white) !important;
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
        padding: 10px;
        margin-left: auto;
        z-index: 1001;
        position: relative;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: var(--white);
        transition: all 0.3s ease;
    }

    .nav.scrolled .nav-toggle span {
        background: var(--gold);
    }

    /* Hamburger animation when menu is open */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .footer-powered img {
        height: 24px;
    }

    .about-grid,
    .location-grid,
    .host-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        height: 400px;
    }

    .contact::before {
        display: none;
    }

    .contact-info {
        padding-left: 0;
        color: var(--text-light-muted);
        background: var(--bg-dark);
        padding: 3rem;
        color: var(--white);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-info-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 1.5rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .host-image {
        margin: 0 auto;
    }

    .host-languages {
        justify-content: center;
    }

    .pricing-row {
        grid-template-columns: 1.2fr 0.8fr 0.6fr;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .period-icon {
        display: none;
    }

    .price-value {
        font-size: 1.4rem;
    }

    .pricing-info-cards {
        flex-direction: column;
    }

    .pricing-info-card {
        min-width: auto;
    }

    .calendar-legend {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem !important;
        padding-top: 45px !important;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-sun-icon {
        height: 25px;
    }

    .lang-dropdown {
        margin-right: 0.5rem;
        margin-left: 0;
    }

    .lang-current {
        padding: 0.3rem 0.5rem;
    }

    .nav-toggle {
        padding: 8px;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
    }

    .footer-logo {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-sun-icon {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.8rem !important;
        padding-top: 40px !important;
    }

    .nav-logo {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }

    .nav-sun-icon {
        height: 22px;
    }

    .lang-dropdown {
        margin-right: 0.3rem;
    }

    .nav-toggle {
        padding: 6px;
    }

    .nav-toggle span {
        width: 22px;
    }

    .lang-current {
        padding: 0.25rem 0.4rem;
    }

    .lang-current .lang-flag svg {
        width: 20px;
        height: 13px;
    }

    .hero h1 {
        letter-spacing: 0.08em;
    }

    .hero-cta {
        padding: 1rem 2rem;
    }

    .section-label::before,
    .section-label::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 250px;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px var(--shadow-gold);
}

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

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-dark);
}

/* ===== CALENDAR NAVIGATION ===== */
.calendar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calendar-nav-btn {
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.calendar-nav-btn:disabled {
    background: #444;
    cursor: not-allowed;
    transform: none;
}

.calendar-nav-btn svg {
    width: 18px;
    height: 18px;
}

.calendar-nav-info {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    min-width: 150px;
    text-align: center;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--gold);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--bg-dark);
}

.cookie-btn-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-light-muted);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-dark-light);
    border: 1px solid var(--gold);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cookie-modal-header h3 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    color: var(--text-light-muted);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--gold);
}

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-header h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.cookie-option p {
    color: var(--text-light-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    transition: 0.3s;
}

.cookie-toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        padding: 0.7rem 1rem;
    }
}
