:root {
    --primary-color: #FF6B35; /* Arancione più scuro */
    --secondary-color: #FF8C5A; /* Salmone */
    --background: #FFF8F5;
    --text-dark: #2C2C2C;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --white: #FFFFFF;
    
    /* Gray scale - Bootstrap (come iamcarla.it) */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Aliases per compatibilità */
    --gray: #6c757d;
    --gray-dark: #343a40;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    
    /* Font sizes - come iamcarla.it */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing - come iamcarla.it */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

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

html, body {
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: var(--font-size-base, 1rem);
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body:has(.top-navbar:not([style*="display: none"])) {
    padding-top: 60px; /* Space for fixed navbar */
}

body:has(.landing-navbar) {
    padding-top: 0; /* Sticky navbar doesn't need padding */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Landing Page Navbar - Horizontal (come iamcarla.it) */
.landing-navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

body:has(.landing-navbar) {
    padding-top: 0; /* Non serve padding perché è sticky, non fixed */
}

.landing-nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 12px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-nav-container-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.75rem 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
}

.landing-nav-brand {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
}

.landing-nav-brand a {
    text-decoration: none;
    font-size: 1.20rem;
    font-weight: 800;
    display: inline-flex;
    align-items: baseline;
    gap: 0.12rem;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
    color: var(--primary-color);
    font-family: 'Poppins', 'Inter', sans-serif;
}

.landing-nav-brand a:hover {
    opacity: 0.8;
}

.landing-nav-brand .brand-iam {
    color: #0b1320;
    font-weight: 800;
}

.landing-nav-brand .brand-paolo {
    color: var(--primary-color);
    font-weight: 800;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-start;
    margin-left: 2rem;
}

.landing-nav-links .landing-nav-link {
    color: #334155;
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 700;
    padding: 0.45rem 0.7rem;
    border-radius: 12px;
    transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0.01em;
    margin-right: 0.25rem;
}

.landing-nav-links .landing-nav-link:hover {
    color: var(--primary-color, #FF6B35);
    background-color: rgba(255, 107, 53, 0.08);
    transform: translateY(-1px);
}

.landing-nav-links .landing-nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.landing-nav-links .landing-nav-link.active,
.landing-nav-links .landing-nav-link[aria-current="page"] {
    color: #0b1320;
    font-weight: 700;
    background-color: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.30);
}

.landing-nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-user-email {
    color: var(--text-secondary, #475569);
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.landing-nav-link {
    padding: 8px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.landing-nav-link:hover {
    color: var(--primary-color);
}

.landing-nav-link-logout {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', 'Inter', sans-serif;
    box-shadow: 0 1px 3px rgba(255, 107, 53, 0.15);
}

.landing-nav-link-logout:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Button styles (come iamcarla.it - elegante) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.18s ease;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    border-radius: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.01em;
    box-sizing: border-box !important;
    margin: 0 !important;
    height: auto !important;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
    font-weight: 600;
}

.btn-primary:hover {
    background: #e55a2b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.btn-primary.btn-sm {
    box-shadow: 0 1px 4px rgba(255, 107, 53, 0.15);
}

.btn-primary.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    background-color: transparent;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(255, 107, 53, 0.15);
}

.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-outline-secondary {
    color: #64748b;
    border: 1.5px solid #e5e7eb;
    background-color: transparent;
    font-weight: 600;
}

.btn-outline-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.05);
}

/* Top Navigation Bar */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 60px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.brand-iam {
    color: #000000;
    font-weight: 700;
}

.brand-paolo {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-email {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-nav {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

/* Notifications */
.notifications-container {
    position: relative;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: transform 0.2s ease;
}

.notification-btn:hover {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--error-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.notifications-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.notifications-dropdown.show {
    display: flex;
}

.notifications-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background);
}

.notifications-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.clear-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 10px;
}

.clear-btn:hover {
    text-decoration: underline;
}

.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s ease;
}

.notification-item:hover {
    background: var(--background);
}

.notification-item.read {
    opacity: 0.6;
}

.notification-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.notification-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 5px 0;
}

.notification-content small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.no-notifications {
    padding: 30px 20px;
    text-align: center;
    color: var(--text-dark);
    font-style: italic;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 999;
    max-width: 400px;
}

.flash-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.flash-success {
    background: var(--success-color);
    color: var(--white);
}

.flash-error {
    background: var(--error-color);
    color: var(--white);
}

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

.flash-warning {
    background: var(--secondary-color);
    color: var(--white);
}

.flash-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
    line-height: 1;
    opacity: 0.8;
}

.flash-close:hover {
    opacity: 1;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 140px);
    padding: 0;
    width: 100%;
    margin: 0;
}


/* Footer */
/* Site Footer Styles (like IamCarla) */
.site-footer {
    background: var(--bg-secondary, #f8fafc);
    border-top: 1px solid var(--glass-border, #e2e8f0);
    margin-top: 5rem;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-items: start;
}

.footer-grid > div {
    text-align: left;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary, #0b1320);
    margin-bottom: 0.5rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-primary, #0b1320);
    margin-bottom: 0.75rem;
}

.footer-link {
    display: block;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    color: var(--text-secondary, #64748b);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border, #e2e8f0);
    font-size: 0.75rem;
    color: var(--muted, #94a3b8);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
}

.text-muted {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Servizi Page Styles */
.perche-paolo-title {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1320;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.benefit-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.ico-money {
    background: var(--primary-color);
}

.ico-time {
    background: #3b82f6;
}

.ico-focus {
    background: #8b5cf6;
}

.ico-efficiency {
    background: #0ea5e9;
}

.ico-experience {
    background: #22c55e;
}

.ico-loyalty {
    background: #a855f7;
}

.benefit-item strong {
    color: #0b1320;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.benefit-item div {
    color: #475569;
    line-height: 1.6;
    flex: 1;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .perche-paolo-title {
        font-size: 2rem;
    }
}

/* Brand Colors - Always consistent */
.brand-iam {
    color: #000000;
    font-weight: 700;
}

.brand-paolo {
    color: var(--primary-color);
    font-weight: 700;
}

/* Ensure nav brand uses correct colors */
.nav-brand .brand-iam {
    color: #000000;
}

.nav-brand .brand-paolo {
    color: var(--primary-color);
}

/* Landing Page Styles */
.landing-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero-section {
    padding: 4rem 0 3rem 0;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #0b1320;
    letter-spacing: -0.02em;
    font-family: 'Poppins', 'Inter', sans-serif;
    text-align: center;
}

.hero-title .brand-paolo {
    color: var(--primary-color);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.hero-actions {
    margin-top: 60px;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-section {
        padding: 3rem 0 2rem 0;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .landing-nav-container {
        padding: 0 16px;
    }
    
    .landing-nav-brand a {
        font-size: 1.1rem;
    }
    
    .landing-user-email {
        display: none;
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.features-section {
    padding: 3rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 1rem);
}

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 1rem);
}

/* Bootstrap utility classes */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-white {
    background-color: #fff;
}

.bg-light {
    background-color: #f8fafc;
}

.border-top {
    border-top: 1px solid #e2e8f0;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.d-flex {
    display: flex;
}

.gap-3 {
    gap: 1rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.mt-3 {
    margin-top: 1rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.text-success {
    color: #10b981;
}

.d-none {
    display: none;
}

.d-md-inline {
    display: none;
}

.position-relative {
    position: relative;
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline;
    }
}
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

main {
    flex: 1;
}

/* Old welcome-section styles removed - using hero-section instead */

.actions {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.3px;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary {
    background-color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background-color: #555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-primary.btn-sm {
    box-shadow: 0 1px 4px rgba(255, 107, 53, 0.15);
}

.btn-primary.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.btn-secondary.btn-sm {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.btn-secondary.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #f1f5f9;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.12);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 800;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Hero Rect Section (speculare a IamCarla) */
.hero-rect {
    background: linear-gradient(180deg, #fbfdfe, #ffffff);
    padding: 4rem 0 3rem 0;
    width: 100%;
}

.hero-rect-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 1rem);
    min-height: 420px;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.hero-rect-left {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 520px;
}

.hero-rect-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title-paolo {
    margin: 0 0 20px;
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: clamp(3.5rem, 7vw, 5rem);
    line-height: 1.05;
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}

.hero-title-paolo .brand-iam {
    color: #0b1320;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hero-title-paolo .brand-paolo-hero {
    color: var(--primary-color, #FF6B35);
    text-shadow: 0 2px 20px rgba(255, 107, 53, 0.15);
}

.hero-subtitle-paolo {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.75;
    max-width: 70ch;
    margin: 0 0 32px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    color: #fff;
    text-decoration: none;
}

.btn-cta-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-cta-alt:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.integrations-wrap {
    width: 100%;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}

.integrations-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.integration-item i {
    font-size: 1.25rem;
}

.hero-rect-visual {
    width: 100%;
    max-width: 500px;
}

.hero-visual-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.hero-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.hero-visual-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-visual-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hero-visual-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual-content {
    padding: 1.5rem;
}

.hero-kpi-preview {
    display: flex;
    gap: 1.5rem;
}

.kpi-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.kpi-preview-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.kpi-preview-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0b1320;
    line-height: 1;
}

.kpi-preview-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Modern Mini Card Grid */
.modern-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-mini-card {
    background: #fff;
    border: 1.5px solid #f1f5f9;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(2, 6, 23, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2, 6, 23, 0.12);
    border-color: var(--primary-color);
}

.mini-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-radius: 16px;
    flex-shrink: 0;
}

.icon-circle-primary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
}

.icon-circle i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.mini-card-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    color: #0b1320;
    letter-spacing: -0.01em;
}

.mini-card-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.mini-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.mini-card-features li:last-child {
    margin-bottom: 0;
}

.mini-card-features i {
    font-size: 1rem;
}

/* Section Styles */
.section-main-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0b1320;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #0b1320;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* AI Section */
.ai-section-content {
    padding-right: 2rem;
}

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ai-feature-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 0.5rem;
}

.ai-feature-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ai-visual-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.ai-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.ai-visual-dots {
    display: flex;
    gap: 0.5rem;
}

.ai-visual-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.ai-visual-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ai-visual-content {
    padding: 1.5rem;
}

.ai-analysis-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analysis-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.analysis-preview-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.analysis-preview-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1320;
    flex: 1;
}

.analysis-preview-role {
    font-size: 0.875rem;
    color: #64748b;
}

.analysis-preview-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.score-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.score-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.analysis-preview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.analysis-feature-tag {
    font-size: 0.875rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

/* CTA Section */
.cta-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0b1320;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
    color: #fff;
    text-decoration: none;
}

.btn-cta-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-rect-layout {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem var(--spacing-md, 1rem);
    }
    
    .hero-rect-left {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .modern-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-section-content {
        padding-right: 0;
    }
    
    .hero-kpi-preview {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-rect {
        padding: 3rem 0 2rem 0;
    }
    
    .integrations-row {
        justify-content: center;
    }
    
    .section-main-title,
    .section-title,
    .cta-title {
        font-size: 2rem;
    }
}

footer {
    text-align: center;
    padding: 20px;
    color: var(--text-dark);
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.error-message {
    color: var(--error-color);
    margin-top: 10px;
    font-size: 0.9rem;
}

.success-message {
    background-color: var(--success-color);
    color: var(--white);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

.success-message h3 {
    margin-bottom: 10px;
}

/* Legal/Terms page styles */
/* Contact Page Styles */
.contact-page {
    background: linear-gradient(180deg, #fbfdfe 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md, 1rem);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.contact-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b1320;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-header .subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-card a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.contact-info-section {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
}

.contact-info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.02));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item address {
    font-style: normal;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.info-item address strong {
    color: #0b1320;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.support-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.support-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1320;
    margin-bottom: 1rem;
}

.support-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.support-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.support-badge {
    background: #ffffff;
    border: 1.5px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #0b1320;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-badge i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.legal-page {
    background: var(--background);
    min-height: calc(100vh - 100px);
    padding: 40px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.legal-header h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-nav {
    background: var(--background);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.legal-nav h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-nav ol {
    margin: 0;
    padding-left: 20px;
}

.legal-nav li {
    margin-bottom: 8px;
}

.legal-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-nav a:hover {
    color: var(--primary-color);
}

.legal-section {
    margin-bottom: 50px;
    scroll-margin-top: 20px;
}

.legal-section h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.legal-section ul, .legal-section ol {
    margin: 15px 0;
    padding-left: 30px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.highlight-box p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.highlight-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-card {
    background: var(--background);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card address {
    font-style: normal;
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(2, 6, 23, 0.15);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease-out;
    border-left: 4px solid;
    font-family: 'Inter', system-ui, sans-serif;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.toast-success {
    border-left-color: #10b981;
}

.toast.toast-error {
    border-left-color: #ef4444;
}

.toast.toast-warning {
    border-left-color: #f59e0b;
}

.toast.toast-info {
    border-left-color: #3b82f6;
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0b1320;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.toast-message {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-top: 2px;
}

.toast-close:hover {
    color: #0b1320;
}

.toast-link {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.toast-link:hover {
    opacity: 0.8;
}

/* ============================================
   Booking Page Styles (giovanni-lead)
   ============================================ */

.booking-page {
  background: linear-gradient(180deg, #fbfdfe 0%, #ffffff 100%);
  min-height: 100vh;
  padding: 3rem 0;
}

.booking-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.booking-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.booking-header p {
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b1320;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.booking-header p {
  font-size: 1.1rem;
  color: #64748b;
}

.booking-form {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.booking-form .row {
  margin-bottom: 0;
}

.booking-form .row > div {
  margin-bottom: 1.5rem;
}

.booking-form .form-label {
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: block;
}

.booking-form .form-control,
.booking-form .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: 100%;
  margin-bottom: 0;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: var(--primary-color, #FF6B35);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

.datetime-picker-wrapper {
  position: relative;
}

.datetime-picker-wrapper input[type="datetime-local"] {
  width: 100%;
}

.booking-form .form-hint {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.75rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
}

.booking-form .form-hint i {
  color: var(--primary-color, #FF6B35);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color, #FF6B35), #e55a2b);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

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

@media (max-width: 768px) {
  .booking-header h1 {
    font-size: 2rem;
  }
  .booking-form {
    padding: 1.5rem;
  }
}

