/*
Theme Name: Parlato Marmi
Theme URI: https://parlatomarmi.it
Author: Parlato Marmi
Author URI: https://parlatomarmi.it
Description: Tema premium per Parlato Marmi - Lavorazione Marmi e Pietre Naturali. Completamente dinamico con ACF Pro.
Version: 2.0.0
License: Proprietary
Text Domain: pm-theme
Requires at least: 6.0
Requires PHP: 8.0
*/

/* =============================================================================
   CSS VARIABLES
   ============================================================================= */

:root {
    /* Colors */
    --pm-primary: #1E2F4D;
    --pm-primary-light: #2a4066;
    --pm-primary-dark: #152238;
    --pm-gold: #B89C72;
    --pm-gold-light: #C9A675;
    --pm-gold-dark: #A08960;
    --pm-gold-rgb: 184, 156, 114;
    
    /* Neutrals */
    --pm-white: #ffffff;
    --pm-black: #000000;
    --pm-gray-light: #f8f9fa;
    --pm-gray: #e9ecef;
    --pm-gray-medium: #dee2e6;
    --pm-gray-dark: #6c757d;
    --pm-text: #333333;
    --pm-text-light: #666666;
    
    /* Status Colors */
    --pm-success: #10B981;
    --pm-warning: #F59E0B;
    --pm-danger: #EF4444;
    --pm-info: #3B82F6;
    
    /* Typography */
    --pm-font-heading: 'Playfair Display', Georgia, serif;
    --pm-font-accent: 'Cormorant Garamond', Georgia, serif;
    --pm-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --pm-space-xs: 0.25rem;
    --pm-space-sm: 0.5rem;
    --pm-space-md: 1rem;
    --pm-space-lg: 1.5rem;
    --pm-space-xl: 2rem;
    --pm-space-2xl: 3rem;
    --pm-space-3xl: 4rem;
    --pm-space-4xl: 6rem;
    
    /* Layout */
    --pm-container: 1200px;
    --pm-container-wide: 1400px;
    --pm-header-height: 80px;
    --pm-bottom-nav-height: 70px;
    
    /* Borders */
    --pm-radius-sm: 4px;
    --pm-radius-md: 8px;
    --pm-radius-lg: 12px;
    --pm-radius-xl: 20px;
    --pm-radius-full: 9999px;
    
    /* Shadows */
    --pm-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --pm-shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --pm-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --pm-shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --pm-shadow-gold: 0 10px 30px rgba(184, 156, 114, 0.3);
    
    /* Transitions */
    --pm-transition-fast: 150ms ease;
    --pm-transition-base: 300ms ease;
    --pm-transition-slow: 500ms ease;
}

/* =============================================================================
   RESET & BASE
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--pm-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--pm-text);
    background: var(--pm-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--pm-gold);
    text-decoration: none;
    transition: color var(--pm-transition-fast);
}

a:hover {
    color: var(--pm-gold-dark);
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: var(--pm-primary);
    color: var(--pm-white);
    padding: var(--pm-space-md) var(--pm-space-lg);
    border-radius: var(--pm-radius-md);
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: var(--pm-space-md);
    color: var(--pm-white);
    outline: 2px solid var(--pm-gold);
    outline-offset: 2px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--pm-gold);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--pm-gold);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pm-font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--pm-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--pm-space-md);
}

p:last-child {
    margin-bottom: 0;
}

/* =============================================================================
   LAYOUT
   ============================================================================= */

.container {
    width: 100%;
    max-width: var(--pm-container);
    margin: 0 auto;
    padding: 0 var(--pm-space-lg);
}

.container-wide {
    max-width: var(--pm-container-wide);
}

.section {
    padding: var(--pm-space-4xl) 0;
}

.section-alt {
    background: var(--pm-gray-light);
}

.section-dark {
    background: var(--pm-primary);
    color: var(--pm-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--pm-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--pm-space-3xl);
}

.section-label {
    display: inline-block;
    font-family: var(--pm-font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--pm-gold);
    margin-bottom: var(--pm-space-sm);
    letter-spacing: 0.05em;
}

.section-subtitle {
    color: var(--pm-text-light);
    font-size: 1.0625rem;
    margin-top: var(--pm-space-md);
}

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

.mt-xs { margin-top: var(--pm-space-xs); }
.mt-sm { margin-top: var(--pm-space-sm); }
.mt-md { margin-top: var(--pm-space-md); }
.mt-lg { margin-top: var(--pm-space-lg); }
.mt-xl { margin-top: var(--pm-space-xl); }
.mt-2xl { margin-top: var(--pm-space-2xl); }

.mb-xs { margin-bottom: var(--pm-space-xs); }
.mb-sm { margin-bottom: var(--pm-space-sm); }
.mb-md { margin-bottom: var(--pm-space-md); }
.mb-lg { margin-bottom: var(--pm-space-lg); }
.mb-xl { margin-bottom: var(--pm-space-xl); }
.mb-2xl { margin-bottom: var(--pm-space-2xl); }

/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--pm-header-height);
    background: var(--pm-white);
    z-index: 1000;
    transition: all var(--pm-transition-base);
}

.site-header.scrolled {
    box-shadow: var(--pm-shadow-md);
    height: calc(var(--pm-header-height) - 10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--pm-container-wide);
    margin: 0 auto;
    padding: 0 var(--pm-space-lg);
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: height var(--pm-transition-base);
}

.site-header.scrolled .site-logo img {
    height: 40px;
}

.site-logo-text {
    font-family: var(--pm-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pm-primary);
}

.site-logo-text span {
    color: var(--pm-gold);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--pm-space-xl);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--pm-space-lg);
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pm-text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: var(--pm-space-sm) 0;
    position: relative;
}

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

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--pm-gold);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--pm-space-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--pm-space-sm);
    color: var(--pm-primary);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-cta .btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--pm-white);
    z-index: 1001;
    transition: right var(--pm-transition-base);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--pm-transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--pm-space-lg);
    border-bottom: 1px solid var(--pm-gray);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--pm-space-sm);
    color: var(--pm-primary);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    padding: var(--pm-space-lg);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--pm-gray);
}

.mobile-nav a {
    display: block;
    padding: var(--pm-space-md) 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--pm-text);
}

.mobile-nav a:hover {
    color: var(--pm-gold);
}

.mobile-menu-cta {
    padding: var(--pm-space-lg);
    border-top: 1px solid var(--pm-gray);
}

.mobile-menu-cta .btn {
    width: 100%;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.site-footer {
    background: var(--pm-primary);
    color: var(--pm-white);
    padding-bottom: 0;
}

.footer-main {
    padding: var(--pm-space-4xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--pm-space-3xl);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .site-logo-text {
    color: var(--pm-white);
    margin-bottom: var(--pm-space-lg);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--pm-space-xl);
}

.footer-social {
    display: flex;
    gap: var(--pm-space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--pm-radius-full);
    color: var(--pm-white);
    transition: all var(--pm-transition-fast);
}

.footer-social a:hover {
    background: var(--pm-gold);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    display: block;
    font-size: 1.125rem;
    color: var(--pm-white);
    margin-bottom: var(--pm-space-lg);
    font-weight: 600;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: var(--pm-space-sm);
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-menu a:hover {
    color: var(--pm-gold);
}

.footer-contact-item {
    display: flex;
    gap: var(--pm-space-md);
    margin-bottom: var(--pm-space-md);
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--pm-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--pm-space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--pm-space-md);
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: var(--pm-space-lg);
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--pm-gold);
}

/* Bottom Nav Mobile */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: var(--pm-bottom-nav-height);
        background: var(--pm-white);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .bottom-nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 100%;
    }
    
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: var(--pm-space-sm);
        color: var(--pm-gray-dark);
        font-size: 0.6875rem;
        text-decoration: none;
        transition: color var(--pm-transition-fast);
    }
    
    .bottom-nav-item svg {
        width: 22px;
        height: 22px;
    }
    
    .bottom-nav-item:hover,
    .bottom-nav-item.active {
        color: var(--pm-gold);
    }
    
    .bottom-nav-cta {
        position: relative;
        top: -15px;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--pm-gold), var(--pm-gold-light));
        border-radius: var(--pm-radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pm-white);
        box-shadow: var(--pm-shadow-gold);
    }
    
    .bottom-nav-cta svg {
        width: 26px;
        height: 26px;
    }
    
    body {
        padding-bottom: var(--pm-bottom-nav-height);
    }
    
    .site-footer {
        padding-bottom: calc(var(--pm-bottom-nav-height) + var(--pm-space-xl));
    }
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--pm-space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--pm-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: var(--pm-radius-md);
    cursor: pointer;
    transition: all var(--pm-transition-fast);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.btn-primary:hover {
    background: var(--pm-primary-light);
    border-color: var(--pm-primary-light);
    color: var(--pm-white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--pm-gold), var(--pm-gold-light));
    color: var(--pm-white);
    border-color: var(--pm-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-gold);
    color: var(--pm-white);
}

.btn-outline {
    background: transparent;
    color: var(--pm-primary);
    border-color: var(--pm-primary);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--pm-gold);
    border-color: var(--pm-gold);
}

.btn-outline-gold:hover {
    background: var(--pm-gold);
    color: var(--pm-white);
}

.btn-outline-white {
    background: transparent;
    color: var(--pm-white);
    border-color: var(--pm-white);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* =============================================================================
   FORMS
   ============================================================================= */

.form-group {
    margin-bottom: var(--pm-space-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--pm-primary);
    margin-bottom: var(--pm-space-sm);
    font-size: 0.9375rem;
}

.form-label .required {
    color: var(--pm-danger);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--pm-font-body);
    font-size: 1rem;
    color: var(--pm-text);
    background: var(--pm-white);
    border: 2px solid var(--pm-gray);
    border-radius: var(--pm-radius-md);
    transition: all var(--pm-transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--pm-gold);
    box-shadow: 0 0 0 3px rgba(var(--pm-gold-rgb), 0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--pm-danger);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--pm-space-sm);
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--pm-gold);
}

.form-checkbox span a {
    color: var(--pm-primary);
    text-decoration: underline;
}

.form-checkbox span a:hover {
    color: var(--pm-gold-dark);
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--pm-gray-dark);
    margin-top: var(--pm-space-xs);
}

.form-error {
    font-size: 0.8125rem;
    color: var(--pm-danger);
    margin-top: var(--pm-space-xs);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pm-space-lg);
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   CARDS
   ============================================================================= */

.card {
    background: var(--pm-white);
    border-radius: var(--pm-radius-lg);
    box-shadow: var(--pm-shadow-md);
    overflow: hidden;
    transition: all var(--pm-transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pm-shadow-xl);
}

.card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--pm-transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: var(--pm-space-xl);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--pm-space-sm);
}

.card-text {
    color: var(--pm-text-light);
    margin-bottom: var(--pm-space-md);
}

/* =============================================================================
   BADGES
   ============================================================================= */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: var(--pm-radius-full);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #DC2626;
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: #2563EB;
}

.badge-primary {
    background: rgba(30, 47, 77, 0.15);
    color: var(--pm-primary);
}

.badge-secondary {
    background: var(--pm-gray);
    color: var(--pm-gray-dark);
}

.badge-gold {
    background: rgba(var(--pm-gold-rgb), 0.15);
    color: var(--pm-gold-dark);
}

/* =============================================================================
   ALERTS
   ============================================================================= */

.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--pm-space-md);
    padding: var(--pm-space-lg);
    border-radius: var(--pm-radius-md);
    margin-bottom: var(--pm-space-lg);
}

.alert svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065F46;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #92400E;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991B1B;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #1E40AF;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pm-space-4xl) var(--pm-space-lg);
    padding-top: calc(var(--pm-header-height) + var(--pm-space-4xl));
    overflow: hidden;
}

.hero-internal {
    min-height: 50vh;
    padding-top: calc(var(--pm-header-height) + var(--pm-space-2xl));
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--pm-primary); /* Fallback mentre carica */
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video specifico */
.hero-bg video {
    background-color: var(--pm-primary);
    will-change: opacity; /* Ottimizzazione GPU per transizione */
}

/* Video loading state - il poster viene mostrato */
.hero-bg video[poster] {
    background-size: cover;
    background-position: center;
}

/* Nasconde controlli video su iOS */
.hero-bg video::-webkit-media-controls {
    display: none !important;
}

.hero-bg video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 47, 77, 0.9), rgba(30, 47, 77, 0.7));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    color: var(--pm-white);
}

.hero-label {
    display: inline-block;
    font-family: var(--pm-font-accent);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--pm-gold);
    margin-bottom: var(--pm-space-md);
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--pm-white);
    margin-bottom: var(--pm-space-lg);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto var(--pm-space-2xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--pm-space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--pm-space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--pm-white);
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 32px;
    height: 32px;
}

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

/* Breadcrumb */
.breadcrumb {
    margin-bottom: var(--pm-space-lg);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: var(--pm-space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--pm-gold);
}

.breadcrumb-current,
.breadcrumb [aria-current="page"] {
    color: var(--pm-gold);
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.5);
}

/* =============================================================================
   SERVICE CARDS
   ============================================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pm-space-xl);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--pm-white);
    border-radius: var(--pm-radius-lg);
    padding: var(--pm-space-2xl);
    text-align: center;
    box-shadow: var(--pm-shadow-md);
    transition: all var(--pm-transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pm-shadow-xl);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--pm-space-lg);
    background: linear-gradient(135deg, rgba(var(--pm-gold-rgb), 0.15), rgba(var(--pm-gold-rgb), 0.05));
    border-radius: var(--pm-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--pm-transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--pm-gold);
}

.service-card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--pm-gold);
    transition: color var(--pm-transition-base);
}

.service-card:hover .service-card-icon svg {
    color: var(--pm-white);
}

.service-card h3 {
    margin-bottom: var(--pm-space-sm);
}

.service-card p {
    color: var(--pm-text-light);
    margin-bottom: var(--pm-space-lg);
}

/* =============================================================================
   STATS SECTION
   ============================================================================= */

.stats-section {
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-primary-light));
    padding: var(--pm-space-3xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pm-space-xl);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: var(--pm-white);
}

.stat-number {
    font-family: var(--pm-font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--pm-gold);
    line-height: 1;
    margin-bottom: var(--pm-space-sm);
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================================================
   BRANDS CAROUSEL
   ============================================================================= */

.brands-section {
    padding: var(--pm-space-3xl) 0;
    overflow: hidden;
}

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    flex: 0 0 200px;
    height: 80px;
    margin: 0 var(--pm-space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--pm-transition-base);
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-30px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(30px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

[data-reveal="scale"] {
    transform: scale(0.95);
}

[data-reveal="scale"].revealed {
    transform: scale(1);
}

/* =============================================================================
   DASHBOARD
   ============================================================================= */

.dashboard-section {
    padding-top: calc(var(--pm-header-height) + var(--pm-space-2xl));
    min-height: 100vh;
    background: var(--pm-gray-light);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-primary-light));
    padding: var(--pm-space-2xl);
    border-radius: var(--pm-radius-xl);
    color: var(--pm-white);
    margin-bottom: var(--pm-space-2xl);
}

.dashboard-header h1 {
    color: var(--pm-white);
    margin-bottom: var(--pm-space-sm);
}

.dashboard-header p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.dashboard-user-info {
    display: flex;
    align-items: center;
    gap: var(--pm-space-lg);
    margin-top: var(--pm-space-lg);
    padding-top: var(--pm-space-lg);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.dashboard-avatar {
    width: 60px;
    height: 60px;
    background: var(--pm-gold);
    border-radius: var(--pm-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pm-white);
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pm-space-lg);
    margin-bottom: var(--pm-space-2xl);
}

@media (max-width: 992px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--pm-white);
    border-radius: var(--pm-radius-lg);
    padding: var(--pm-space-xl);
    box-shadow: var(--pm-shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: var(--pm-space-lg);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--pm-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pm-white);
}

.stat-card-icon.blue { background: linear-gradient(135deg, #3B82F6, #60A5FA); }
.stat-card-icon.green { background: linear-gradient(135deg, #10B981, #34D399); }
.stat-card-icon.gold { background: linear-gradient(135deg, var(--pm-gold), var(--pm-gold-light)); }
.stat-card-icon.purple { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.stat-card-icon.orange { background: linear-gradient(135deg, #F59E0B, #FBBF24); }

.stat-card-content h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--pm-gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--pm-space-xs);
    font-family: var(--pm-font-body);
}

.stat-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pm-primary);
    line-height: 1;
}

/* Tabs */
.dashboard-tabs {
    background: var(--pm-white);
    border-radius: var(--pm-radius-xl);
    box-shadow: var(--pm-shadow-md);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--pm-gray);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--pm-space-sm);
    padding: var(--pm-space-lg) var(--pm-space-xl);
    font-family: var(--pm-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--pm-gray-dark);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--pm-transition-fast);
    position: relative;
}

.tab-btn svg {
    width: 20px;
    height: 20px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--pm-gold);
    transform: scaleX(0);
    transition: transform var(--pm-transition-fast);
}

.tab-btn:hover {
    color: var(--pm-primary);
}

.tab-btn.active {
    color: var(--pm-gold);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    display: none;
    padding: var(--pm-space-2xl);
}

.tab-content.active {
    display: block;
}

/* Documents Table */
.documents-table {
    width: 100%;
    border-collapse: collapse;
}

.documents-table th {
    text-align: left;
    padding: var(--pm-space-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--pm-gray-dark);
    border-bottom: 2px solid var(--pm-gray);
}

.documents-table td {
    padding: var(--pm-space-md);
    border-bottom: 1px solid var(--pm-gray);
    vertical-align: middle;
}

.documents-table tr:hover td {
    background: var(--pm-gray-light);
}

.doc-number {
    font-weight: 600;
    color: var(--pm-primary);
}

.doc-date {
    color: var(--pm-gray-dark);
    font-size: 0.875rem;
}

.doc-amount {
    font-weight: 600;
}

.doc-actions {
    display: flex;
    gap: var(--pm-space-sm);
}

.doc-actions .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--pm-space-4xl) var(--pm-space-xl);
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--pm-space-lg);
    background: var(--pm-gray-light);
    border-radius: var(--pm-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon svg {
    width: 36px;
    height: 36px;
    color: var(--pm-gray-dark);
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: var(--pm-space-sm);
}

.empty-state p {
    color: var(--pm-gray-dark);
}

/* =============================================================================
   AUTH PAGES
   ============================================================================= */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pm-space-2xl) var(--pm-space-lg);
    padding-top: calc(var(--pm-header-height) + var(--pm-space-2xl));
    background: var(--pm-gray-light);
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background: var(--pm-white);
    border-radius: var(--pm-radius-xl);
    box-shadow: var(--pm-shadow-lg);
    overflow: hidden;
}

.auth-header {
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-primary-light));
    padding: var(--pm-space-2xl);
    text-align: center;
    color: var(--pm-white);
}

.auth-header h1 {
    color: var(--pm-white);
    font-size: 1.75rem;
    margin-bottom: var(--pm-space-sm);
}

.auth-header p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.auth-body {
    padding: var(--pm-space-2xl);
}

.auth-footer {
    padding: var(--pm-space-lg) var(--pm-space-2xl);
    background: var(--pm-gray-light);
    text-align: center;
    font-size: 0.9375rem;
}

/* Registration Steps */
.registration-steps {
    display: flex;
    justify-content: center;
    gap: var(--pm-space-sm);
    margin-bottom: var(--pm-space-2xl);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: var(--pm-space-sm);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: var(--pm-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--pm-gray);
    color: var(--pm-gray-dark);
    transition: all var(--pm-transition-fast);
}

.step-indicator.active .step-number,
.step-indicator.completed .step-number {
    background: var(--pm-gold);
    color: var(--pm-white);
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--pm-gray);
}

.step-indicator.completed + .step-line {
    background: var(--pm-gold);
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--pm-space-3xl);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    display: flex;
    gap: var(--pm-space-lg);
    padding: var(--pm-space-xl);
    background: var(--pm-white);
    border-radius: var(--pm-radius-lg);
    box-shadow: var(--pm-shadow-sm);
    margin-bottom: var(--pm-space-lg);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(var(--pm-gold-rgb), 0.15), rgba(var(--pm-gold-rgb), 0.05));
    border-radius: var(--pm-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--pm-gold);
}

.contact-info-content h3 {
    font-size: 1rem;
    margin-bottom: var(--pm-space-xs);
}

.contact-info-content p {
    color: var(--pm-text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.contact-info-content p a {
    color: var(--pm-primary);
    text-decoration: underline;
    text-decoration-color: var(--pm-gold);
    text-underline-offset: 2px;
}

.contact-info-content p a:hover {
    color: var(--pm-gold-dark);
}

.contact-form-card {
    background: var(--pm-white);
    border-radius: var(--pm-radius-xl);
    padding: var(--pm-space-2xl);
    box-shadow: var(--pm-shadow-lg);
}

.contact-map {
    margin-top: var(--pm-space-2xl);
    border-radius: var(--pm-radius-xl);
    overflow: hidden;
    box-shadow: var(--pm-shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* =============================================================================
   PAGINATION
   ============================================================================= */

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--pm-space-sm);
    margin-top: var(--pm-space-2xl);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--pm-space-md);
    background: var(--pm-white);
    border: 2px solid var(--pm-gray);
    border-radius: var(--pm-radius-md);
    font-weight: 500;
    color: var(--pm-text);
    transition: all var(--pm-transition-fast);
}

.pagination a:hover {
    border-color: var(--pm-gold);
    color: var(--pm-gold);
}

.pagination .current {
    background: var(--pm-gold);
    border-color: var(--pm-gold);
    color: var(--pm-white);
}

/* =============================================================================
   RESPONSIVE UTILITIES
   ============================================================================= */

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    :root {
        --pm-header-height: 64px;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* =============================================================================
   NOTIFICATION TOAST
   ============================================================================= */

.toast-container {
    position: fixed;
    top: calc(var(--pm-header-height) + var(--pm-space-lg));
    right: var(--pm-space-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--pm-space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--pm-space-md);
    padding: var(--pm-space-md) var(--pm-space-lg);
    background: var(--pm-white);
    border-radius: var(--pm-radius-md);
    box-shadow: var(--pm-shadow-lg);
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.toast.success { border-left: 4px solid var(--pm-success); }
.toast.error { border-left: 4px solid var(--pm-danger); }
.toast.warning { border-left: 4px solid var(--pm-warning); }
.toast.info { border-left: 4px solid var(--pm-info); }

.toast svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast.success svg { color: var(--pm-success); }
.toast.error svg { color: var(--pm-danger); }
.toast.warning svg { color: var(--pm-warning); }
.toast.info svg { color: var(--pm-info); }

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--pm-space-xs);
    color: var(--pm-gray-dark);
}

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

/* =============================================================================
   WHATSAPP BUTTON FIXED
   ============================================================================= */

.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--pm-transition-base);
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--pm-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--pm-radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pm-transition-base);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--pm-primary);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 90px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* =============================================================================
   REVIEWS SECTION - DICONO DI NOI
   ============================================================================= */

.reviews-section {
    background: var(--pm-gray-light);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--pm-space-2xl);
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--pm-space-sm);
    background: white;
    padding: var(--pm-space-sm) var(--pm-space-lg);
    border-radius: var(--pm-radius-full);
    box-shadow: var(--pm-shadow-sm);
    margin-bottom: var(--pm-space-lg);
}

.reviews-google-badge svg {
    width: 24px;
    height: 24px;
}

.reviews-google-badge span {
    font-weight: 600;
    color: var(--pm-primary);
}

.reviews-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--pm-space-sm);
}

.reviews-stars svg {
    width: 24px;
    height: 24px;
    color: #FBBC04;
    fill: #FBBC04;
}

.reviews-rating {
    font-size: 1.125rem;
    color: var(--pm-text-light);
}

.reviews-rating strong {
    color: var(--pm-primary);
    font-size: 1.25rem;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    position: relative;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.reviews-slider {
    display: flex;
    gap: var(--pm-space-lg);
    animation: scroll-reviews 30s linear infinite;
    width: max-content;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: white;
    border-radius: var(--pm-radius-xl);
    padding: var(--pm-space-xl);
    box-shadow: var(--pm-shadow-md);
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--pm-space-md);
    margin-bottom: var(--pm-space-md);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.review-author {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    color: var(--pm-primary);
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.8125rem;
    color: var(--pm-text-light);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--pm-space-md);
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: #FBBC04;
    fill: #FBBC04;
}

.review-text {
    color: var(--pm-text);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.review-text p {
    margin: 0;
}

.reviews-cta {
    text-align: center;
    margin-top: var(--pm-space-2xl);
}

@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 320px;
        padding: var(--pm-space-lg);
    }
    
    .reviews-slider-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */

@media print {
    .site-header,
    .site-footer,
    .bottom-nav,
    .whatsapp-button,
    .no-print {
        display: none !important;
    }
    
    body {
        padding: 0 !important;
    }
    
    .section {
        padding: 1rem 0;
    }
}
