/* ================================
   RESET E IMPOSTAZIONI GLOBALI
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --radius-small: 14px;
    --radius-medium: 18px;
    --radius-navbar: 20px;
    --radius-badge: 20px;
    --radius-large: 24px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --radius-circle: 50%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "San Francisco",
                 "Helvetica Neue", Helvetica, Arial, sans-serif;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.18), transparent 34%),
        linear-gradient(225deg, rgba(37, 211, 102, 0.16), transparent 32%),
        linear-gradient(315deg, rgba(255, 99, 132, 0.12), transparent 38%),
        linear-gradient(180deg, #ffffff, #eef4f8 52%, #f8fbfa);
    background-attachment: fixed;
    color: #1d1d1f;
    line-height: 1.6;
    padding-top: 120px;
}

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

button {
    border-radius: var(--radius-small);
}

input,
textarea {
    border-radius: var(--radius-small);
}

:where(a, button, input, textarea, .portfolio-item, .section-photo, .booking-photo, .glass-button) {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        opacity 0.3s ease;
}

/* Contenitore */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* ================================
   CUSTOM CURSOR
================================ */
.cursor-liquid,
.glass-cursor {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    body.custom-cursor-ready,
    body.custom-cursor-ready a,
    body.custom-cursor-ready button,
    body.custom-cursor-ready .btn-primary,
    body.custom-cursor-ready .btn-secondary,
    body.custom-cursor-ready .portfolio-item,
    body.custom-cursor-ready input,
    body.custom-cursor-ready textarea,
    body.custom-cursor-ready .service-btn,
    body.custom-cursor-ready .glass-button {
        cursor: none;
    }

    .cursor-liquid,
    .glass-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 28px;
        height: 28px;
        display: block;
        border-radius: var(--radius-circle);
        pointer-events: none;
        opacity: 0;
        z-index: 10000;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.6);
        transform: translate3d(-50%, -50%, 0);
        backdrop-filter: blur(10px) saturate(180%);
        -webkit-backdrop-filter: blur(10px) saturate(180%);
        box-shadow:
            0 12px 30px rgba(29, 29, 31, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.72),
            inset 0 -1px 0 rgba(255, 255, 255, 0.22);
        transition:
            width 0.25s ease,
            height 0.25s ease,
            opacity 0.2s ease,
            background 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
        will-change: left, top, width, height, opacity;
    }

    body.cursor-visible .cursor-liquid,
    body.cursor-visible .glass-cursor {
        opacity: 1;
    }

    body.cursor-hover .cursor-liquid,
    body.cursor-hover .glass-cursor {
        width: 42px;
        height: 42px;
        background:
            radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.14) 58%),
            rgba(255, 255, 255, 0.24);
        border-color: rgba(255, 255, 255, 0.78);
        box-shadow:
            0 16px 38px rgba(29, 29, 31, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.86),
            inset 0 -1px 0 rgba(255, 255, 255, 0.28);
    }
}

/* ================================
   MOTION
================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   LIQUID GLASS EFFECT
================================ */
.liquid-glass {
    position: relative;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
        rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-radius: var(--radius-large);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow:
        0 18px 45px rgba(29, 29, 31, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        inset 0 -1px 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

/* Riflesso luminoso */
.liquid-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.15) 40%,
        transparent 60%
    );
    opacity: 0.5;
    pointer-events: none;
}

.liquid-glass::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

/* ================================
   HEADER E NAVBAR
================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.44);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 0 0 var(--radius-navbar) var(--radius-navbar);
    overflow: hidden;
}

.glass-navbar {
    border-radius: 0 0 var(--radius-navbar) var(--radius-navbar);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-navbar);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: var(--radius-pill);
    text-decoration: none;
}

.logo-img {
    height: 72px;
    width: auto;
    max-width: min(430px, 54vw);
    object-fit: contain;
    opacity: 0.94;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        filter 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
    filter: drop-shadow(0 8px 18px rgba(29, 29, 31, 0.14));
}

.logo:focus-visible {
    outline: 2px solid rgba(0, 113, 227, 0.45);
    outline-offset: 6px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #6e6e73;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0071e3;
    background: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 10px 24px rgba(0, 113, 227, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transform: translateY(-2px);
}

/* ================================
   HERO SECTION
================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(238, 244, 248, 0.58)),
        url("../img/3e610634-4bf5-470b-9b2c-827deb49c182.JPG") center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.22), transparent 38%),
        linear-gradient(315deg, rgba(37, 211, 102, 0.16), transparent 36%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    pointer-events: none;
}

.hero-content {
    z-index: 1;
    width: min(90%, 840px);
    padding: 64px 42px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #6e6e73;
    margin-bottom: 30px;
}

/* Pulsanti */
.btn-primary {
    display: inline-block;
    position: relative;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.92), rgba(0, 160, 210, 0.78)),
        rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 12px 26px;
    font-size: 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 14px 28px rgba(0, 113, 227, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.glass-button {
    display: inline-block;
    position: relative;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-booking::before,
.whatsapp-btn::before,
.glass-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.34),
        transparent
    );
    opacity: 0;
    transform: translateX(-55%) scaleX(0.6);
    transition:
        opacity 0.3s ease,
        transform 0.45s ease;
    pointer-events: none;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-booking:hover::before,
.whatsapp-btn:hover::before,
.glass-button:hover::before {
    opacity: 1;
    transform: translateX(55%) scaleX(1);
}

.btn-primary:hover {
    background:
        linear-gradient(135deg, rgba(0, 91, 181, 0.95), rgba(0, 145, 195, 0.82)),
        rgba(255, 255, 255, 0.22);
    box-shadow:
        0 18px 36px rgba(0, 113, 227, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    transform: translateY(-3px) scale(1.015);
}

.btn-secondary {
    display: inline-block;
    position: relative;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    color: #0071e3;
    padding: 12px 26px;
    font-size: 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 113, 227, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(0, 113, 227, 0.82);
    color: #ffffff;
    box-shadow:
        0 16px 32px rgba(0, 113, 227, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    transform: translateY(-3px) scale(1.015);
}

.hero-buttons {
    margin-top: 20px;
}

/* ================================
   SEZIONI
================================ */
.about,
.contact {
    padding: 120px 20px;
    background: transparent;
}

.portfolio {
    padding: 120px 20px;
    background: transparent;
}

.page-title {
    padding-top: 160px;
}

.about .container,
.contact .container,
.booking-container,
.glass-card {
    position: relative;
    padding: 54px 44px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.26)),
        rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px) saturate(185%);
    -webkit-backdrop-filter: blur(24px) saturate(185%);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: var(--radius-large);
    box-shadow:
        0 18px 44px rgba(29, 29, 31, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.split-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 34px;
    align-items: center;
    text-align: left;
}

.contact-preview {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
}

.section-copy {
    position: relative;
    z-index: 1;
}

.section-photo,
.booking-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-large);
    border: 1px solid rgba(255, 255, 255, 0.56);
    box-shadow:
        0 18px 34px rgba(29, 29, 31, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.section-photo:hover,
.booking-photo:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 24px 46px rgba(29, 29, 31, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.about h2,
.portfolio h2,
.contact h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about p,
.contact p,
.section-subtitle {
    color: #6e6e73;
}

/* ================================
   PORTFOLIO - LIQUID GLASS
================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-align: left;
    border-radius: var(--radius-large);
    border: 1px solid rgba(255, 255, 255, 0.56);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.24)),
        rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(22px) saturate(185%);
    -webkit-backdrop-filter: blur(22px) saturate(185%);
    box-shadow:
        0 16px 36px rgba(29, 29, 31, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.portfolio-info {
    padding: 22px;
}

.portfolio-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.portfolio-info p {
    color: #6e6e73;
    font-size: 15px;
}

.portfolio-item:hover {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
    box-shadow:
        0 24px 52px rgba(29, 29, 31, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transform: translateY(-3px) scale(1.015);
}

.portfolio-btn {
    margin-top: 34px;
}

/* ================================
   FORM CONTATTI
================================ */
.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: var(--radius-large);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-small);
    border: 1px solid rgba(255, 255, 255, 0.58);
    font-family: inherit;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(16px) saturate(170%);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.contact-form input:hover,
.contact-form textarea:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 113, 227, 0.28);
    box-shadow:
        0 10px 22px rgba(29, 29, 31, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

/* ================================
   SEZIONE PRENOTAZIONE
================================ */
.booking-section {
    padding: 120px 20px;
    background: transparent;
    display: flex;
    justify-content: center;
}

.booking-container {
    max-width: 900px;
    width: 100%;
    padding: 50px;
}

.booking-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    gap: 28px;
    align-items: center;
    text-align: left;
    margin-bottom: 12px;
}

.booking-photo {
    aspect-ratio: 5 / 4;
}

.booking-form label {
    font-size: 12px;
    font-weight: 600;
    color: #6e6e73;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-small);
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(16px) saturate(170%);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
    font-family: inherit;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: rgba(0, 113, 227, 0.48);
    box-shadow:
        0 0 0 3px rgba(0, 113, 227, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-form input:hover,
.booking-form textarea:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 113, 227, 0.28);
    box-shadow:
        0 10px 22px rgba(29, 29, 31, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
}

/* Pulsanti servizi */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-btn {
    padding: 10px 18px;
    border-radius: var(--radius-badge);
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(16px) saturate(170%);
    -webkit-backdrop-filter: blur(16px) saturate(170%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 14px 28px rgba(29, 29, 31, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-btn.selected {
    background: rgba(0, 113, 227, 0.86);
    color: white;
    border-color: rgba(255, 255, 255, 0.42);
}

/* Pulsante invio */
.btn-booking {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius-pill);
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.92), rgba(0, 160, 210, 0.78)),
        rgba(255, 255, 255, 0.18);
    color: white;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 14px 28px rgba(0, 113, 227, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-booking:hover {
    box-shadow:
        0 18px 36px rgba(0, 113, 227, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    transform: translateY(-3px) scale(1.015);
}

/* Separatore */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #6e6e73;
    font-size: 12px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(110, 110, 115, 0.22);
}

.divider span {
    padding: 0 10px;
}

/* WhatsApp */
.whatsapp-btn {
    display: block;
    position: relative;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(37, 211, 102, 0.92), rgba(20, 170, 89, 0.8)),
        rgba(255, 255, 255, 0.18);
    color: white;
    padding: 16px;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow:
        0 14px 28px rgba(37, 211, 102, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-btn:hover {
    box-shadow:
        0 18px 36px rgba(37, 211, 102, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    transform: translateY(-3px) scale(1.015);
}

.whatsapp-btn span {
    display: block;
    font-size: 13px;
    font-weight: 400;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    color: #6e6e73;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.52);
}

.footer-logo {
    width: auto;
    max-width: 72vw;
    height: 88px;
    margin: 0 auto 16px;
    object-fit: contain;
    opacity: 0.72;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
    .logo-img {
        height: 58px;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .logo-img {
        height: 48px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .about h2,
    .portfolio h2,
    .contact h2 {
        font-size: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .split-card,
    .contact-preview,
    .booking-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .booking-container {
        padding: 30px 20px;
    }
}

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

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

    .hero-content,
    .about .container,
    .contact .container,
    .booking-container {
        padding: 34px 20px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo {
        height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Sezione contatto diretto */
.contact-direct {
    text-align: center;
    margin-top: 30px;
}

/* Divider con linee laterali */
.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #6b7280;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-divider::before,
.contact-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

/* Pulsante WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

/* Icona WhatsApp */
.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Testo */
.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.whatsapp-title {
    font-size: 18px;
    font-weight: 600;
}

.whatsapp-subtitle {
    font-size: 13px;
    opacity: 0.95;
}

/* Effetto Hover */
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* Effetto Click */
.whatsapp-btn:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

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

    .whatsapp-subtitle {
        display: none;
    }

    .contact-divider {
        font-size: 12px;
    }
}

/* Nota informativa sotto il pulsante */
.booking-note {
    text-align: center;      /* Centra il testo */
    margin: 15px auto 0;     /* Spaziatura superiore e centratura */
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;        /* Evita che il testo si allarghi troppo */
    display: block;
}

@media (max-width: 768px) {
    .booking-note {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.5;
    }
}