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

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1B3D3F;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    margin-bottom: 50px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #C1A875;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 20px;
}

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

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

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1B3D3F;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(27, 61, 63, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background-color: #C1A875;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 168, 117, 0.3);
}

.btn-secondary {
    background-color: #C1A875;
    color: #fff;
    box-shadow: 0 4px 15px rgba(193, 168, 117, 0.2);
}

.btn-secondary:hover {
    background-color: #1B3D3F;
    box-shadow: 0 8px 25px rgba(27, 61, 63, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #1B3D3F;
    border: 2px solid #1B3D3F;
}

.btn-outline:hover {
    background-color: #1B3D3F;
    color: #fff;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-scrolled {
    padding: 8px 0;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    width: 100%;
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1B3D3F;
    margin-bottom: 0;
    line-height: 1.1;
}

.logo p {
    font-size: 0.85rem;
    color: #C1A875;
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.2;
}

nav {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #C1A875;
    background-color: rgba(193, 168, 117, 0.1);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #C1A875;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: calc(100% - 24px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.hamburger:hover {
    background-color: rgba(193, 168, 117, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1B3D3F;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: 100%;
        right: 0;
        width: 280px;
        max-width: 90vw;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px 0;
        box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.15);
        border-radius: 15px 0 0 15px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 3px solid #C1A875;
    }
    
    nav ul.show {
        transform: translateX(0);
    }
    
    nav ul li {
        margin: 0;
        text-align: left;
        width: 100%;
    }
    
    nav ul li:first-child {
        margin-left: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(193, 168, 117, 0.2);
        border-radius: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background-color: rgba(193, 168, 117, 0.15);
        color: #1B3D3F;
        padding-left: 35px;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    /* Header adjustments for mobile */
    .header-content {
        padding: 12px 0;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo p {
        font-size: 0.8rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(27, 61, 63, 0.8), rgba(193, 168, 117, 0.6)), 
                url('../img/hero.svg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0;
    position: relative;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.hero .btn {
    font-size: 1.1rem;
    padding: 15px 35px;
    background-color: #C1A875;
    border: 2px solid #C1A875;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background-color: transparent;
    color: #C1A875;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 168, 117, 0.3);
}

/* ===== INTRO SECTION ===== */
.intro {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C1A875, transparent);
}

.intro-header {
    text-align: center;
    margin-bottom: 60px;
}

.intro-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1B3D3F;
    margin-bottom: 15px;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(193, 168, 117, 0.1), rgba(193, 168, 117, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(193, 168, 117, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(193, 168, 117, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B3D3F;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 61, 63, 0.8), rgba(193, 168, 117, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover img {
    transform: scale(1.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 5px;
}

.overlay-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.highlight-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(193, 168, 117, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1B3D3F, #C1A875);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.highlight-content h3 {
    font-size: 1.3rem;
    color: #1B3D3F;
    margin-bottom: 15px;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-feature {
    display: flex;
    align-items: center;
    color: #C1A875;
    font-weight: 600;
    font-size: 0.9rem;
}

.highlight-feature i {
    margin-right: 8px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== ROOMS SECTION ===== */
.rooms {
    background-color: #f9f9f9;
}

.rooms-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rooms-intro .intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rooms-intro h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rooms-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Statistiche camere */
.rooms-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid camere modernizzato */
.rooms {
    padding: 4rem 0;
}

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

/* Card camere moderne */
.room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.room-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
}

.room-card.featured:hover {
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.3);
}

/* Immagini camere */
.room-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image-container img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.room-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    background: var(--accent-color);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
        transform: scale(1.05);
    }
}

/* Contenuto camere */
.room-content {
    padding: 1.5rem;
}

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

.room-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.room-rating {
    display: flex;
    gap: 2px;
}

.room-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.room-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Grid caratteristiche camere */
.room-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(40, 116, 166, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Servizi camera */
.room-amenities {
    margin-bottom: 1.5rem;
}

.room-amenities h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.room-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.room-amenities i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Footer camera */
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-color);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-color);
}

.room-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-room-details {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-room-details:hover {
    background: var(--primary-color);
    color: white;
}

/* Sezione politiche */
.rooms-policies {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.policy-card {
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.policy-icon i {
    color: white;
    font-size: 1.5rem;
}

.policy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.policy-card li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.policy-card li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Sezione prenotazione rapida */
.quick-booking {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
}

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

.quick-booking h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: white;
}

.quick-booking p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.booking-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.booking-btn:hover {
    background: rgba(193, 168, 117, 0.2); /* Oro con trasparenza */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(193, 168, 117, 0.4);
}

.booking-btn i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.booking-text {
    text-align: left;
}

.booking-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.booking-platform {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-com {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    border: 1px solid rgba(193, 168, 117, 0.3);
}

.whatsapp {
    background: linear-gradient(135deg, #2a5457, #3a6669);
    border: 1px solid rgba(193, 168, 117, 0.3);
}

.phone {
    background: linear-gradient(135deg, #C1A875, #D4B885);
    color: #1B3D3F;
    border: 1px solid rgba(27, 61, 63, 0.3);
}

/* Hover specifici per ogni bottone */
.booking-com:hover {
    background: linear-gradient(135deg, #2a5457, #3a6669);
    border-color: #C1A875;
}

.whatsapp:hover {
    background: linear-gradient(135deg, #3a6669, #4a767a);
    border-color: #C1A875;
}

.phone:hover {
    background: linear-gradient(135deg, #D4B885, #E1C595);
    color: #1B3D3F;
    border-color: #1B3D3F;
}

.booking-note {
    background: rgba(193, 168, 117, 0.15); /* Sfondo oro leggero */
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 168, 117, 0.3);
}

.booking-note i {
    color: #C1A875; /* Icona oro */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.booking-note p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: left;
}

/* CTA finale */
.cta-final {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/hero.svg') center/cover;
    position: relative;
    color: white;
    text-align: center;
}

.cta-final .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 61, 63, 0.9), rgba(42, 84, 87, 0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: white;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive per camere */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-features-grid {
        grid-template-columns: 1fr;
    }
    
    .room-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .room-actions {
        justify-content: center;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .rooms-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .room-card {
        margin: 0 1rem;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .booking-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

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

footer {
    background: linear-gradient(135deg, #1B3D3F 0%, #2a5457 50%, #1B3D3F 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C1A875, #fff, #C1A875);
}

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

.footer-info h3,
.footer-nav h3,
.footer-hours h3,
.footer-certifications h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-info p:hover {
    color: #fff;
}

.footer-info i {
    color: #C1A875;
    width: 16px;
    text-align: center;
}

.footer-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #C1A875;
}

/* Navigation footer */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C1A875;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav a:hover::before {
    width: 100%;
}

/* Footer hours */
.footer-hours p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours p:last-child {
    border-bottom: none;
}

.footer-hours strong {
    color: #fff;
    font-weight: 600;
}

/* Footer certifications */
.footer-certifications p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #bdc3c7;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid #C1A875;
}

.footer-certifications p:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(3px);
}

.footer-certifications i {
    color: #C1A875;
    font-size: 1.1rem;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-hours p {
        justify-content: center;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .footer-nav a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1rem;
    }
    
    .footer-info h3,
    .footer-nav h3,
    .footer-hours h3,
    .footer-certifications h3 {
        font-size: 1.1rem;
    }
    
    .footer-certifications p {
        padding: 0.3rem;
        font-size: 0.9rem;
    }
}

/* ===== SERVICES PREVIEW SECTION ===== */
.services-preview {
    background: linear-gradient(135deg, #1B3D3F 0%, #2a5457 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 168, 117, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-header h2::after {
    background-color: #C1A875;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C1A875, #d4b876);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(193, 168, 117, 0.4);
}

.service-icon i {
    color: #fff;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.service-features li i {
    color: #C1A875;
    margin-right: 10px;
    font-size: 0.8rem;
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-cta .btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-cta .btn:hover {
    background-color: #fff;
    color: #1B3D3F;
    transform: translateY(-3px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, #1B3D3F 0%, #2a5457 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(193, 168, 117, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials .section-header h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.testimonials .section-header h2::after {
    background-color: #C1A875;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.rating-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.rating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.rating-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 10px;
}

.rating-platform i {
    font-size: 1.5rem;
    color: #C1A875;
}

.rating-platform span {
    font-weight: 600;
    color: #fff;
}

.rating-stars {
    margin-bottom: 15px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C1A875;
    font-family: 'Playfair Display', serif;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 0 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    flex: 1;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C1A875, #d4b876);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C1A875, #d4b876);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-avatar i {
    color: #fff;
    font-size: 1.2rem;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-platform {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(193, 168, 117, 0.8);
    transform: scale(1.1);
    border-color: #C1A875;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #C1A875;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .rating-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .rating-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        margin: 0 10px;
        min-height: auto;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
        width: 100%;
    }
    
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials .section-header p {
        font-size: 1rem;
    }
}

/* ===== PAGINA SERVIZI ===== */

/* Sezione principale servizi */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-text h2 {
    color: #1B3D3F;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.services .service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
    border-color: #C1A875;
}

.services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.services .service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2a5457, #C1A875);
}

.services .service-icon i {
    color: white;
    font-size: 1.8rem;
}

.services .service-info h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.services .service-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Info box servizi */
.services-info-box {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.services-info-box h3 {
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.services-info-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.services-info-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.services-info-box li i.fa-check {
    color: #C1A875;
    font-size: 1.1rem;
}

.services-info-box li i.fa-times {
    color: #ff6b6b;
    font-size: 1.1rem;
}

/* Sezione spazi comuni */
.common-areas {
    padding: 80px 0;
    background: white;
}

.common-areas h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 20px;
}

.common-areas > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.area-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
}

.area-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.area-info {
    padding: 30px;
}

.area-info h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.area-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA servizi */
.services + .cta {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.services + .cta h2 {
    color: white;
    margin-bottom: 15px;
}

.services + .cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services + .cta .btn {
    background: #C1A875;
    color: #1B3D3F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.services + .cta .btn:hover {
    background: #D4B885;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 168, 117, 0.4);
}

/* Responsive per servizi */
@media (max-width: 768px) {
    .services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-info-box ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .services-info-box {
        padding: 30px 20px;
    }
}

/* ===== PAGINA POSIZIONE ===== */

/* Sezione location principale */
.location {
    padding: 80px 0;
    background: #f9f9f9;
}

.location .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.location .intro-text h2 {
    color: #1B3D3F;
    margin-bottom: 20px;
}

.location .intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Mappa */
.map-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Address box */
.address-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.address-info h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-info h3 i {
    color: #C1A875;
    font-size: 1.2rem;
}

.address-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.address-actions .btn {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.address-actions .btn:hover {
    background: linear-gradient(135deg, #2a5457, #C1A875);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 61, 63, 0.3);
}

/* Sezione nearby */
.nearby {
    padding: 80px 0;
    background: white;
}

.nearby h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 20px;
}

.nearby > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.nearby-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.nearby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
    border-color: #C1A875;
}

.nearby-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.nearby-card:hover .nearby-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2a5457, #C1A875);
}

.nearby-icon i {
    color: white;
    font-size: 1.8rem;
}

.nearby-info h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.nearby-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Sezione explore */
.explore {
    padding: 80px 0;
    background: #f9f9f9;
}

.explore h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 20px;
}

.explore > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.explore-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
}

.explore-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.explore-info {
    padding: 25px;
}

.explore-info h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.explore-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.explore-info p:last-child {
    font-weight: 600;
    color: #C1A875;
    margin: 0;
}

/* CTA posizione */
.location + .nearby + .explore + .cta {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.location + .nearby + .explore + .cta h2 {
    color: white;
    margin-bottom: 15px;
}

.location + .nearby + .explore + .cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.location + .nearby + .explore + .cta .btn {
    background: #C1A875;
    color: #1B3D3F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.location + .nearby + .explore + .cta .btn:hover {
    background: #D4B885;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 168, 117, 0.4);
}

/* Responsive per posizione */
@media (max-width: 768px) {
    .address-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .nearby-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1B3D3F;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    color: #fff;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(193, 168, 117, 0.3);
    border-top: 3px solid #C1A875;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #E8D4A2;
}

/* ===== IMPROVED NAVIGATION INDICATORS ===== */
nav ul li a {
    position: relative;
}

nav ul li a.active::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 4px;
    height: 4px;
    background-color: #C1A875;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile menu overlay */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
    body.menu-open::before {
        display: none;
    }
}

/* Enhanced header transition */
header {
    transition: all 0.3s ease, transform 0.3s ease;
}

/* Improved button hover effects */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

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

/* Loading animation for buttons */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced testimonial slider */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #C1A875;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    header,
    .hero,
    .quick-booking,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* ===== TOAST NOTIFICATION SYSTEM ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid #C1A875;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

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

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #666;
}

/* Toast types */
.toast-success {
    border-left-color: #C1A875;
}

.toast-success .toast-icon {
    color: #C1A875;
}

.toast-error {
    border-left-color: #e74c3c;
}

.toast-error .toast-icon {
    color: #e74c3c;
}

.toast-warning {
    border-left-color: #f39c12;
}

.toast-warning .toast-icon {
    color: #f39c12;
}

.toast-info {
    border-left-color: #1B3D3F;
}

.toast-info .toast-icon {
    color: #1B3D3F;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .toast-container {
        left: 20px;
        right: 20px;
        top: 20px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
    
    .toast-content {
        padding: 14px 16px;
    }
    
    .toast-message {
        font-size: 0.95rem;
    }
}

/* ===== PAGINA TARIFFE ===== */

/* Sezione tariffe principale */
.rates {
    padding: 80px 0;
    background: #f9f9f9;
}

.rates .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.rates .intro-text h2 {
    color: #1B3D3F;
    margin-bottom: 20px;
}

.rates .intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Tabella tariffe */
.rates-table-container {
    margin: 40px 0;
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Lato', sans-serif;
}

.rates-table thead {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
}

.rates-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.rates-table th:first-child {
    border-top-left-radius: 15px;
}

.rates-table th:last-child {
    border-top-right-radius: 15px;
}

.rates-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.rates-table tbody tr:hover {
    background: rgba(193, 168, 117, 0.05);
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rates-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.rates-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

/* Prima colonna (Tipologia) */
.rates-table td:first-child {
    font-weight: 600;
    color: #1B3D3F;
}

/* Colonne prezzi */
.rates-table td:not(:first-child) {
    font-weight: 600;
    color: #C1A875;
    font-size: 1.05rem;
}

/* Note tariffe */
.rates-notes {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.rates-notes h3 {
    color: #1B3D3F;
    margin-bottom: 25px;
    text-align: center;
}

.rates-notes ul {
    list-style: none;
    padding: 0;
}

.rates-notes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.rates-notes li i {
    color: #C1A875;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Sezione booking info */
.booking-info {
    padding: 80px 0;
    background: white;
}

.booking-info h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 60px;
}

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

.booking-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
    border-color: #C1A875;
}

.booking-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.booking-card:hover .booking-icon {
    background: linear-gradient(135deg, #2a5457, #C1A875);
    transform: scale(1.1);
}

.booking-icon i {
    color: white;
    font-size: 1.5rem;
}

.booking-card h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.booking-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-card li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 0;
}

.booking-card li strong {
    color: #1B3D3F;
}

/* Sezione offerte speciali */
.special-offers {
    padding: 80px 0;
    background: #f9f9f9;
}

.special-offers h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 20px;
}

.special-offers > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #C1A875, #D4B885);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-card h3 {
    color: #1B3D3F;
    margin: 20px 0 15px;
    font-size: 1.4rem;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.offer-card .btn {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.offer-card .btn:hover {
    background: linear-gradient(135deg, #2a5457, #C1A875);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 61, 63, 0.3);
}

/* CTA tariffe */
.rates + .booking-info + .special-offers + .cta {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.rates + .booking-info + .special-offers + .cta h2 {
    color: white;
    margin-bottom: 15px;
}

.rates + .booking-info + .special-offers + .cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rates + .booking-info + .special-offers + .cta .btn {
    background: #C1A875;
    color: #1B3D3F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.rates + .booking-info + .special-offers + .cta .btn:hover {
    background: #D4B885;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 168, 117, 0.4);
}

/* Responsive per tariffe */
@media (max-width: 768px) {
    .rates-table-container {
        margin: 30px -20px;
        border-radius: 0;
    }
    
    .rates-table {
        font-size: 0.9rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 12px 10px;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rates-notes {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .rates-notes li {
        font-size: 0.95rem;
    }
}

/* ===== PAGINA CONTATTI ===== */

/* Sezione contatti principale */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

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

/* Informazioni di contatto */
.contact-info h2 {
    color: #1B3D3F;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(27, 61, 63, 0.15);
    border-color: #C1A875;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover i {
    background: linear-gradient(135deg, #2a5457, #C1A875);
    transform: scale(1.1);
}

.info-item div h3 {
    color: #1B3D3F;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-item div p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.info-item div a {
    color: #C1A875;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item div a:hover {
    color: #1B3D3F;
}

/* Form di contatto */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.contact-form h2 {
    color: #1B3D3F;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1B3D3F;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C1A875;
    box-shadow: 0 0 0 3px rgba(193, 168, 117, 0.1);
}

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

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.privacy-check input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: #C1A875;
}

.privacy-check label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    font-weight: normal;
}

.form-group .btn {
    background: linear-gradient(135deg, #1B3D3F, #2a5457);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group .btn:hover {
    background: linear-gradient(135deg, #2a5457, #C1A875);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 61, 63, 0.3);
}

/* Sezione mappa */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Sezione FAQ */
.faq {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq h2 {
    text-align: center;
    color: #1B3D3F;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 61, 63, 0.15);
    border-color: #C1A875;
}

.faq-item h3 {
    color: #1B3D3F;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-left: 20px;
}

.faq-item h3::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #C1A875;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive per contatti */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-item {
        padding: 20px;
        gap: 15px;
    }
    
    .info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 25px 15px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .privacy-check {
        flex-direction: column;
        gap: 8px;
    }
    
    .privacy-check input[type="checkbox"] {
        margin-top: 0;
    }
}