.btn-send {
    transition: transform 0.12s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.12s;
}
.btn-send:active {
    transform: scale(0.92);
    box-shadow: 0 0 0 6px #f8e8f3, 0 0 16px #d946a6;
}
.footer-contattami-animated {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #bdbdbd;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-align: center;
    animation: none;
}

.footer-signature {
    margin-bottom: 8px !important;
    text-align: center !important;
}
.footer-animated {
    padding-bottom: 10px !important;
}
/* Footer animado igual a chi sono */
.footer-animated {
    background: linear-gradient(120deg, #fff 0%, #f8e8f3 100%);
    animation: gradientShift 8s ease-in-out infinite;
    padding: 36px 0 24px 0;
    width: 100%;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}
.footer-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.18s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.18s, filter 0.18s;
    box-shadow: none;
}
.footer-social-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(1.1);
    transition: filter 0.18s, box-shadow 0.18s, transform 0.18s cubic-bezier(.68,-0.55,.27,1.55);
}
.footer-icon-link:hover .footer-social-icon,
.footer-icon-link:focus .footer-social-icon {
    filter: drop-shadow(0 0 16px #d946a6) brightness(1.25);
    transform: scale(1.18);
}
.footer-icon-link:hover,
.footer-icon-link:focus {
    box-shadow: 0 0 0 4px #f8e8f3, 0 0 16px #d946a6;
    outline: none;
}
.footer-signature {
    margin-top: 0;
}
.footer-signature h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #bdbdbd;
    margin: 0 0 8px 0;
    font-style: italic;
}
.footer-signature p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    color: #bdbdbd;
    margin: 0;
    font-style: italic;
}
@media (max-width: 600px) {
    .footer-social-icon {
        width: 48px;
        height: 48px;
    }
    .footer-icons {
        gap: 18px;
    }
    .footer-animated {
        padding: 24px 0 12px 0;
    }
    .footer-signature h3 {
        font-size: 1.2rem;
    }
    .footer-signature p {
        font-size: 1rem;
    }
}
/* Contact Social Section */
.contact-social-section {
    background: linear-gradient(135deg, #f8e8f3 0%, #f9f9fb 100%);
    padding: 48px 0 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}
.contact-social-title {
    color: #d946a6;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    text-transform: lowercase;
}
.contact-social-icons {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}
.contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.18s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.18s, filter 0.18s;
    box-shadow: none;
}
.contact-social-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(1.1);
    transition: filter 0.18s, box-shadow 0.18s, transform 0.18s cubic-bezier(.68,-0.55,.27,1.55);
}
.contact-icon-link:hover .contact-social-icon,
.contact-icon-link:focus .contact-social-icon {
    filter: drop-shadow(0 0 16px #d946a6) brightness(1.25);
    transform: scale(1.18);
}
.contact-icon-link:hover,
.contact-icon-link:focus {
    box-shadow: 0 0 0 4px #f8e8f3, 0 0 16px #d946a6;
    outline: none;
}
@media (max-width: 600px) {
    .contact-social-icon {
        width: 48px;
        height: 48px;
    }
    .contact-social-icons {
        gap: 18px;
    }
    .contact-social-section {
        padding: 32px 0 18px 0;
    }
}
@keyframes flashContact {
    0% { filter: drop-shadow(0 0 0px #d946a6) brightness(1); }
    20% { filter: drop-shadow(0 0 16px #d946a6) brightness(2); }
    50% { filter: drop-shadow(0 0 24px #d946a6) brightness(2.2); }
    80% { filter: drop-shadow(0 0 16px #d946a6) brightness(2); }
    100% { filter: drop-shadow(0 0 0px #d946a6) brightness(1); }
}

.highlight-flash {
    animation: flashContact 1.2s ease-in-out 1;
}
}

.footer-icon {
    transition: filter 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 0px #d946a6);
}

.footer-icon:hover, .footer-icon:focus {
    animation: flashContact 0.6s ease-in-out 3, bounceFooter 0.6s cubic-bezier(.68,-0.55,.27,1.55) 3;
    filter: drop-shadow(0 0 12px #d946a6) brightness(1.2);
}

.footer-icon.highlight-flash {
        animation: flashContact 0.6s ease-in-out 3, bounceFooter 0.6s cubic-bezier(.68,-0.55,.27,1.55) 3;
}

@keyframes bounceFooter {
    0%   { transform: scale(1) translateY(0); }
    20%  { transform: scale(1.18, 0.92) translateY(-8px); }
    40%  { transform: scale(0.95, 1.08) translateY(0); }
    60%  { transform: scale(1.05, 0.97) translateY(-4px); }
    80%  { transform: scale(1, 1) translateY(0); }
    100% { transform: scale(1) translateY(0); }
}

@keyframes iconGlow {
    0% { filter: drop-shadow(0 0 0px #d946a6); }
    50% { filter: drop-shadow(0 0 8px #d946a6) brightness(1.2); }
    100% { filter: drop-shadow(0 0 0px #d946a6); }
}
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8, #e8f5d0, #8dd9d9, #f5c5d8, #d5b8e8, #ff69b4, #da46a6, #b8a8e8);
    background-size: 400% 400%;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: gradientShift 20s ease infinite;
    border-bottom: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(217, 70, 166, 0.4));
}

.nav-logo:active {
    transform: scale(0.95);
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-prenota)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: #d946a6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:not(.btn-prenota):hover {
    color: #d946a6;
    transform: scale(1.15);
    animation: linkBounce 0.5s ease-out;
}

.nav-menu a:not(.btn-prenota):active {
    transform: scale(0.95);
}

.nav-menu a:not(.btn-prenota):hover::after {
    width: 100%;
}

@keyframes linkBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-2px);
    }
}

.btn-prenota {
    background: #d946a6;
    color: white !important;
    padding: 12px 30px;
    border-radius: 25px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
}

.btn-prenota:hover {
    background: #c13790;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(217, 70, 166, 0.5),
        0 0 20px rgba(217, 70, 166, 0.3);
    animation: buttonPulse 0.6s ease-out;
}

@keyframes buttonPulse {
    0% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.08);
    }
    100% {
        transform: translateY(-3px) scale(1.05);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8, #e8f5d0, #8dd9d9, #f5c5d8, #d5b8e8, #ff69b4, #da46a6, #b8a8e8);
    background-size: 400% 400%;
    padding: 40px 0 100px;
    text-align: center;
    animation: gradientShift 20s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.hero-illustration {
    margin-bottom: 40px;
}

.hero-illustration img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.hero-illustration video {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.3), 0 0 90px rgba(217, 70, 166, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 25px;
.form-group textarea,
    border-radius: 30px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    outline: none;
}

.email-input::placeholder {
    color: #999;
}

.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    background: #fff;
    color: #333;
    margin-top: 6px;
    margin-bottom: 6px;
    box-sizing: border-box;
}
.btn-contattami {
    padding: 15px 35px;
    background: #4a4a4a;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-contattami:hover {
    background: #333;
}

/* Chi Sono Section */
.chi-sono {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefefe, #f9f3f8, #f3ecf5, #ede5f2, #f5f0fa, #faf5fc, #fef9ff, #fefefe);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    scroll-margin-top: 70px;
    margin: 0;
}

.chi-sono h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 40px;
    text-align: center;
}

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

.chi-sono-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.chi-sono-content .tagline {
    font-size: 20px;
    color: #6b5b95;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(184, 168, 232, 0.15), rgba(232, 197, 216, 0.15));
    border-radius: 15px;
    text-align: center;
}

/* Servizi Section */
.servizi {
    padding: 80px 0;
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8, #e8f5d0, #8dd9d9, #f5c5d8, #d5b8e8, #ff69b4, #da46a6, #b8a8e8);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    scroll-margin-top: 70px;
    margin: 0;
}

.servizi h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-align: center;
}

.servizi-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

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

.servizio-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.servizio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.servizio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.servizio-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.servizio-card > p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.servizio-features {
    list-style: none;
    padding: 0;
}

.servizio-features li {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.servizio-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b5b95;
    font-weight: bold;
    font-size: 18px;
}

.servizi-info {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.servizi-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 30px;
}

.target-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.target-item {
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

/* Recensioni Section */
.recensioni {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefefe, #f9f3f8, #f3ecf5, #ede5f2, #f5f0fa, #faf5fc, #fef9ff, #fefefe);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    scroll-margin-top: 70px;
    margin: 0;
}

.recensioni h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-align: center;
}

.recensioni-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.recensioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.recensione-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recensione-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.recensione-stars {
    font-size: 24px;
    color: #fbbf24;
    letter-spacing: 2px;
}

.recensione-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    flex-grow: 1;
}

.recensione-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.recensione-author strong {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: 600;
}

.recensione-author span {
    font-size: 14px;
    color: #999;
}

/* Prenota Section */
.prenota-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8, #e8f5d0, #8dd9d9, #f5c5d8, #d5b8e8, #ff69b4, #da46a6, #b8a8e8);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    scroll-margin-top: 70px;
    margin: 0;
}

.prenota-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-align: center;
}

.prenota-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.calendly-inline-widget {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Contattami Section */
.contattami {
    padding: 80px 0;
    background: linear-gradient(135deg, #b8a8e8, #e8c5d8, #e8f5d0, #8dd9d9, #f5c5d8, #d5b8e8, #ff69b4, #da46a6, #b8a8e8);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.contattami h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-align: center;
}

.contattami-intro {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    }

    .form-info {
        margin: 18px 0;
        padding: 0;
        background: none;
        border: none;
        color: #333;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        display: block;
        text-align: left;
    }
    }
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d946a6;
    box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
}

    box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 166, 0.4);
    background: linear-gradient(135deg, #e056b7, #d13fa1);
}

.btn-send:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #fefefe;
    border-top: 1px solid #eee;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-signature {
    color: #ccc;
    margin-bottom: 5px;
    text-align: center;
}

.footer-signature h3 {
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #ccc;
    margin: 0 0 5px 0;
}

.footer-signature p {
    font-size: 16px;
    font-style: italic;
    color: #ccc;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #ccc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a svg {
    width: 32px;
    height: 32px;
}

.footer-whatsapp img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain;
    vertical-align: middle;
    transition: filter 0.3s;
    display: block;
    margin: 0 auto;
}

.social-links a:hover {
    color: #6b5b95;
    transform: scale(1.2);
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(217, 70, 166, 0.4);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(217, 70, 166, 0.7);
        transform: translateX(-50%) scale(1.05);
    }
}

/* Floating Prenota Button */
.floating-prenota {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #d946a6;
    color: white;
    padding: 16px 60px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(217, 70, 166, 0.4);
    z-index: 1000;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
    animation: pulseButton 2s ease-in-out infinite;
}

.floating-prenota:hover {
    background: #c13790;
    transform: translateX(-50%) translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #b8a8e8, #e8c5d8, #e8f5d0, #8dd9d9, #f5c5d8, #d5b8e8, #ff69b4, #da46a6, #b8a8e8);
        background-size: 400% 400%;
        animation: gradientShift 20s ease infinite;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-menu a:not(.btn-prenota)::after {
        display: none;
    }

    .btn-prenota {
        display: none;
    }

    .floating-prenota {
        display: block;
    }

    .hero {
        padding: 20px 0 80px;
        min-height: 100vh;
    }

    .hero-illustration {
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 64px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .email-input,
    .btn-contattami {
        width: 100%;
    }

    .chi-sono {
        padding: 60px 0;
    }

    .chi-sono h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .chi-sono-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .chi-sono-content .tagline {
        font-size: 18px;
        padding: 20px;
    }

    .servizi {
        padding: 60px 0;
    }

    .servizi h2 {
        font-size: 32px;
    }

    .servizi-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .servizi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .servizio-card {
        padding: 30px 20px;
    }

    .servizio-card h3 {
        font-size: 24px;
    }

    .servizio-card > p {
        font-size: 15px;
    }

    .servizi-info {
        padding: 30px 20px;
    }

    .servizi-info h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .target-list {
        gap: 12px;
    }

    .target-item {
        padding: 12px 20px;
        font-size: 15px;
    }

    .recensioni {
        padding: 60px 0;
    }

    .recensioni h2 {
        font-size: 32px;
    }

    .recensioni-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .recensioni-grid {
        gap: 20px;
    }

    .recensione-card {
        padding: 25px;
        gap: 15px;
    }

    .prenota-section {
        padding: 60px 0;
    }

    .prenota-section h2 {
        font-size: 32px;
    }

    .prenota-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .calendly-inline-widget {
        height: 600px !important;
    }

    .contact-form {
        max-width: 100%;
    }

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

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    .btn-send {
        padding: 16px;
        font-size: 16px;
    }

    .footer {
        padding: 30px 0 90px;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-signature {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a svg {
        width: 36px;
        height: 36px;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo img {
        height: 35px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-form {
        gap: 10px;
    }

    .email-input,
    .btn-contattami {
        padding: 12px 16px;
        font-size: 14px;
    }

    .chi-sono h2,
    .servizi h2,
    .recensioni h2,
    .prenota-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .chi-sono-content p,
    .servizi-intro,
    .recensioni-intro,
    .prenota-intro {
        font-size: 15px;
    }

    .servizio-card {
        padding: 20px;
    }

    .servizio-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .servizio-icon svg {
        width: 50px;
        height: 50px;
    }

    .servizio-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .servizio-card > p {
        font-size: 14px;
    }

    .servizio-features li {
        font-size: 13px;
        padding: 8px 0 8px 25px;
    }

    .servizi-info {
        padding: 20px;
    }

    .servizi-info h3 {
        font-size: 22px;
    }

    .target-item {
        padding: 10px 15px;
        font-size: 13px;
    }

            width: 100%;
            padding: 12px 30px;
            background: linear-gradient(135deg, #d946a6 0%, #c13790 100%);
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            outline: none;
            border: 2px solid #fff;
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(217, 70, 166, 0.3);
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }

        .btn-send:hover {
            background: linear-gradient(135deg, #c13790 0%, #d946a6 100%);
            color: #fff;
            border: 2px solid #d946a6;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(217, 70, 166, 0.5), 0 0 20px rgba(217, 70, 166, 0.3);
            animation: buttonPulse 0.6s ease-out;
        }

        @keyframes buttonPulse {
            0% { transform: translateY(-2px) scale(1); }
            50% { transform: translateY(-4px) scale(1.08); }
            100% { transform: translateY(-3px) scale(1.05); }
        }
    .recensione-card {
        padding: 20px;
    }

    .recensione-stars {
        font-size: 20px;
    }

    .recensione-text {
        font-size: 14px;
    }

    .recensione-author strong {
        font-size: 14px;
    }

    .recensione-author span {
        font-size: 12px;
    }

    .calendly-inline-widget {
        height: 500px !important;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-send {
        padding: 14px;
        font-size: 15px;
    }

    .floating-prenota {
        padding: 14px 30px;
        font-size: 16px;
        bottom: 15px;
    }

    .footer {
        padding: 25px 0 80px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a svg {
        width: 44px;
        height: 44px;
    }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
    }

    .hero h1 {
        font-size: 80px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .chi-sono h2,
    .servizi h2,
    .recensioni h2,
    .prenota-section h2 {
        font-size: 36px;
    }

    .servizi-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .servizio-card {
        padding: 35px;
    }

    .recensioni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-form {
        max-width: 100%;
    }
}
        gap: 20px;
    }
}
