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

:root {
    /* Colors */
    --primary-color: #0077b6;
    --primary-dark: #023e8a;
    --primary-light: #0096c7;
    --secondary-color: #90e0ef;
    --accent-color: #f5a623;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    --card-padding: 30px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
}

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

.section {
    padding: var(--section-padding);
}

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

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ===================================
   Header & Navigation
   =================================== */
.top-bar {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 6px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo h1 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 1;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Override specifico per bottoni nella navbar per evitare conflitti */
.nav-menu li a.btn {
    padding: 10px 25px !important;
    margin-left: 10px;
    color: var(--bg-white) !important; /* Forza il testo bianco */
    border: none;
    line-height: normal;
    display: inline-block;
}

.nav-menu li a.btn:hover {
    color: var(--bg-white) !important; /* Mantiene il bianco anche al passaggio del mouse */
}

.nav-menu li a.btn::after {
    display: none; /* Rimuove la sottolineatura verde standard del menu */
}

/* Language Selector */
.language-selector {
    position: relative;
    order: 2;
    margin-left: 0.25rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 999px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.72;
}

.lang-btn:hover {
    background: var(--bg-light);
    border-color: var(--border-color);
    opacity: 1;
}

.lang-btn:focus-visible {
    opacity: 1;
}

.flag-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.lang-code {
    display: none;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-selector:hover .lang-dropdown,
.language-selector:focus-within .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    color: var(--text-dark);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 16px;
}

.lang-option.active {
    background: rgba(44, 95, 45, 0.08);
    color: var(--primary-color);
    font-weight: 600;
}

.lang-option.active:hover {
    background: rgba(44, 95, 45, 0.12);
    padding-left: 16px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d68e15 100%);
    color: var(--bg-white);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d68e15 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

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

.btn-white-outline {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 600px;
    background-color: var(--primary-color);
    background-image: url('../images/FacciataPrincipale.jpeg');
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--bg-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Features Section
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card-photo {
    padding: 0;
    overflow: hidden;
    text-align: left;
    border: 1px solid var(--border-color);
}

.feature-card-photo .feature-media {
    height: 190px;
    overflow: hidden;
}

.feature-card-photo .feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-photo:hover .feature-media img {
    transform: scale(1.06);
}

.feature-card-photo .feature-content {
    padding: 22px;
}

.feature-card-photo .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.12) 0%, rgba(0, 150, 199, 0.22) 100%);
}

.feature-card-photo h3 {
    margin-bottom: 0.6rem;
}

.feature-card-photo p {
    margin-bottom: 0;
}

.feature-photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.feature-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* ===================================
   Activities Grid (Territorio)
   =================================== */
/* ===================================
   Home Services (Italian Home)
   =================================== */
.home-services-section {
    background:
        radial-gradient(circle at 10% 5%, rgba(0, 150, 199, 0.08), transparent 35%),
        radial-gradient(circle at 90% 95%, rgba(255, 179, 71, 0.12), transparent 40%),
        var(--bg-light);
}

.home-services-section .home-services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
}

.home-services-section .home-service-card {
    grid-column: span 4;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-services-section .home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.home-services-section .home-service-card--wide {
    grid-column: span 8;
}

.home-services-section .home-service-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.home-services-section .home-service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
    z-index: 1;
}

.home-services-section .home-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: zoom-in;
}

.home-services-section .home-service-media.media-carousel img.media-carousel-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.35s ease, transform 0.45s ease;
    z-index: 0;
}

.home-services-section .home-service-media.media-carousel img.media-carousel-image.is-active {
    opacity: 1;
    transform: scale(1);
}

.home-services-section .media-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: #0f172a;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.home-services-section .media-carousel-btn:hover {
    background: #ffffff;
}

.home-services-section .media-carousel-btn--prev {
    left: 10px;
}

.home-services-section .media-carousel-btn--next {
    right: 10px;
}

.home-services-section .home-service-media.media-carousel:hover .media-carousel-btn,
.home-services-section .home-service-media.media-carousel:focus-within .media-carousel-btn {
    opacity: 1;
}

.home-services-section .media-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.home-services-section .media-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-services-section .media-carousel-dot.is-active {
    background: #ffffff;
    transform: scale(1.2);
}

.home-services-section .home-service-card:hover .home-service-media img {
    transform: scale(1.07);
}

/* Home Services Lightbox */
.media-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease;
    z-index: 3000;
    padding: 28px;
}

.media-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.media-lightbox-image {
    max-width: min(1100px, 92vw);
    max-height: 82vh;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    object-fit: contain;
    transform: translateY(8px) scale(0.98);
    transition: transform 0.22s ease;
}

.media-lightbox.is-open .media-lightbox-image {
    transform: translateY(0) scale(1);
}

.media-lightbox-close,
.media-lightbox-nav {
    position: absolute;
    border: 0;
    border-radius: 999px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.media-lightbox-close:hover,
.media-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

.media-lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 24px;
    line-height: 1;
}

.media-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
}

.media-lightbox-nav--prev {
    left: 16px;
}

.media-lightbox-nav--next {
    right: 16px;
}

.media-lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    color: #e2e8f0;
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.4);
    padding: 6px 12px;
    border-radius: 999px;
    max-width: 90vw;
    text-align: center;
}

.home-services-section .home-service-content {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-services-section .home-service-topline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-services-section .home-service-icon {
    min-width: 36px;
    height: 36px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 10px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.12), rgba(0, 150, 199, 0.22));
    white-space: nowrap;
}

.home-services-section .home-service-chip {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #075985;
    background: rgba(14, 116, 144, 0.12);
    border: 1px solid rgba(14, 116, 144, 0.18);
    border-radius: 999px;
    padding: 4px 10px;
}

.home-services-section .home-service-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.22rem;
    line-height: 1.3;
}

.home-services-section .home-service-card--no-media {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
}

.home-services-section .home-service-card--no-media::before {
    content: '';
    display: block;
    height: 6px;
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 45%, #f59e0b 100%);
}

.home-services-section .home-service-card--no-media .home-service-content {
    padding-top: 22px;
}

.home-services-section .home-service-card p {
    margin: 0;
    color: #334155;
    line-height: 1.65;
    font-size: 0.98rem;
}

@media (max-width: 1200px) {
    .home-services-section .home-service-card,
    .home-services-section .home-service-card--wide {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .home-services-section .home-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-services-section .home-service-card,
    .home-services-section .home-service-card--wide {
        grid-column: span 1;
        border-radius: 16px;
    }

    .home-services-section .home-service-media {
        height: 210px;
    }

    .home-services-section .media-carousel-btn {
        opacity: 1;
    }

    .home-services-section .home-service-content {
        padding: 18px;
    }
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.activity-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.activity-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.activity-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.read-more:hover {
    text-decoration: underline;
}

/* ===================================
   Rooms Section
   =================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.room-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-content {
    padding: var(--card-padding);
}

.room-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.room-cta {
    margin-top: 20px;
    text-align: left;
}

.room-intro {
    max-width: 860px;
    margin: 0 auto 40px;
    background: var(--bg-white);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.room-intro-content {
    padding: 38px 34px;
}

.room-intro-content h3 {
    color: var(--primary-color);
    margin-bottom: 14px;
}

.room-intro .room-image {
    height: 280px;
}

.room-intro .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-amenities-wrap {
    margin-top: 22px;
    padding: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.room-amenities-wrap h4 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.room-amenities-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.room-amenities-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.45;
}

.room-amenities-grid li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    flex: 0 0 8px;
    color: var(--primary-color);
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.rooms-gallery-block {
    margin-top: 30px;
}

.rooms-gallery-header {
    margin-bottom: 30px;
}

.rooms-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.rooms-gallery-item {
    grid-column: span 4;
    min-height: 260px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rooms-gallery-item-wide {
    grid-column: span 8;
    grid-row: span 2;
}

.rooms-gallery-item-wide img {
    object-position: center center;
}

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

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

/* Rooms Detail Page */
.rooms-detail-section {
    padding-top: 40px;
}

.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.room-detail-reverse {
    direction: rtl;
}

.room-detail-reverse > * {
    direction: ltr;
}

.room-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 1.5rem 0;
}

.room-feature {
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.room-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.room-amenities {
    margin: 2rem 0;
}

.room-amenities li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: var(--card-padding);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Service card con foto */
.service-card--has-media {
    padding: 0;
    overflow: hidden;
}

.service-card--has-media .service-card-body {
    padding: var(--card-padding);
}

.service-card--has-media .home-service-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card--has-media .home-service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.30) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-card--has-media .home-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card--has-media:hover .home-service-media img {
    transform: scale(1.05);
}

.service-card--has-media .home-service-media.media-carousel img.media-carousel-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.35s ease, transform 0.45s ease;
    z-index: 0;
}

.service-card--has-media .home-service-media.media-carousel img.media-carousel-image.is-active {
    opacity: 1;
    transform: scale(1);
}

.service-card--has-media .media-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.84);
    color: #0f172a;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.service-card--has-media .media-carousel-btn:hover {
    background: #ffffff;
}

.service-card--has-media .media-carousel-btn--prev { left: 10px; }
.service-card--has-media .media-carousel-btn--next { right: 10px; }

.service-card--has-media .home-service-media.media-carousel:hover .media-carousel-btn,
.service-card--has-media .home-service-media.media-carousel:focus-within .media-carousel-btn {
    opacity: 1;
}

.service-card--has-media .media-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.service-card--has-media .media-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,0.62);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.service-card--has-media .media-carousel-dot.is-active {
    background: #ffffff;
    transform: scale(1.2);
}



/* ===================================
   Home Gallery Section (Italian Home)
   =================================== */
.home-gallery-section {
    padding-top: 24px;
}

.home-gallery-block + .home-gallery-block {
    margin-top: 64px;
}

.home-gallery-head {
    margin-bottom: 18px;
}

.home-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-gallery-item {
    grid-column: span 1;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: var(--bg-light);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.home-gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
}

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

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

@media (max-width: 768px) {
    .home-gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .home-gallery-block + .home-gallery-block {
        margin-top: 48px;
    }

    .home-gallery-item,
    .home-gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 5 / 4;
    }
}
/* ===================================
   Photo Gallery & Spotlight Sections
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 300px;
    background-color: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

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

.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.spotlight-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}

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

.info-column h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-column p {
    margin-bottom: 0.5rem;
}

/* ===================================
   Booking Section
   =================================== */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-contacts {
    margin-top: 1.5rem;
    text-align: left;
}

.step-contacts p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.payment-content {
    max-width: 900px;
    margin: 0 auto;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-method {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.payment-method h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.payment-notes {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.payment-notes ul {
    list-style: none;
}

.payment-notes li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

.pricing-features {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.pricing-cta {
    margin-top: 2rem;
}

.what-to-bring-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bring-info {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.bring-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bring-info ul {
    list-style: none;
}

.bring-info li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* ===================================
   Contact Section
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.12) 0%, rgba(0, 150, 199, 0.2) 100%);
    margin-bottom: 0.85rem;
    font-size: 1.35rem;
}

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

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-hours {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 30px 28px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.whatsapp-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.85rem;
    background: linear-gradient(165deg, #ffffff 0%, #f2fbff 100%);
    border-left: 4px solid var(--primary-color);
}

.whatsapp-contact p {
    margin-bottom: 0;
}

.whatsapp-btn {
    align-self: flex-start;
    padding: 11px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

.whatsapp-contact .contact-hours {
    font-size: 0.875rem;
    margin-top: 2px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.directions-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.direction-method {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.direction-method h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===================================
   Location Section
   =================================== */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-list {
    list-style: none;
    margin: 2rem 0;
}

.location-list li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.location-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.map-placeholder .small {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.map-wrapper {
    margin-bottom: 40px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 100px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--bg-white);
    text-decoration: underline;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

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

.social-links a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* ===================================
   Events Section
   =================================== */
.event-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-width: 860px;
    margin: 0 auto;
}

.event-card-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

.event-card-header h3 {
    margin: 0 0 0.25rem 0;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.5rem;
}

.event-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
}

.event-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.event-fact {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 0.9rem 1rem;
}

.event-fact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.event-fact-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .about-content,
    .location-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .room-detail {
        grid-template-columns: 1fr;
    }

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

    .room-intro-content {
        padding: 30px 24px;
    }

    .rooms-gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .rooms-gallery-item {
        grid-column: span 3;
    }

    .rooms-gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 320px;
    }
    
    .room-detail-reverse {
        direction: ltr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section-title { font-size: 2rem; }
    
    .logo h1 {
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .language-selector {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .hero-cta .btn-large {
        padding: 11px 32px;
        font-size: 0.95rem;
        width: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .rooms-grid,
    .services-grid,
    .booking-steps {
        grid-template-columns: 1fr;
    }

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

    .rooms-gallery-item,
    .rooms-gallery-item-wide {
        grid-column: auto;
        min-height: 240px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .room-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .footer,
    .btn,
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===================================
   Accessibility
   =================================== */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

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

/* ===================================
   Performance Optimizations
   =================================== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
img[loading="lazy"].loaded {
    opacity: 1;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===================================
   Pricing Table Styles
   =================================== */
.pricing-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

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

.pricing-item:hover {
    background-color: var(--bg-light);
}

.pricing-month {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.pricing-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* ── Home Pricing Section ── */
.home-pricing {
    text-align: center;
}
.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.home-pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.home-pricing-card .month {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.home-pricing-card .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}
.home-pricing-card .price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}
.home-pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.home-pricing-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 480px) {
    .home-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .45);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .55);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

















