/* =====================================================
   AFFY HEXE FITNESS - Custom CSS
   Personal Training Femminile
   Color Palette: Pink (#E91E8C, #F06292), Black (#000), White (#FFF)
   
   FULLY RESPONSIVE FOR ALL DEVICES:
   - Desktop XL: 1440px+
   - Desktop: 1200px - 1439px
   - Laptop: 1024px - 1199px
   - Tablet: 768px - 1023px
   - Mobile Large: 576px - 767px
   - Mobile: 480px - 575px
   - Mobile Small: 320px - 479px
   ===================================================== */

/* =====================================================
   CSS VARIABLES
   ===================================================== */
:root {
    /* Primary Colors - Based on Logo */
    --primary-pink: #E91E8C;
    --primary-pink-light: #F06292;
    --primary-pink-dark: #C2185B;
    --primary-pink-rgb: 233, 30, 140;
    
    /* Neutral Colors */
    --black: #000000;
    --black-light: #1a1a1a;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #f5f5f5;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-pink: 0 4px 20px rgba(var(--primary-pink-rgb), 0.3);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing - Responsive */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

button {
    -webkit-tap-highlight-color: transparent;
}

/* =====================================================
   TYPOGRAPHY - Responsive with clamp()
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 { font-size: clamp(1.75rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw + 0.25rem, 2rem); }

.lead {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    line-height: 1.7;
    color: var(--gray);
}

.highlight {
    color: var(--primary-pink);
}

/* =====================================================
   CONTAINER & LAYOUT - Fluid
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--gray);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
}

/* =====================================================
   BUTTONS - Touch Friendly
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    min-height: 48px; /* Touch friendly */
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

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

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--black);
    color: var(--white);
}

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

.btn-outline:hover,
.btn-outline:focus {
    background: var(--gradient-pink);
    color: var(--white);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn i {
    font-size: 1.2em;
}

/* =====================================================
   NAVIGATION - Responsive
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

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

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
    transform-origin: center;
}

/* =====================================================
   HERO SECTION - Premium Mobile-First Design
   ===================================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

/* Background Image Layer */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-pink-rgb), 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-pink-rgb), 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 80px;
}

/* Hero Content */
.hero-content {
    z-index: 2;
}



/* Hero Title */
.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-pink);
    position: relative;
}

.hero-title-sub {
    display: block;
    font-size: 0.65em;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.95;
}

/* Hero Subtitle */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.2rem);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.7;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(var(--primary-pink-rgb), 0.4);
}

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

.btn-glow:hover::before {
    left: 100%;
}

.btn-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light:hover,
.btn-light:focus {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(var(--primary-pink-rgb), 0.2);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        ellipse at center,
        rgba(var(--primary-pink-rgb), 0.2) 0%,
        transparent 70%
    );
    z-index: -1;
    border-radius: var(--radius-xl);
    filter: blur(30px);
}

/* Scroll Indicator - Enhanced */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    z-index: 20;
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 1.25rem;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

/* =====================================================
   VALORE SECTION - Responsive
   ===================================================== */
.valore-section {
    background: var(--white);
}

.valore-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.valore-text p {
    margin-bottom: 20px;
}

.valore-text strong {
    color: var(--primary-pink);
}

.valore-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* =====================================================
   RISULTATI SECTION - Responsive
   ===================================================== */
.risultati-section {
    background: var(--gray-lighter);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.author-info {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Stats */
.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: var(--black);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 700;
    color: var(--primary-pink);
    display: inline;
}

.stat-plus, .stat-percent {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--primary-pink);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--gray-light);
}

/* =====================================================
   CHI SONO SECTION - Responsive
   ===================================================== */
.chi-sono-section {
    background: var(--white);
}

.chi-sono-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.chi-sono-image {
    position: relative;
}

.chi-sono-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-pink);
}

.image-badge i {
    font-size: 1.5rem;
}

.chi-sono-text p {
    margin-bottom: 20px;
}

.chi-sono-values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-weight: 500;
}

.value-item i {
    color: var(--primary-pink);
    font-size: 1.25rem;
}

/* =====================================================
   PERCORSI SECTION - Responsive
   ===================================================== */
.percorsi-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-lighter) 100%);
}

.percorsi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.percorso-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.percorso-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.percorso-card.featured {
    border: 3px solid var(--primary-pink);
    transform: scale(1.05);
    z-index: 2;
}

.percorso-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.percorso-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
}

.percorso-badge i {
    margin-right: 5px;
}

.percorso-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: var(--gradient-dark);
    color: var(--white);
}

.percorso-label {
    display: inline-block;
    background: rgba(var(--primary-pink-rgb), 0.2);
    color: var(--primary-pink-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.percorso-title {
    color: var(--white);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    margin-bottom: 8px;
}

.percorso-subtitle {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.percorso-body {
    padding: 30px;
    flex-grow: 1;
}

.percorso-features {
    margin-bottom: 24px;
}

.percorso-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 0.95rem;
}

.percorso-features li:last-child {
    border-bottom: none;
}

.percorso-features i {
    color: var(--primary-pink);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.percorso-quote {
    color: var(--gray);
    font-style: italic;
    font-size: 0.9rem;
    padding: 20px;
    background: var(--gray-lighter);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-pink);
}

.percorso-quote i {
    color: var(--primary-pink);
    margin-right: 8px;
    opacity: 0.5;
}

.percorso-footer {
    padding: 0 30px 30px;
    text-align: center;
    margin-top: auto;
}

.percorso-footer .btn {
    width: 100%;
}

/* =====================================================
   GALLERY SECTION - Responsive
   ===================================================== */
.gallery-section {
    background: var(--black);
    padding: 80px 0;
}

.gallery-section .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--primary-pink-rgb), 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =====================================================
   CONTATTI SECTION - Responsive
   ===================================================== */
.contatti-section {
    background: var(--white);
}

.contatti-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contatti-text .lead {
    margin-bottom: 20px;
}

.contatti-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    min-height: 80px;
}

.contact-card i {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-card.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-card.whatsapp:hover {
    background: #128C7E;
    transform: translateX(10px);
}

.contact-card.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
}

.contact-card.instagram:hover {
    transform: translateX(10px);
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-value {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
}

/* CTA Card */
.cta-card {
    background: var(--black);
    padding: 60px 50px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-pink-rgb), 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-logo {
    width: 140px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 4px 15px rgba(var(--primary-pink-rgb), 0.3));
}

.cta-card h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--gray-light);
    margin-bottom: 30px;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* =====================================================
   FOOTER - Responsive
   ===================================================== */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(var(--primary-pink-rgb), 0.2));
}

.footer-brand p {
    color: var(--gray-light);
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 8px;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* =====================================================
   WHATSAPP FLOATING BUTTON - Mobile Optimized
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    pointer-events: none;
}

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

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

/* =====================================================
   CHECK-UP GRATUITO POPUP - Premium Center Design
   ===================================================== */

/* Overlay Background */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Popup */
.checkup-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--black);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(var(--primary-pink-rgb), 0.2);
    z-index: 9999;
    max-width: 400px;
    width: calc(100% - 40px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkup-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Glow Effect */
.checkup-popup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(var(--primary-pink-rgb), 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
    animation: popup-glow-pulse 3s ease-in-out infinite;
}

@keyframes popup-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Close Button */
.checkup-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-normal);
    z-index: 10;
}

.checkup-popup-close:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: rotate(90deg);
}

/* Content */
.checkup-popup-content {
    position: relative;
    padding: 50px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

/* Logo */
.checkup-popup-logo {
    margin-bottom: 25px;
}

.checkup-popup-logo img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 5px 25px rgba(var(--primary-pink-rgb), 0.5));
    animation: logo-float 3s ease-in-out infinite;
}

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

/* Badge */
.checkup-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(var(--primary-pink-rgb), 0.4);
}

.checkup-popup-badge i {
    font-size: 0.85rem;
}

/* Title */
.checkup-popup-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.checkup-popup-title span {
    color: var(--primary-pink);
}

/* Text */
.checkup-popup-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

/* CTA Button */
.checkup-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 35px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-normal);
    width: 100%;
    max-width: 300px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.checkup-popup-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.checkup-popup-btn i {
    font-size: 1.4rem;
}

.checkup-popup-btn span {
    font-size: 1rem;
}

/* Note */
.checkup-popup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.checkup-popup-note i {
    font-size: 0.75rem;
}

/* =====================================================
   RESPONSIVE DESIGN - COMPREHENSIVE BREAKPOINTS
   ===================================================== */

/* ===== DESKTOP LARGE (1440px+) ===== */
@media (min-width: 1440px) {
    :root {
        --container-max: 1320px;
    }
    
    .hero-content {
        padding: 80px;
    }
}

/* ===== LAPTOP (1024px - 1199px) ===== */
@media (max-width: 1199px) {
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .valore-content {
        gap: 40px;
    }
    
    .valore-features {
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .chi-sono-content {
        gap: 60px;
    }
    
    .percorsi-grid {
        gap: 20px;
    }
    
    .percorso-card.featured {
        transform: scale(1.03);
    }
    
    .contatti-content {
        gap: 60px;
    }
}

/* ===== TABLET (768px - 1023px) ===== */
@media (max-width: 1023px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 20px;
    }
    
    /* Navigation - Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: var(--transition-normal);
        padding: 20px;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Hero - Tablet */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-subtitle {
        margin: 0 auto 35px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        aspect-ratio: 4/5;
    }
    
    .hero-decoration-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }
    
    .hero-decoration-2 {
        width: 200px;
        height: 200px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Valore */
    .valore-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .valore-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Risultati */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-stats {
        padding: 50px 40px;
    }
    
    /* Chi Sono */
    .chi-sono-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .chi-sono-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .chi-sono-text {
        text-align: center;
    }
    
    .chi-sono-values {
        justify-content: center;
    }
    
    .chi-sono-text .btn {
        margin: 0 auto;
    }
    
    /* Percorsi */
    .percorsi-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .percorso-card.featured {
        transform: none;
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .percorso-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contatti */
    .contatti-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contatti-text {
        text-align: center;
    }
    
    .contatti-methods {
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 400px;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===== MOBILE LARGE (576px - 767px) ===== */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Navigation - Logo più grande */
    .nav-logo img {
        height: 55px;
    }
    
    /* Hero - Mobile Optimized Design */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-container {
        padding-top: 90px;
        padding-bottom: 80px;
        gap: 30px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    /* Navigation - Logo più grande su mobile */
    .nav-logo img {
        height: 65px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 55px;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 16px;
    }
    
    .hero-title-sub {
        font-size: 0.7em;
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .btn-glow {
        box-shadow: 0 0 25px rgba(var(--primary-pink-rgb), 0.5);
    }
    
    /* Hero Image - Under Text */
    .hero-image {
        order: 2;
        margin-top: 10px;
    }
    
    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        aspect-ratio: 3/4;
        border-radius: var(--radius-lg);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(var(--primary-pink-rgb), 0.25);
    }
    
    .hero-image-glow {
        inset: -15px;
        filter: blur(25px);
    }
    
    /* Decorations - Smaller on mobile */
    .hero-decoration-1 {
        width: 180px;
        height: 180px;
        top: 5%;
        right: -40px;
    }
    
    .hero-decoration-2 {
        width: 150px;
        height: 150px;
        bottom: 15%;
        left: -50px;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator span {
        font-size: 0.65rem;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
    
    /* Valore */
    .valore-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    /* Risultati */
    .testimonials-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    /* Chi Sono */
    .image-badge {
        bottom: -15px;
        right: 15px;
        padding: 15px 20px;
        font-size: 0.85rem;
    }
    
    .image-badge i {
        font-size: 1.25rem;
    }
    
    /* Popup Check-up - Mobile */
    .checkup-popup {
        max-width: 360px;
        width: calc(100% - 30px);
        border-radius: var(--radius-lg);
    }
    
    .checkup-popup-content {
        padding: 40px 25px 30px;
    }
    
    .checkup-popup-logo img {
        height: 75px;
    }
    
    .checkup-popup-badge {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .checkup-popup-title {
        font-size: 1.6rem;
    }
    
    .checkup-popup-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .checkup-popup-btn {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
    
    .checkup-popup-btn i {
        font-size: 1.2rem;
    }
    
    .checkup-popup-close {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    
    /* Percorsi */
    .percorsi-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .percorso-card.featured {
        grid-column: span 1;
        order: -1;
    }
    
    .percorso-header {
        padding: 35px 25px 20px;
    }
    
    .percorso-body {
        padding: 25px;
    }
    
    .percorso-footer {
        padding: 0 25px 25px;
    }
    
    /* Gallery */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        gap: 12px;
    }
    
    /* CTA Card */
    .cta-card {
        padding: 40px 30px;
    }
    
    .cta-logo {
        width: 100px;
        margin-bottom: 25px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ===== MOBILE (480px - 575px) ===== */
@media (max-width: 575px) {
    html {
        font-size: 15px;
    }
    
    .nav-logo img {
        height: 60px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 50px;
    }
    
    /* Hero - Small Mobile */
    .hero-container {
        padding-top: 85px;
        padding-bottom: 70px;
        gap: 25px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5.5vw, 1.9rem);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-image-wrapper {
        max-width: 280px;
    }
    
    .hero-image-wrapper img {
        border-radius: var(--radius-md);
    }
    
    .hero-decoration-1 {
        width: 150px;
        height: 150px;
    }
    
    .hero-decoration-2 {
        width: 120px;
        height: 120px;
    }
    
    /* Cards */
    .feature-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Results Stats */
    .results-stats {
        padding: 35px 25px;
        border-radius: var(--radius-md);
    }
    
    /* Percorsi */
    .percorso-card {
        border-radius: var(--radius-md);
    }
    
    .percorso-header {
        padding: 30px 20px 15px;
    }
    
    .percorso-body {
        padding: 20px;
    }
    
    .percorso-footer {
        padding: 0 20px 20px;
    }
    
    .percorso-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .percorso-quote {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    /* Contact Cards */
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-card i {
        font-size: 2.5rem;
    }
    
    /* CTA Card */
    .cta-card {
        padding: 35px 20px;
        border-radius: var(--radius-lg);
    }
    
    .cta-logo {
        width: 90px;
    }
    
    /* Footer */
    .footer-logo {
        height: 50px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}

/* ===== MOBILE SMALL (320px - 479px) ===== */
@media (max-width: 479px) {
    html {
        font-size: 14px;
    }
    
    :root {
        --section-padding: 50px 0;
        --container-padding: 12px;
    }
    
    /* Navigation - Logo Grande */
    /* Navigation - Logo grande anche su schermi piccoli */
    .nav-logo img {
        height: 55px;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 45px;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    /* Hero - Extra Small Mobile */
    .hero-container {
        padding-top: 80px;
        padding-bottom: 60px;
        gap: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.35rem, 5vw, 1.7rem);
        margin-bottom: 12px;
    }
    
    .hero-title-sub {
        font-size: 0.65em;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.55;
    }
    
    .hero-cta .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-image-wrapper {
        max-width: 250px;
    }
    
    .hero-image-wrapper img {
        box-shadow: 
            0 15px 45px rgba(0, 0, 0, 0.35),
            0 0 30px rgba(var(--primary-pink-rgb), 0.2);
    }
    
    .hero-image-glow {
        inset: -10px;
        filter: blur(20px);
    }
    
    .hero-decoration-1 {
        width: 120px;
        height: 120px;
        top: 10%;
        right: -30px;
    }
    
    .hero-decoration-2 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: -40px;
    }
    
    .scroll-indicator {
        bottom: 10px;
    }
    
    .scroll-indicator span {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .scroll-indicator i {
        font-size: 0.9rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
        padding: 0 8px;
    }
    
    /* Cards - Compact */
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.35rem;
    }
    
    .testimonial-card {
        padding: 20px 16px;
    }
    
    /* Stats */
    .results-stats {
        padding: 30px 20px;
        gap: 25px;
    }
    
    /* Chi Sono */
    .chi-sono-image {
        max-width: 100%;
    }
    
    .image-badge {
        bottom: -10px;
        right: 10px;
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .image-badge i {
        font-size: 1rem;
    }
    
    /* Popup Check-up - Small Mobile */
    .checkup-popup {
        max-width: 320px;
        width: calc(100% - 24px);
        border-radius: var(--radius-md);
    }
    
    .checkup-popup-content {
        padding: 35px 20px 25px;
    }
    
    .checkup-popup-close {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
    }
    
    .checkup-popup-logo {
        margin-bottom: 18px;
    }
    
    .checkup-popup-logo img {
        height: 65px;
    }
    
    .checkup-popup-badge {
        padding: 5px 12px;
        font-size: 0.65rem;
        margin-bottom: 15px;
    }
    
    .checkup-popup-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .checkup-popup-text {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .checkup-popup-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .checkup-popup-btn i {
        font-size: 1.1rem;
    }
    
    .checkup-popup-note {
        margin-top: 15px;
        font-size: 0.75rem;
    }
    
    .chi-sono-values {
        gap: 15px;
    }
    
    .value-item {
        font-size: 0.9rem;
    }
    
    /* Percorsi */
    .percorsi-grid {
        max-width: 100%;
    }
    
    .percorso-header {
        padding: 25px 16px 12px;
    }
    
    .percorso-body {
        padding: 16px;
    }
    
    .percorso-footer {
        padding: 0 16px 16px;
    }
    
    .percorso-features li {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .percorso-badge {
        font-size: 0.65rem;
        padding: 6px 40px;
        right: -30px;
    }
    
    /* Gallery */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-grid {
        gap: 8px;
    }
    
    .gallery-item {
        border-radius: var(--radius-sm);
    }
    
    /* Contact */
    .contact-card {
        padding: 18px 15px;
    }
    
    .contact-card i {
        font-size: 2rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    /* CTA Card */
    .cta-card {
        padding: 30px 16px;
    }
    
    .cta-logo {
        width: 80px;
        margin-bottom: 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
        padding-bottom: 30px;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ===== LANDSCAPE ORIENTATION - MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 80px 40px 40px;
    }
    
    .hero-image {
        display: none;
    }
    
    .nav-menu {
        padding-top: 80px;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* =====================================================
   ACCESSIBILITY & REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-pink);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
    .navbar,
    .whatsapp-float,
    .scroll-indicator,
    .nav-toggle {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding-top: 0;
    }
    
    .section {
        padding: 30px 0;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
