/* Import Google Fonts - Professional & Harmonious */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Elegant & Professional */
    --primary-color: #b91c1c;
    --primary-dark: #991b1b;
    --primary-light: #dc2626;
    --secondary-color: #1f2937;
    --accent-gold: #ca8a04;
    --accent-warm: #fef3c7;
    --accent-beige: #fef9e7;

    /* Neutrals - Harmonious Grays */
    --dark-color: #1f2937;
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-tertiary: #6b7280;
    --text-quaternary: #9ca3af;
    --light-bg: #f9fafb;
    --lighter-bg: #f3f4f6;
    --white: #ffffff;
    --border-color: #e5e7eb;

    /* Shadows - Multiple livelli */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--white);
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.75rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
}

h3 {
    font-size: 2.25rem;
    font-weight: 600;
}

h4 {
    font-size: 1.65rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.text-muted {
    color: var(--text-tertiary);
}

.text-light-color {
    color: var(--text-quaternary);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Mobile touch targets - ensuring buttons and links are easy to tap */
@media (max-width: 768px) {
    /* Buttons */
    button, .btn, input[type="submit"] {
        min-height: 48px;
        padding: 14px 32px;
    }

    /* Navigation Links */
    .nav-menu a {
        min-height: 48px;
        padding: 1rem 1.25rem;
    }

    /* Menu Toggle */
    .menu-toggle {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
    }

    .menu-toggle span {
        width: 28px;
        height: 3px;
        margin: 4px 0;
    }

    /* Service Links */
    .servizio-link {
        padding: 0.5rem 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Social and Footer Links */
    .social-button,
    .footer-section a {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
}

/* Buttons - Modern Design */
.btn {
    display: inline-block;
    padding: 17px 42px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* Improved touch target for mobile */
    min-height: 44px;
    min-width: 44px;
}

.btn::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 var(--transition-slow);
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #991b1b 50%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow:
        0 4px 15px rgba(185, 28, 28, 0.4),
        0 0 30px rgba(185, 28, 28, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 25px rgba(185, 28, 28, 0.6),
        0 0 50px rgba(185, 28, 28, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #dc2626 0%, var(--primary-color) 50%, #991b1b 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.1), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow:
        0 6px 25px rgba(202, 138, 4, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Header & Navigation - Modern & Elegant */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo h1 span {
    color: var(--dark-color);
    font-weight: 400;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--text-quaternary);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
    transition: width var(--transition-base);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Rebuilt from scratch */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay on background image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(185, 28, 28, 0.45) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

/* Container for hero content */
.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 7rem;
}

/* Main content wrapper */
.hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 0 2rem;
}

/* Hero title */
.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero h1 span {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero subtitle */
.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator - positioned at bottom */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
}

/* Section Header - Elegant & Modern */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Servizi Section - Premium Design */
.servizi {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-warm) 100%);
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

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

.servizio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.servizio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.servizio-card:hover::before {
    transform: scaleX(1);
}

.servizio-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-beige);
}

.servizio-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-beige));
    border-radius: var(--radius-md);
}

.servizio-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.servizio-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.servizio-card ul li {
    padding: 0.85rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

.servizio-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.8rem;
    top: 0.9rem;
}

.servizio-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.servizio-link::after {
    content: '→';
    transition: transform var(--transition-base);
}

.servizio-link:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

.servizio-link:hover::after {
    transform: translateX(5px);
}

/* Chi Siamo Section */
.chi-siamo {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chi-siamo-text h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.chi-siamo-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.chi-siamo-image .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

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

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

.portfolio-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-image .image-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-quaternary);
    font-size: 0.95rem;
}

/* Contatti Section */
.contatti {
    padding: 4rem 0;
}

.contatti-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem;
}

.contatti-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.3rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-item a {
    color: var(--primary-color);
}

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

.orari {
    margin-top: 2rem;
    padding: 1.2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.orari h4 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Form Styles */
.contatti-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

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

/* Mobile Form Improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 12px;
        padding-right: 2.5rem;
    }

    .form-group textarea {
        min-height: 130px;
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .contatti-form .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer - Elegant & Professional */
footer {
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
    color: #ffffff;
    padding: 3.5rem 0 0;
    position: relative;
    border-top: 1px solid rgba(202, 138, 4, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(202, 138, 4, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 28, 28, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-section {
    padding-right: 1rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(202, 138, 4, 0.95);
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.footer-tagline {
    color: rgba(202, 138, 4, 0.85);
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-slogan {
    font-style: italic;
    color: rgba(202, 138, 4, 0.7);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-section a:hover {
    color: rgba(202, 138, 4, 1);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    border-color: #b91c1c;
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Logo Styles */
.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.8rem;
    filter: brightness(0) invert(1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: var(--text-quaternary);
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Hero - Ultra Premium */
.page-hero {
    height: 65vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Layered Animated Background */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg,
            rgba(17, 24, 39, 0.88) 0%,
            rgba(139, 0, 0, 0.78) 50%,
            rgba(153, 27, 27, 0.88) 100%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="0" cy="0" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="60" cy="60" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    background-size: cover, 60px 60px;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(202, 138, 4, 0.3) 0%, transparent 25%),
        radial-gradient(ellipse at 50% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at 80% 50%, rgba(185, 28, 28, 0.35) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(139, 0, 0, 0.2) 0%, transparent 30%);
    animation: pageSlideBackground 25s linear infinite;
    z-index: 1;
}

@keyframes pageSlideBackground {
    0% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(16.666%) scale(1.05);
    }
    100% {
        transform: translateX(33.333%) scale(1);
    }
}

@keyframes slideBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(33.333%);
    }
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.5),
        0 6px 30px rgba(184, 21, 30, 0.6),
        0 12px 50px rgba(202, 138, 4, 0.4),
        0 0 70px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg,
        #ffffff 0%,
        #fef9e7 20%,
        #f9fafb 40%,
        #e5e7eb 60%,
        #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s ease;
    position: relative;
    display: inline-block;
}

.page-hero h1::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(ellipse at center, rgba(202, 138, 4, 0.2) 0%, transparent 60%);
    filter: blur(15px);
    z-index: -1;
    opacity: 0.8;
}

.page-hero p {
    font-size: 1.65rem;
    font-weight: 300;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.97);
    letter-spacing: 0.5px;
    animation: fadeInUp 1.2s ease;
    line-height: 1.8;
    max-width: 700px;
}

/* Servizi Preview (Homepage) - Premium Card Design */
.servizi-preview {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.servizi-preview .servizi-grid {
    gap: 2.5rem;
    margin-top: 2rem;
}

.servizi-preview .servizio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    background: var(--white);
}

.servizio-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.servizio-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.servizio-card:hover .servizio-image::after {
    opacity: 1;
}

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

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

.servizio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.servizio-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.servizio-content p {
    color: var(--text-tertiary);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Servizi Dettaglio (Service Pages) */
.servizi-dettaglio {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.servizio-dettaglio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.servizio-dettaglio-item.reverse {
    direction: rtl;
}

.servizio-dettaglio-item.reverse > * {
    direction: ltr;
}

.servizio-dettaglio-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.servizio-dettaglio-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.servizio-dettaglio-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.servizio-dettaglio-content ul {
    list-style: none;
    padding: 0;
}

.servizio-dettaglio-content ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.servizio-dettaglio-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background-color: var(--light-color);
}

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

.gallery-item {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Processo Casa */
.processo-casa {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.processo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-quaternary);
    line-height: 1.6;
}

/* Materiali Nautici */
.materiali-nautici {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background-color: var(--light-color);
}

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

.materiale-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.materiale-card:hover {
    transform: translateY(-5px);
}

.materiale-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.materiale-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Portfolio Preview (Homepage) - Premium Gallery */
.portfolio-preview {
    padding: 5rem 0;
    background: var(--white);
}

.portfolio-preview .portfolio-grid {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.portfolio-cta {
    margin-top: 2rem;
}

.portfolio-description {
    font-size: 1.05rem;
    color: var(--text-tertiary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.portfolio-preview .portfolio-item {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
    transition: all var(--transition-base);
}

.portfolio-preview .portfolio-item:hover {
    border-color: var(--accent-beige);
}

.portfolio-preview .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.95);
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(17, 24, 39, 0.6) 40%,
                rgba(17, 24, 39, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform var(--transition-base);
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover .portfolio-overlay h4 {
    transform: translateY(0);
}

.portfolio-overlay p {
    font-size: 1rem;
    font-weight: 400;
    transform: translateY(20px);
    transition: transform var(--transition-base) 0.1s;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Chi Siamo Preview (Homepage) */
.chi-siamo-preview {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.chi-siamo-preview .chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.chi-siamo-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.chi-siamo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* CTA Section - Modern Clean Design */
.cta {
    position: relative;
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(202, 138, 4, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.cta h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.cta p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Fade-in Animation for Scroll - Smooth & Professional */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Decorative Elements */
.decorative-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    margin: 2rem auto;
    border-radius: 2px;
}

/* Premium Backgrounds */
.bg-premium {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-warm) 50%, var(--light-bg) 100%);
}

.bg-white {
    background: var(--white);
}

.bg-dark {
    background: var(--dark-color);
    color: var(--white);
}

/* Processo (Homepage) - Elegant Steps */
.processo {
    padding: 5rem 0;
    background: var(--light-bg);
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

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

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

.processo-step {
    text-align: center;
    padding: 0;
    position: relative;
}

.processo-step::after {
    content: '→';
    position: absolute;
    top: 100px;
    right: -1.5rem;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.3;
}

.processo-step:last-child::after {
    display: none;
}

.processo-step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid var(--white);
}

.processo-step:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.processo-step h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.processo-step p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Chi Siamo Page Styles */
.chi-siamo-storia {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.storia-content {
    max-width: 900px;
    margin: 0 auto;
}

.storia-text {
    margin-bottom: 0;
}

.storia-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.storia-text .subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
}

.storia-text p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.storia-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.storia-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 550px;
    object-fit: cover;
    display: block;
}

/* Valori Section */
.valori-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.valore-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.valore-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.valore-card h3 {
    color: var(--primary-color);
    padding: 1.3rem 1.5rem 0.4rem;
    font-size: 1.3rem;
}

.valore-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Processo Completo */
.processo-completo {
    padding: 4rem 0;
}

.processo-completo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.processo-fase {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.fase-numero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0.8rem;
    text-align: center;
}

.fase-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.processo-fase h4 {
    color: var(--dark-color);
    padding: 1.3rem 1.5rem 0.4rem;
    font-size: 1.2rem;
}

.processo-fase p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Competenze Section */
.competenze-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

.competenze-text h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.competenza-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.competenza-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.competenza-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.competenze-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.competenze-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Portfolio Page Styles */
.portfolio-intro {
    padding: 3.5rem 0 2rem;
}

.portfolio-categoria {
    padding: 3.5rem 0;
}

.categoria-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categoria-header h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.categoria-header p {
    font-size: 1.05rem;
    color: var(--text-tertiary);
    margin-bottom: 2rem;
}

/* Mappa Section */
.mappa-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background-color: var(--light-color);
}

.mappa-container {
    margin-top: 3rem;
}

/* ================================
   SERVIZI PAGE STYLES
   ================================ */

/* Servizi Intro Section */
.servizi-intro {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Servizi Overview Section */
.servizi-overview {
    padding: 4.5rem 0;
    background-color: var(--light-bg);
}

.servizi-overview .servizi-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Large Service Cards */
.servizio-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.servizio-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.servizio-card-large:nth-child(even) {
    direction: rtl;
}

.servizio-card-large:nth-child(even) > * {
    direction: ltr;
}

.servizio-image-large {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

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

.servizio-card-large:hover .servizio-image-large img {
    transform: scale(1.03);
}

.servizio-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.servizio-content-large {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servizio-content-large h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.servizio-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.servizio-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.servizio-highlights li {
    font-size: 0.98rem;
    color: var(--text-tertiary);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.servizio-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 4.5rem 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
    background: var(--white);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.why-card h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-tertiary);
}

/* Footer Contact Info - Redesigned */
.footer-contact-info {
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    padding-left: 0.5rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: rgba(202, 138, 4, 0.8);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.contact-item small {
    color: rgba(202, 138, 4, 0.75);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.contact-item:hover a {
    color: rgba(255, 255, 255, 0.95);
}

/* Footer Social Buttons */
.footer-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-button svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #ffffff;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.instagram-button {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 50%, #E1306C 100%);
    color: #ffffff;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.facebook-button {
    background: #1877f2;
    color: #ffffff;
}

.facebook-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    background: #166fe5;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 21, 30, 0.3);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(184, 21, 30, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation - Migliorato */
    .menu-toggle {
        display: flex;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color 0.3s ease;
    }

    .menu-toggle:hover {
        background-color: var(--light-bg);
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
        flex-direction: column;
        padding: 1rem 1.25rem 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        display: none;
        gap: 0.35rem;
        border-top: 2px solid var(--primary-color);
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.9rem 1.1rem;
        font-size: 1.05rem;
        font-weight: 500;
        border-radius: var(--radius-md);
        transition: all 0.25s ease;
        color: var(--text-secondary);
        border: 1px solid transparent;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(185, 28, 28, 0.08) 0%, rgba(185, 28, 28, 0.04) 100%);
        color: var(--primary-color);
        border-color: rgba(185, 28, 28, 0.15);
        transform: translateX(3px);
    }

    .nav-menu a.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.25rem;
        margin-top: 0.4rem;
        background-color: rgba(249, 250, 251, 0.6);
        border-radius: var(--radius-md);
        border-left: 3px solid var(--primary-color);
    }

    .dropdown-menu a {
        padding: 0.7rem 1rem;
        font-size: 0.98rem;
        font-weight: 400;
    }

    .dropdown-menu a:hover {
        background-color: rgba(185, 28, 28, 0.06);
        transform: translateX(2px);
    }

    /* Mobile Logo */
    .logo h1 {
        font-size: 1.5rem;
    }

    .logo img {
        height: 50px;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    /* Mobile Hero Section */
    .hero {
        min-height: 600px;
        height: 90vh;
    }

    .hero-overlay {
        padding: 2rem 0 5rem;
    }

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

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
    }

    /* Mobile Page Hero */
    .page-hero {
        height: 50vh;
        min-height: 380px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .page-hero p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.6;
    }

    /* Mobile CTA Section */
    .cta {
        padding: 3rem 0;
    }

    .cta h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: -0.5px;
        margin-bottom: 1.2rem;
    }

    .cta p {
        font-size: clamp(1rem, 3vw, 1.15rem);
        margin-bottom: 2rem;
    }

    /* Mobile Typography */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Mobile Grid Layouts */
    .servizi-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servizio-card {
        padding: 1.5rem;
    }

    .servizio-card h3 {
        font-size: 1.5rem;
    }

    .servizio-image {
        height: 220px;
    }

    .servizio-dettaglio-item,
    .servizio-dettaglio-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
        margin-bottom: 3rem;
    }

    .servizio-dettaglio-image {
        height: 280px;
    }

    .servizio-dettaglio-content h3 {
        font-size: 1.6rem;
    }

    /* Mobile Chi Siamo */
    .chi-siamo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chi-siamo-preview .chi-siamo-content {
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }

    /* Layout chi-siamo mobile - TESTO SOPRA, IMMAGINE SOTTO */
    .chi-siamo-preview .chi-siamo-text {
        order: 1;
    }

    .chi-siamo-preview .chi-siamo-image {
        order: 2;
    }

    .chi-siamo-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .chi-siamo-text .subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .chi-siamo-text p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .chi-siamo-preview .chi-siamo-text .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .chi-siamo-preview .features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .chi-siamo-preview .feature {
        justify-content: center;
        text-align: center;
    }

    .storia-content,
    .competenze-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .storia-image img,
    .competenze-image img,
    .chi-siamo-image img {
        height: 320px;
        min-height: 280px;
    }

    /* Mobile Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-preview .portfolio-item {
        height: 300px;
    }

    .portfolio-item {
        margin-bottom: 1rem;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-overlay h4 {
        font-size: 1.4rem;
    }

    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 280px;
    }

    /* Mobile Processo & Valori */
    .processo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .processo-step::after {
        display: none;
    }

    .processo-step img {
        height: 180px;
    }

    .processo-completo-grid,
    .valori-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile Servizi Overview */
    .servizio-card-large,
    .servizio-card-large:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 0;
    }

    .servizio-image-large {
        min-height: 260px;
        height: 260px;
    }

    .servizio-content-large {
        padding: 2rem 1.5rem;
    }

    .servizio-content-large h3 {
        font-size: 1.6rem;
    }

    .servizio-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Mobile Why Choose */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    /* Mobile Contatti */
    .contatti-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contatti-form {
        padding: 1.5rem;
    }

    /* Mobile Footer - Migliorato */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        text-align: left;
        padding: 0 0.5rem;
    }

    .footer-logo-section {
        text-align: center;
        padding-bottom: 1rem;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-info {
        align-items: flex-start;
    }

    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-social-buttons {
        align-items: stretch;
        gap: 0.8rem;
    }

    .social-button {
        padding: 0.85rem 1.1rem;
        font-size: 0.9rem;
        justify-content: flex-start;
    }

    .footer-section ul {
        margin-top: 0.5rem;
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
    }

    .footer-section ul li a {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        display: inline-block;
    }

    .social-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Adjustments */
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Mobile Hero - Extra Small */
    .hero {
        min-height: 500px;
        height: 85vh;
    }

    .hero-overlay {
        padding: 1.5rem 0 4rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: clamp(0.95rem, 3vw, 1.05rem);
        margin-bottom: 1.8rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        padding: 14px 32px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Mobile Page Hero - Extra Small */
    .page-hero {
        height: 45vh;
        min-height: 340px;
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.3rem);
        letter-spacing: -0.8px;
    }

    .page-hero p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    /* Mobile CTA - Extra Small */
    .cta {
        padding: 2.5rem 0;
    }

    .cta h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        letter-spacing: -0.3px;
    }

    .cta p {
        font-size: clamp(0.95rem, 3vw, 1.05rem);
    }

    /* Mobile Buttons */
    .btn {
        padding: 13px 28px;
        font-size: 0.9rem;
    }

    /* Mobile Sections Spacing - Ridotte e ottimizzate */
    .servizi,
    .servizi-preview,
    .portfolio-preview,
    .chi-siamo-preview,
    .processo,
    .chi-siamo-storia,
    .servizi-intro,
    .servizi-overview,
    .why-choose,
    .portfolio-intro {
        padding: 2.5rem 0;
    }

    /* CTA section più compatta */
    .cta {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 5vw, 1.9rem);
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Mobile Typography - Extra Small */
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    /* Mobile Cards & Content */
    .servizio-card {
        padding: 1.25rem;
    }

    .servizio-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .servizio-content {
        padding: 1.5rem;
    }

    .servizio-image {
        height: 200px;
    }

    .servizio-dettaglio-image {
        height: 240px;
    }

    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .gallery-item {
        height: 240px;
    }

    /* Mobile Portfolio */
    .portfolio-preview .portfolio-item {
        height: 260px;
    }

    .portfolio-overlay {
        padding: 1.2rem;
    }

    .portfolio-overlay h4 {
        font-size: 1.2rem;
    }

    .portfolio-overlay p {
        font-size: 0.9rem;
    }

    /* Mobile Images */
    .storia-image img,
    .competenze-image img {
        height: 280px;
        min-height: 240px;
    }

    /* Chi Siamo Preview mobile - immagine più compatta */
    .chi-siamo-preview .chi-siamo-image img {
        height: 300px;
        min-height: 260px;
        border-radius: var(--radius-lg);
    }

    /* Mobile Logo */
    .logo h1 {
        font-size: 1.3rem;
    }

    .logo img {
        height: 45px;
    }

    .logo .tagline {
        font-size: 0.7rem;
    }

    /* Mobile Servizi Overview */
    .servizio-card-large {
        border-radius: var(--radius-md);
    }

    .servizio-image-large {
        min-height: 220px;
        height: 220px;
    }

    .servizio-content-large {
        padding: 1.5rem 1.25rem;
    }

    .servizio-content-large h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .servizio-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .servizio-highlights li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .servizio-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Mobile Why Grid */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .why-card {
        padding: 1.25rem;
    }

    .why-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .why-card h4 {
        font-size: 1.15rem;
    }

    .why-card p {
        font-size: 0.9rem;
    }

    /* Mobile Contatti Form */
    .contatti-form {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

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

    /* Mobile Footer */
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-logo {
        height: 45px;
        margin: 0 auto;
        display: block;
    }

    .social-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }

    .social-button svg {
        width: 14px;
        height: 14px;
    }

    .footer-social-buttons {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 0.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .footer-slogan {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    /* Mobile Floating Buttons */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Back to top mobile - più visibile e veloce */
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 85px;
        right: 20px;
        left: auto;
        box-shadow: 0 4px 20px rgba(184, 21, 30, 0.5);
    }

    .back-to-top svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top:hover {
        box-shadow: 0 6px 30px rgba(184, 21, 30, 0.7);
    }

    /* Mobile Breadcrumb */
    .breadcrumb {
        padding: 0.8rem 0;
    }

    .breadcrumb nav {
        font-size: 0.85rem;
    }

    /* Mobile Processo */
    .processo-step img {
        height: 160px;
    }

    .processo-step h4 {
        font-size: 1.05rem;
    }

    .processo-step p {
        font-size: 0.85rem;
    }

    /* Mobile Competenze */
    .competenza-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .competenza-item h4 {
        font-size: 1.15rem;
    }

    .competenza-item p {
        font-size: 0.9rem;
    }
}