/* Root variables for brand colors based on INCANTO logo */
:root {
    --primary-purple: #4a2c5a;
    --primary-burgundy: #6b3c5a;
    --primary-rose: #a85a6b;
    --primary-coral: #d4846b;
    --primary-peach: #f4b56b;
    --primary-gold: #f4d56b;
    --gradient-primary: linear-gradient(135deg, #4a2c5a 0%, #6b3c5a 25%, #a85a6b 50%, #d4846b 75%, #f4b56b 100%);
    --gradient-secondary: linear-gradient(45deg, #6b3c5a, #d4846b);
    --gradient-accent: linear-gradient(90deg, #a85a6b, #f4b56b);
}

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(74, 44, 90, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Stile speciale per il link Assistente AI */
.nav-links a[href="assistente-ai.html"] {
    background: linear-gradient(45deg, rgba(244, 181, 107, 0.2), rgba(168, 90, 107, 0.2));
    border: 1px solid rgba(244, 181, 107, 0.5);
    color: #f4b56b !important;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.nav-links a[href="assistente-ai.html"]:hover {
    background: linear-gradient(45deg, rgba(244, 181, 107, 0.3), rgba(168, 90, 107, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 181, 107, 0.3);
}

.nav-links a[href="assistente-ai.html"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-links a[href="assistente-ai.html"]:hover::before {
    left: 100%;
}

.contacts-btn {
    background: var(--gradient-secondary) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.contacts-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(107, 60, 90, 0.4) !important;
}

.contacts-btn::after {
    display: none !important;
}

/* Menu hamburger per mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 V600 H0 Z" fill="rgba(244,213,107,0.1)"/></svg>');
    animation: wave 6s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 44, 90, 0.3);
    min-width: 250px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-secondary);
    border: 2px solid transparent;
}

.cta-button.secondary {
    background: linear-gradient(45deg, rgba(244, 181, 107, 0.2), rgba(168, 90, 107, 0.2));
    border: 2px solid rgba(244, 181, 107, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

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

.cta-button.secondary:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 44, 90, 0.4);
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, var(--primary-burgundy), var(--primary-coral));
    box-shadow: 0 15px 40px rgba(107, 60, 90, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(244, 181, 107, 0.3);
    border-color: var(--primary-peach);
    box-shadow: 0 15px 40px rgba(244, 181, 107, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating musical notes */
.musical-note {
    position: absolute;
    color: rgba(244, 213, 107, 0.4);
    font-size: 2rem;
    animation: float 8s ease-in-out infinite;
}

.note1 { top: 20%; left: 10%; animation-delay: 0s; }
.note2 { top: 60%; left: 85%; animation-delay: 2s; }
.note3 { top: 40%; left: 20%; animation-delay: 4s; }
.note4 { top: 80%; left: 70%; animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(-5deg); }
    75% { transform: translateY(-20px) rotate(5deg); }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: #2c2c2c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.about-image {
    background: var(--gradient-primary);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 20px 40px rgba(74, 44, 90, 0.2);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 44, 90, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 90, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 44, 90, 0.15);
    border-color: rgba(168, 90, 107, 0.2);
}

/* Stile speciale per la card Assistente AI */
.service-card.ai-card {
    background: linear-gradient(135deg, rgba(244, 181, 107, 0.05), rgba(168, 90, 107, 0.05));
    border: 2px solid rgba(244, 181, 107, 0.3);
    position: relative;
}

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

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

.service-card.ai-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-peach);
    box-shadow: 0 25px 50px rgba(244, 181, 107, 0.2);
}

.ai-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-peach);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-peach);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ai-link:hover {
    background: var(--primary-peach);
    color: white;
    transform: translateY(-2px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-burgundy));
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--primary-peach);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-peach);
    background: rgba(255,255,255,0.15);
}

.submit-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 60, 90, 0.3);
}

/* Footer */
footer {
    background: var(--primary-purple);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    font-size: clamp(0.8rem, 2vw, 1rem);
    margin-bottom: 0.5rem;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.booking-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-content {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    color: white;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(74, 44, 90, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 0.5rem;
    color: var(--primary-peach);
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(244, 181, 107, 0.3);
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-peach);
    background: rgba(255,255,255,0.15);
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem;
}

.lesson-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 1px solid rgba(244, 181, 107, 0.3);
}

.lesson-info h3 {
    color: var(--primary-peach);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.lesson-info ul {
    list-style: none;
    padding-left: 0;
}

.lesson-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.lesson-info li::before {
    content: '🎵';
    position: absolute;
    left: 0;
}

.price-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid var(--primary-peach);
}

.price-section h3 {
    color: var(--primary-peach);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
}

.price {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: bold;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.paypal-section {
    text-align: center;
    margin-top: 2rem;
}

#paypal-button-container {
    margin-bottom: 1rem;
    min-height: 50px;
}

.payment-note {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255,255,255,0.7);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4;
}

.booking-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* === CALENDARIO MIGLIORATO === */

/* Stili per il calendario migliorato */
.calendar-widget {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(244, 181, 107, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calendar-header h3 {
    color: var(--primary-peach);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
}

.calendar-header p {
    color: rgba(255,255,255,0.8);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Pulsante calendario principale */
.calendar-button {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 60, 90, 0.3);
}

.calendar-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 60, 90, 0.4);
}

.calendar-button:active {
    transform: translateY(-1px);
}

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

.calendar-button:hover::before {
    left: 100%;
}

.calendar-icon {
    font-size: 1.5em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Input date nascosto ma funzionale */
.hidden-date-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

/* Sezione data selezionata */
.selected-date-display {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    display: none;
}

.selected-date-display.visible {
    display: block;
    animation: slideInCalendar 0.3s ease;
}

@keyframes slideInCalendar {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-date-text {
    color: #065f46;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 0.5rem;
}

.change-date-btn {
    background: rgba(16, 185, 129, 0.2);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-date-btn:hover {
    background: rgba(16, 185, 129, 0.3);
    transform: translateY(-1px);
}

/* Sezione orari migliorata */
.time-slot.booked {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

.no-date-message,
.loading-slots,
.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    padding: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.loading-slots {
    color: var(--primary-coral);
}

.no-slots,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #dc2626;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.selected-appointment {
    background: rgba(244, 181, 107, 0.1);
    border: 2px solid rgba(244, 181, 107, 0.5);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.selected-appointment h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.selected-appointment p {
    color: #92400e;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.change-appointment {
    background: rgba(244, 181, 107, 0.2);
    color: #92400e;
    border: 1px solid rgba(244, 181, 107, 0.5);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-appointment:hover {
    background: rgba(244, 181, 107, 0.3);
    transform: translateY(-1px);
}

/* Contacts Modal */
.contacts-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.contacts-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-content {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    color: white;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(74, 44, 90, 0.3);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.contacts-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 60px;
}

.contact-details h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--primary-peach);
}

.contact-details p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 0;
    word-break: break-word;
}

.map-section {
    margin-top: 2rem;
    text-align: center;
}

.map-section h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 1rem;
}

.map-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 60, 90, 0.3);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-button {
        min-width: 220px;
        padding: 1rem 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-purple);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .hero {
        min-height: 500px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 250px;
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .musical-note {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .booking-content,
    .contacts-content {
        margin: 1rem;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    /* Calendario responsive */
    .calendar-button {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .time-slots,
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.6rem;
    }
    
    .time-slot {
        padding: 0.8rem 0.3rem;
        font-size: 0.8rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .booking-content,
    .contacts-content {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
    
    .lesson-info,
    .price-section {
        padding: 1rem;
    }
    
    .musical-note {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Calendario mobile */
    .calendar-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .calendar-widget {
        padding: 1.5rem;
    }
    
    .time-slots,
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .booking-content,
    .contacts-content {
        margin: 0.25rem;
        padding: 0.8rem;
    }
    
    .calendar-widget {
        padding: 1rem;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 400px;
        padding: 2rem 0;
    }
    
    .booking-modal,
    .contacts-modal {
        align-items: flex-start;
        padding-top: 2rem;
    }
}

/* Print styles */
@media print {
    .booking-modal,
    .contacts-modal,
    header,
    .cta-buttons {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}-slots-section {
    margin-top: 1.5rem;
}

.time-slots-section h4 {
    color: var(--primary-peach);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.time-slot {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(244, 181, 107, 0.3);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--primary-purple);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.time-slot:hover {
    border-color: var(--primary-peach);
    background: rgba(244, 181, 107, 0.1);
    transform: translateY(-2px);
}

.time-slot.available {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.5);
    color: #065f46;
}

.time-slot.selected {
    background: var(--primary-peach);
    border-color: var(--primary-peach);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 181, 107, 0.4);
}

.time