/* ============================================
   Studio Legale Romeo - Styles
   Palette: Bordeaux + Gold accents
   ============================================ */

:root {
    --primary: #7B2D3B;
    --primary-dark: #5A1F2B;
    --primary-light: #9B4D5B;
    --primary-lighter: #C88A94;
    --primary-bg: #F9F2F3;
    --accent: #C9A96E;
    --accent-light: #E0CFA3;
    --bg: #FAFAF8;
    --bg-alt: #F4F1ED;
    --text: #1A1A2E;
    --text-light: #5A5A6E;
    --text-lighter: #8A8A9A;
    --white: #FFFFFF;
    --border: #E8E4DF;
    --shadow: 0 2px 16px rgba(122, 45, 59, 0.08);
    --shadow-lg: 0 8px 32px rgba(122, 45, 59, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.logo-icon {
    width: 20px;
    height: 22px;
    flex-shrink: 0;
    color: var(--primary);
    transition: color var(--transition);
}

.navbar:not(.scrolled) .logo-icon {
    color: rgba(255, 255, 255, 0.85);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}

.navbar:not(.scrolled) .logo-text {
    color: var(--accent-light);
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.navbar:not(.scrolled) .logo-name {
    color: var(--white);
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.navbar:not(.scrolled) .nav-links a::after {
    background: var(--accent);
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 31, 43, 0.92) 0%, rgba(123, 45, 59, 0.85) 50%, rgba(74, 21, 37, 0.92) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 24px;
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(122, 45, 59, 0.3);
}

.btn-primary:disabled {
    background: var(--primary-lighter);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.section .btn-outline,
.booking-success .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.section .btn-outline:hover,
.booking-success .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

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

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--text);
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== CHI SIAMO ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-lead {
    font-size: 18px;
    color: var(--text) !important;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-lighter);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* About image */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    height: 240px;
}

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

/* ========== CTA BANNER ========== */
.cta-banner {
    position: relative;
    padding: 72px 0;
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73b1fbc5007?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 31, 43, 0.92) 0%, rgba(74, 21, 37, 0.88) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--white);
    margin-bottom: 12px;
    max-width: 600px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* ========== SERVIZI ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 12px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== BOOKING ========== */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.booking-form-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--text);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/* Calendar */
.calendar-container {
    margin-bottom: 24px;
    max-width: 100%;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.calendar-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
}

.calendar-nav {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    color: var(--text);
    transition: all var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-bg);
    border-color: var(--primary-lighter);
    color: var(--primary);
}

.calendar-nav svg {
    width: 16px;
    height: 16px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}

.calendar-weekdays span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    padding: 4px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    width: 100%;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    color: var(--text);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--primary-bg);
    color: var(--primary);
}

.calendar-day.selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.today {
    border: 1px solid var(--primary-lighter);
    font-weight: 600;
}

.calendar-day.disabled {
    color: var(--text-lighter);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

/* Time slots */
.time-slots-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.time-slot:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.time-slot.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.time-slot.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Modality */
.modality-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modality-card {
    cursor: pointer;
}

.modality-card input {
    display: none;
}

.modality-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.modality-inner strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

.modality-inner span {
    font-size: 13px;
    color: var(--text-light);
}

.modality-inner svg {
    flex-shrink: 0;
    color: var(--text-lighter);
    transition: color var(--transition);
}

.modality-card input:checked + .modality-inner {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.modality-card input:checked + .modality-inner svg {
    color: var(--primary);
}

.modality-card:hover .modality-inner {
    border-color: var(--primary-lighter);
}

/* Form fields */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--transition);
    background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-label span {
    position: relative;
    padding-left: 32px;
}

.checkbox-label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    transition: all var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + span::before {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + span::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Form navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 12px;
}

.btn-back {
    color: var(--text-light) !important;
    border-color: var(--border) !important;
}

.btn-back:hover {
    background: var(--bg-alt) !important;
    color: var(--text) !important;
}

.btn-next,
.btn-submit {
    margin-left: auto;
}

/* Booking success */
.booking-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F5E9;
    border-radius: 50%;
    color: #2E7D32;
    margin: 0 auto 24px;
}

.booking-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sidebar-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.summary-item {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.summary-item + .summary-item {
    border-top: 1px solid var(--border);
}

.summary-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-lighter);
    margin-bottom: 4px;
}

.summary-value {
    font-size: 14px;
    color: var(--text);
}

.sidebar-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-info li {
    font-size: 13px;
    color: var(--text-light);
    padding-left: 16px;
    position: relative;
}

.sidebar-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ========== CONTATTI ========== */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 50%;
    color: var(--primary);
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary) !important;
}

.contact-link:hover {
    text-decoration: underline;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 64px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo-text {
    color: var(--accent);
}

.footer .logo-name {
    color: var(--white);
    font-size: 28px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
        flex-direction: row;
    }

    .sidebar-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
        color: var(--text) !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--text) !important;
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--text) !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        flex-direction: column;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
