/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Marcellus&family=Raleway:wght@400;500&display=swap');

/* Variabili e Reset */
:root {
    --primary-color: #bd9035;
    /* Oro Antico */
    --secondary-color: #555555;
    /* Grigio Scuro per testo */
    --heading-color: #2c2c2c;
    /* Quasi nero per titoli */
    --background-color: #ffffff;
    /* Bianco pulito */
    --light-bg: #f8f8f8;
    /* Grigio chiarissimo per alternanza sezioni */

    --font-heading: 'Marcellus', serif;
    --font-body: 'Inter', sans-serif;
    --font-nav: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    color: var(--secondary-color);
    background-color: var(--background-color);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    /* Desktop font size 1.4rem */
    font-weight: 400;
    color: var(--heading-color);
    letter-spacing: 1px;
}

.logo-subtitle {
    color: #888888;
    /* Slightly lighter gray */
    font-weight: 300;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 0.85rem;
    /* Desktop font size 0.85rem */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--heading-color);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 80vh;
    /* Leggermente più alta per impatto visivo */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/home-terrazza.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

/* Animazione Testo Hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    /* Più grande ed elegante */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out both;
}

.hero p {
    font-family: var(--font-nav);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Container Generale */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Sezioni Testo */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

/* Linea decorativa sotto i titoli */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.content-block {
    margin-bottom: 5rem;
}

.content-text {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 3rem;
    text-align: center;
    /* Allineamento centrato più elegante */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-text strong {
    font-weight: 600;
    color: var(--heading-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.feature-item {
    background: transparent;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-color);
    /* Bordo sottile elegante */
    border-radius: 0;
    /* Angoli vivi */
    font-family: var(--font-nav);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Galleria */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* Spaziatura più ampia */
}

.gallery-item {
    overflow: hidden;
    border-radius: 0;
    /* Angoli vivi */
    box-shadow: none;
    /* Rimosso ombra per look flat e pulito */
}

.gallery-item img {
    width: 100%;
    height: 300px;
    /* Immagini leggermente più alte */
    object-fit: cover;
    opacity: 1;
    /* Di base piena visibilità per foto alta qualità */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
    /* Leggera luminosità in più */
}

/* Pagina Viterbo */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.place-card {
    background: #fff;
    border-radius: 0;
    /* Angoli vivi */
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Bordo sottilissimo */
    transition: box-shadow 0.3s ease;
}

.place-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.place-content {
    padding: 2.5rem;
    text-align: center;
}

.place-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

/* Sezione Mappa e Recensioni */
.location-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
    margin-top: 4rem;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info {
    text-align: left;
}

.rating-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
    /* Angoli vivi */
}

.rating-text {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.review-subtext {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.address-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

.station-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info {
        text-align: center;
    }
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: auto;
}

.footer-text {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    /* Movimento un po' più ampio */
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    /* Curva più elegante */
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pagina Recensioni */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background-color: #fff;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Bordo molto leggero */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(189, 144, 53, 0.2);
    /* Linea oro sottile */
}

.stars {
    color: var(--primary-color);
    letter-spacing: 2px;
}

.review-score {
    font-weight: 600;
    color: var(--heading-color);
}

.review-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.review-body {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--heading-color);
    text-align: right;
}

/* Booking CTA */
.booking-cta-container {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-bg);
    margin-top: 2rem;
}

.booking-cta-container p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-nav);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Stili Piattaforme Recensioni */
.platforms-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.platform-section {
    margin-bottom: 0;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 4px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.platform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Changed to space-between for badge alignment */
    margin-bottom: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.platform-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--heading-color);
    margin: 0;
}

.platform-badge {
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 2px;
}

.booking-badge {
    background-color: #003580;
    /* Booking Blue */
}

.airbnb-badge {
    background-color: #FF5A5F;
    /* Airbnb Red */
}

.separator-line {
    display: none;
    /* Hidden on desktop */
}

/* Specific Style for Gallery Section to Center it */
.gallery-section {
    max-width: 800px;
    width: 100%;
    margin: 4rem auto;
    flex: none;
    /* Reset flex inheritance */
}

.booking-cta-container {
    background-color: transparent;
    /* Reset per integrazione nelle sezioni */
    margin-top: 1rem;
    padding: 1rem;
}

/* Galleria Scorrimento Orizzontale */
.gallery-container {
    padding: 0;
    position: relative;
    max-width: 100%;
}

.gallery-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-controls {
    display: flex;
    gap: 0.5rem;
}

.platform-title {
    margin: 0;
}

.scrolling-gallery {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox: nasconde scrollbar */
    width: 100%;
}

.scrolling-gallery::-webkit-scrollbar {
    display: none;
}

.scrolling-gallery::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.scrolling-gallery::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.scrolling-gallery img {
    height: 350px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    /* Impedisce il ridimensionamento */
    transition: transform 0.3s ease;
}

.scrolling-gallery img:hover {
    transform: scale(1.02);
}

.gallery-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0;
}

.gallery-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prev-btn,
.next-btn {
    margin: 0;
}

/* Sezioni in Evidenza */
.gold-bg {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 4rem 2rem;
    border-radius: 4px;
    margin-bottom: 5rem;
    box-shadow: 0 10px 30px rgba(189, 144, 53, 0.2);
}

.gold-bg .section-title {
    color: #ffffff;
}

.gold-bg .section-title::after {
    background-color: #ffffff;
}

.gold-bg .content-text {
    color: #ffffff;
}

.gold-bg strong {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* Modal / Lightbox */
.modal {
    display: none;
    /* Nascosto di default */
    position: fixed;
    z-index: 2000;
    /* Sopra tutto */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation-name: zoom;
    animation-duration: 0.6s;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* Cookie Consent Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--primary-color);
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

#cookie-banner .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}

#cookie-banner .cta-button:hover {
    background-color: #a37a28;
    color: white;
}

#cookie-banner.fade-out {
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Host Section */
.host-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.host-card {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.host-avatar {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.host-initial {
    font-size: 2.5rem;
    color: #fff;
    font-family: var(--font-heading);
}

.host-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.host-subtitle {
    font-family: var(--font-nav);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.host-details {
    list-style: none;
}

.host-details li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--secondary-color);
}

.host-details strong {
    color: var(--heading-color);
    font-weight: 500;
}

@media (max-width: 600px) {
    .host-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
}

/* --- Mobile Hamburger Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--heading-color);
    transition: all 0.3s ease;
}

/* Animazione Hamburger */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--primary-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        /* Sopra tutto tranne hamburger */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Blocca scroll quando menu aperto */
    body.no-scroll {
        overflow: hidden;
    }

    /* Cookie Banner Mobile Fixes */
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    #cookie-banner {
        padding: 1rem;
        padding-bottom: 1.5rem;
        /* Spazio per la home bar iOS */
    }

    #cookie-banner .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Force Title to Single Line */
    .logo {
        font-size: 0.9rem !important;
        /* Ridotto significativamente */
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 75%;
        /* Lascia spazio hamburger */
        display: block;
    }
}

/* Specific Mobile Fix for Logo */
@media screen and (max-width: 768px) {
    .logo {
        font-size: 1.2rem !important;
        /* Un po' più grande per leggibilità */
        white-space: normal !important;
        /* Permette andata a capo */
        overflow: visible !important;
        text-overflow: clip !important;
        width: 75% !important;
        /* Lascia spazio hamburger */
        display: block !important;
        line-height: 1.3;
    }

    .platforms-container {
        flex-direction: column;
        gap: 2rem;
    }

    .platform-section {
        width: 100%;
        max-width: none;
    }

    .separator-line {
        display: block;
        /* Show separator on mobile if desired, or keep hidden since gap handles it */
        height: 1px;
        background-color: #ddd;
        margin: 2rem auto;
        width: 100%;
    }
}

/* Language Switcher Removed */

/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-fab {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-popup {
    background-color: white;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.whatsapp-body {
    padding: 20px;
    text-align: center;
}

.whatsapp-body p {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.9rem;
}

.whatsapp-contact-info {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}