/* ================================
   RIKMANIA - CSS IDENTICO ALL'ORIGINALE
   Font: Fugaz One, Kanit, Nunito, Montserrat
   ================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&family=Kanit:wght@100;200;300;400;500;600;700;800;900&family=Nunito:wght@200;300;400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

:root {
    /* Colori esatti dal sito originale */
    --color-cream: #FFF7F0;
    --color-orange: #FFAA00;
    --color-dark: #191D1D;
    --color-red: #FF0000;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray: #6c757d;

    /* Font families */
    --font-title: 'Fugaz One', sans-serif;
    --font-heading: 'Kanit', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --font-alt: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-cream);
    overflow-x: clip;
    width: 100%;
}

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

ul {
    list-style: none;
}

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

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

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
    box-sizing: border-box;
}

header.scrolled {
    background-color: rgba(25, 29, 29, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-links a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
}

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

.nav-links a:hover {
    color: var(--color-orange);
}

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

/* Nav Phone Button */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--color-white);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.nav-phone i {
    font-size: 14px;
}

/* Hide mobile menu elements on desktop */
.mobile-menu-header,
.mobile-menu-footer {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
    /* Reset button styles per accessibilità */
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 29, 29, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.hero h1 {
    font-family: var(--font-title);
    color: var(--color-cream);
    font-size: 180px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1;
    text-transform: uppercase;
}

.hero h1.hero-logo {
    font-family: 'Magneto', var(--font-title);
    font-size: 120px;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}

.hero-description {
    font-family: var(--font-body);
    color: var(--color-white);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 60px;
    line-height: 1.5;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Small - per pagine interne */
.hero-small {
    min-height: 60vh;
}

.hero-small h1 {
    font-size: 100px;
}

.hero-small .hero-description {
    font-size: 20px;
    margin-bottom: 0;
}

/* Cataloghi Buttons */
.cataloghi-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.catalogo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 30px;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.catalogo-btn span {
    display: block;
}

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

.catalogo-btn i {
    font-size: 28px;
    color: var(--color-white);
    opacity: 0.7;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

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

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

.section-cream {
    background-color: var(--color-cream);
}

.section-red {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* ================================
   CHI SIAMO SECTION
   ================================ */
.chi-siamo {
    background-color: var(--color-cream);
    padding: 100px 0;
}

.chi-siamo-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.chi-siamo-left {
    display: flex;
    flex-direction: column;
}

.chi-siamo-text {
    margin-bottom: 40px;
}

.chi-siamo-text h2 {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.chi-siamo-text h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.chi-siamo-text p {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.chi-siamo-text p strong {
    font-weight: 700;
}

.btn-scopri {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--color-orange);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-scopri:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Stats */
.chi-siamo-stats {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 80px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 90px;
    font-weight: 300;
    color: var(--color-orange);
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-top: 10px;
}

/* Chi Siamo Gallery */
.chi-siamo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.chi-siamo-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.chi-siamo-gallery img.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   CTA PREVENTIVO
   ================================ */
.cta-preventivo {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.1s ease-out;
    z-index:e 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.cta-preventivo .container {
    position: relative;
    z-index: 3;
}

.cta-preventivo h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-preventivo p {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-contattaci {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid var(--color-white);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-contattaci:hover {
    background-color: var(--color-white);
    color: var(--color-red);
}

/* ================================
   SERVIZI SECTION
   ================================ */
.servizi {
    background-color: var(--color-cream);
    padding: 100px 0;
}

.servizi-header {
    text-align: left;
    margin-bottom: 30px;
}

.servizi-header h2 {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.servizi-header h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.servizi-header p {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.8;
    max-width: 500px;
}

.servizi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 60px;
}

.servizi-text {
    padding-right: 0;
}

/* Static Images */
.servizi-images {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.servizi-static-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.servizi-static-img {
    width: 100%;
}

.servizi-static-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
}

/* Servizi Carousel */
.servizi-carousel-container {
    position: relative;
    margin-top: 20px;
}

.servizi-carousel {
    overflow: hidden;
}

.servizi-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.servizi-carousel-slide {
    flex: 0 0 calc(25% - 15px);
}

.servizi-carousel-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.servizi-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--color-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: none;
    opacity: 0.6;
}

.servizi-carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.servizi-carousel-btn.prev {
    left: 10px;
}

.servizi-carousel-btn.next {
    right: 10px;
}

@media (max-width: 768px) {
    .servizi-carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        opacity: 0.5;
    }

    .servizi-carousel-btn.prev {
        left: 5px;
    }

    .servizi-carousel-btn.next {
        right: 5px;
    }
}

/* Servizi List (Homepage) */
.servizi-list {
    margin-top: 80px;
}

.servizio-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: start;
}

.servizio-row:first-child {
    padding-top: 0;
}

.servizio-row:last-child {
    border-bottom: none;
}

.servizio-title h2 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.servizio-desc p {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-scopri-servizio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-scopri-servizio:hover {
    color: var(--color-dark);
}

.btn-scopri-servizio i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.btn-scopri-servizio:hover i {
    transform: translateX(5px);
}

/* ================================
   GALLERY FULLWIDTH
   ================================ */
.gallery-fullwidth {
    padding: 0;
}

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

.gallery-fullwidth-item {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.lightbox-slider {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-out;
    will-change: transform;
    transform: translateX(-100vw);
}

.lightbox-slider.dragging {
    transition: none;
}

.lightbox-image {
    flex-shrink: 0;
    width: 100vw;
    max-height: 85vh;
    object-fit: contain;
    padding: 0 5vw;
    box-sizing: border-box;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--color-orange);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-orange);
    color: var(--color-dark);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
}

/* ================================
   GALLERY GRID
   ================================ */
.gallery-section {
    background-color: var(--color-cream);
    padding: 80px 0;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

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

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

/* ================================
   RECENSIONI
   ================================ */
/* ================================
   RECENSIONI SECTION (Google Places API)
   ================================ */
.recensioni {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-label-light {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.recensioni-header {
    margin-bottom: 40px;
}

.recensioni-google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-logo-reviews {
    height: 30px;
    width: auto;
    display: block;
}

.recensioni-rating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recensioni-stars-total {
    display: flex;
    gap: 3px;
}

.recensioni-stars-total i {
    color: #fbbc04;
    font-size: 22px;
}

.recensioni-rating-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.recensioni-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.recensioni-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.recensioni-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
}

.recensione-card {
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
    box-sizing: border-box;
    flex-shrink: 0;
    width: calc((100% - 40px) / 3);
}

.recensione-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.recensione-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.recensione-avatar-placeholder {
    background: var(--color-orange);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.recensione-author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.recensione-name {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recensione-time {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.recensione-google-icon {
    color: #4285f4;
    font-size: 20px;
    flex-shrink: 0;
}

.recensione-stars {
    margin-bottom: 12px;
}

.recensione-stars i {
    color: #fbbc04;
    font-size: 14px;
}

.recensione-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recensioni-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.recensioni-nav:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-dark);
}

.btn-recensione {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-recensione:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn-recensione i {
    font-size: 16px;
}

/* ================================
   CONTATTI SECTION
   ================================ */
.contatti {
    background-color: var(--color-dark);
    padding: 100px 0;
}

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

.contatti-info h2 {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contatti-info h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contatti-info > p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 40px;
}

.contatto-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.contatto-item:hover {
    transform: translateX(10px);
}

.contatto-item i {
    width: 50px;
    height: 50px;
    background-color: var(--color-orange);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contatto-item span {
    font-family: var(--font-body);
    font-size: 16px;
}

/* Contact Row - Side by Side */
.contatto-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contatto-row .contatto-item {
    flex: 1;
    min-width: 140px;
}

/* WhatsApp Mobile Menu Icon */
.mobile-menu-icon-whatsapp {
    color: #25D366 !important;
}

.mobile-menu-icon-whatsapp i {
    font-size: 28px;
}

.mobile-menu-icon-whatsapp:hover {
    color: #128C7E !important;
}

/* WhatsApp Contact Style */
.contatto-whatsapp i {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--color-white);
}

.contatto-whatsapp:hover i {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.mappa {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.mappa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================
   FOOTER
   ================================ */
footer {
    background-color: var(--color-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-orange);
    color: var(--color-dark);
}

.footer-links h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links ul li a {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a,
.footer-bottom span {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--color-orange);
}

/* ================================
   PAGE HEADER (Pagine interne)
   ================================ */
.page-header {
    background-color: var(--color-dark);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-family: var(--font-title);
    color: var(--color-cream);
    font-size: 80px;
    margin-bottom: 20px;
}

.page-header p {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 20px;
}

/* ================================
   PAGE CONTENT
   ================================ */
.page-content {
    background-color: var(--color-cream);
    padding: 80px 0;
}

.page-content h2 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.page-content p strong {
    font-weight: 700;
}

.content-block {
    margin-bottom: 40px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    margin-top: 0;
}

/* ================================
   CHI SIAMO PAGE SECTIONS
   ================================ */
.chi-siamo-storia {
    background-color: var(--color-cream);
    padding: 80px 0;
    text-align: center;
}

.chi-siamo-storia h2 {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.chi-siamo-storia h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.chi-siamo-storia p {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.chi-siamo-storia .btn-scopri {
    margin-bottom: 50px;
}

.chi-siamo-storia .tech-gallery {
    margin-top: 0;
}

/* Missione e Visione */
.chi-siamo-mission {
    background-color: var(--color-cream);
    padding: 0 0 80px 0;
}

.chi-siamo-mission .mission-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.chi-siamo-mission .servizio-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
    padding: 60px 0;
}

.chi-siamo-mission .servizio-row:first-child {
    padding-top: 60px;
}

.chi-siamo-mission .servizio-title h2,
.chi-siamo-mission .servizio-desc p {
    text-align: left;
}

.chi-siamo-mission .servizio-desc p {
    margin-bottom: 0;
}

/* Tecnologia Section */
.chi-siamo-tech {
    background-color: var(--color-cream);
    padding: 80px 0;
}

.chi-siamo-tech .tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

/* Layout invertito: immagini a sinistra, testo a destra */
.chi-siamo-tech .tech-content-reverse {
    direction: ltr;
}

.chi-siamo-tech .tech-content-reverse .tech-images {
    order: 1;
}

.chi-siamo-tech .tech-content-reverse .tech-text {
    order: 2;
    text-align: left;
}

.chi-siamo-tech .tech-text {
    text-align: left;
}

.chi-siamo-tech .tech-label {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.chi-siamo-tech h2 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
}

.chi-siamo-tech p {
    font-family: var(--font-body);
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.chi-siamo-tech .tech-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.chi-siamo-tech .tech-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

/* Tech Slider - Infinite */
.tech-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: grab;
    user-select: none;
}

.tech-slider:active {
    cursor: grabbing;
}

.tech-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.tech-slider-track img {
    min-width: 100%;
    width: 100%;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    pointer-events: none;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.chi-siamo-tech .tech-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 50px;
}

.chi-siamo-tech .tech-stats .stat-item {
    opacity: 1;
    transform: none;
}

.chi-siamo-tech .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chi-siamo-tech .stat-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 300;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.chi-siamo-tech .stat-percent {
    font-size: 40px;
}

.chi-siamo-tech .stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.tech-gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

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

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

/* Servizi Cards */
.servizi-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.servizio-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: block;
}

.servizio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.servizio-card i {
    font-size: 50px;
    color: var(--color-orange);
    margin-bottom: 25px;
    display: block;
}

.servizio-card h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.servizio-card p {
    font-family: var(--font-body);
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-orange);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.process-step h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step p {
    font-family: var(--font-body);
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ================================
   ALTRI SERVIZI
   ================================ */
.altri-servizi {
    background-color: var(--color-cream);
    padding: 80px 0;
}

.altri-servizi h2 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.altri-servizi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.altro-servizio-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.altro-servizio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.altro-servizio-card h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
}

/* ================================
   CTA CONTATTI
   ================================ */
.cta-contatti {
    background-color: var(--color-dark);
    padding: 80px 0;
    text-align: center;
}

.cta-contatti h2 {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 22px;
    margin-bottom: 15px;
}

.cta-contatti p {
    font-family: var(--font-body);
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ================================
   RESPONSIVE - TABLET (992px)
   ================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 80px;
    }

    .hero h1.hero-logo {
        font-size: 60px;
    }

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

    .catalogo-btn {
        font-size: 10px;
        padding: 10px 18px;
    }

    .chi-siamo-content,
    .servizi-content,
    .contatti-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .servizi-static-images {
        grid-template-columns: 1fr 1fr;
    }

    .servizi-carousel-slide {
        min-width: 50%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .altri-servizi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servizi-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .servizio-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .servizio-title h2 {
        font-size: 26px;
    }

    .gallery-fullwidth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================================
   RESPONSIVE - TABLET SMALL (768px)
   ================================ */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav-phone {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        gap: 30px;
        padding: 60px 40px 80px;
        padding-bottom: 120px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 20px;
        letter-spacing: 2px;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .mobile-menu-logo {
        height: 55px;
        width: auto;
        margin-bottom: 20px;
    }

    .mobile-menu-desc {
        font-family: var(--font-body);
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        line-height: 1.6;
        max-width: 300px;
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        display: flex;
        gap: 30px;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-icon {
        color: var(--color-white);
        font-size: 26px;
        transition: all 0.3s ease;
    }

    .mobile-menu-icon:hover {
        color: var(--color-orange);
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero h1.hero-logo {
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }

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

    .hero-content {
        padding: 0 20px;
    }

    .cataloghi-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .catalogo-btn {
        width: 170px;
        font-size: 10px;
        padding: 10px 6px 10px 10px;
        justify-content: flex-start;
        gap: 6px;
    }

    .catalogo-btn i {
        font-size: 16px;
        width: 16px;
    }

    .catalogo-btn span {
        flex: 1;
        text-align: center;
    }

    .chi-siamo-text h3 {
        font-size: 30px;
    }

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

    .chi-siamo-text .btn-scopri {
        display: table;
        margin: 0 auto;
    }

    .servizi-text .btn-scopri {
        display: table;
        margin: 0 auto;
    }

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

    .servizi-header p {
        margin: 0 auto;
    }

    .servizi-header h3 {
        font-size: 28px;
    }

    /* Chi Siamo Page Mobile */
    .hero-small h1 {
        font-size: 50px;
    }

    .chi-siamo-storia h3 {
        font-size: 30px;
    }

    .chi-siamo-tech h2 {
        font-size: 30px;
    }

    .chi-siamo-storia p,
    .chi-siamo-tech p {
        font-size: 15px;
    }

    .chi-siamo-tech .tech-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chi-siamo-tech .tech-text {
        text-align: center;
    }

    .chi-siamo-tech .tech-label,
    .chi-siamo-tech h2,
    .chi-siamo-tech p {
        text-align: center;
    }

    .chi-siamo-tech .tech-images {
        grid-template-columns: 1fr 1fr;
    }

    .chi-siamo-tech .tech-images img {
        height: 200px;
    }

    .chi-siamo-tech .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .chi-siamo-tech .stat-number {
        font-size: 48px;
    }

    .chi-siamo-tech .stat-percent {
        font-size: 32px;
    }

    .chi-siamo-mission .servizio-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 0;
        text-align: center;
    }

    .chi-siamo-mission .servizio-title h2 {
        font-size: 24px;
        text-align: center;
    }

    .chi-siamo-mission .servizio-desc p {
        font-size: 15px;
        text-align: center;
    }

    .tech-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tech-gallery-item img {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .recensioni-slider {
        flex-direction: column;
    }

    .recensione-card {
        min-width: 100%;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .carousel-slide img {
        height: 300px;
    }

    .contatti-content {
        gap: 40px;
    }

    .mappa {
        min-height: 300px;
    }

    .chi-siamo-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        padding-top: 50px;
    }

    .stat-item {
        flex: 0 0 calc(33.33% - 30px);
    }

    .stat-number {
        font-size: 50px;
    }

    .stat-label {
        font-size: 12px;
    }

    .chi-siamo-gallery {
        gap: 10px;
    }

    .content-block {
        padding: 0;
    }

    .content-block h2 {
        font-size: 26px;
    }

    .content-block p {
        font-size: 16px;
    }
}

/* ================================
   RESPONSIVE - MOBILE (480px)
   ================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero h1.hero-logo {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }

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

    .btn-hero {
        padding: 14px 30px;
        font-size: 13px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .chi-siamo-text h2,
    .servizi-header h2,
    .contatti-info h2 {
        font-size: 16px;
    }

    .chi-siamo-text h3,
    .servizi-header h3,
    .contatti-info h3 {
        font-size: 22px;
    }

    .chi-siamo-text p,
    .servizi-header p {
        font-size: 15px;
    }

    .chi-siamo-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .chi-siamo-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding-top: 40px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 11px;
    }

    .cta-preventivo {
        padding: 60px 0;
    }

    .cta-preventivo h3 {
        font-size: 22px;
    }

    .btn-contattaci {
        padding: 14px 30px;
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .altri-servizi-grid {
        grid-template-columns: 1fr;
    }

    .servizi-cards {
        grid-template-columns: 1fr;
    }

    .servizio-card {
        padding: 30px 20px;
    }

    .servizio-card i {
        font-size: 35px;
    }

    .servizio-card h3 {
        font-size: 18px;
    }

    .servizio-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .servizio-title h2 {
        font-size: 20px;
    }

    .servizio-desc p {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn-scopri-servizio {
        font-size: 13px;
    }

    .gallery-fullwidth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .recensione-card {
        min-width: 100%;
        max-width: 100%;
    }

    .recensione-content {
        padding: 5px 15px 20px;
    }

    .recensione-text {
        font-size: 14px;
    }

    .recensione-quote {
        font-size: 50px;
    }

    .contatti-info h2 {
        font-size: 16px;
    }

    .contatti-info h3 {
        font-size: 22px;
    }

    .contatto-item {
        font-size: 14px;
    }

    .contatto-item i {
        font-size: 18px;
        width: 40px;
        height: 40px;
    }

    .mappa {
        min-height: 250px;
    }

    .mappa iframe {
        border-radius: 15px;
    }

    .servizi-static-images {
        grid-template-columns: 1fr;
    }

    .servizi-static-img img {
        height: 280px;
    }

    .servizi-carousel-slide {
        min-width: 100%;
    }

    .servizi-carousel-slide img {
        height: 250px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 15px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .content-block h3 {
        font-size: 18px;
    }

    .content-block p {
        font-size: 15px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .process-step h4 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 14px;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links ul li,
    .footer-links ul li a {
        font-size: 13px;
    }

    .altro-servizio-card {
        padding: 25px 20px;
    }

    .altro-servizio-card h3 {
        font-size: 16px;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

/* Slide animations for servizi list */
@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.slide-from-left,
.slide-from-right {
    opacity: 0;
}

.slide-from-left.animate {
    animation: slideFromLeft 0.8s ease forwards;
}

.slide-from-right.animate {
    animation: slideFromRight 0.8s ease forwards;
    animation-delay: var(--delay, 0.2s);
}

/* Fade in up animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
}

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

/* ================================
   PAGINA SERVIZI - NUOVO LAYOUT
   ================================ */

/* Hero Carousel Servizi */
.servizi-hero {
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.servizi-hero-slider {
    width: 100%;
    overflow: hidden;
}

.servizi-hero-track {
    display: flex;
    will-change: transform;
}

.servizi-hero-track img {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Sezioni Servizi */
.servizi-section {
    padding: 80px 0;
    text-align: center;
}

.servizi-section .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.servizi-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.servizi-section p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-dark);
    max-width: 800px;
    margin: 0 auto 40px;
}

.servizi-section-alt {
    background-color: var(--color-white);
}

/* Immagini affiancate - pagine interne */
.servizi-section .servizi-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.servizi-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* CTA Arancione */
.cta-orange {
    background-color: var(--color-orange) !important;
    position: relative;
}

.cta-orange .cta-bg,
.cta-orange .cta-overlay {
    display: none;
}

.cta-orange h3 {
    color: var(--color-dark) !important;
}

.cta-orange p {
    color: var(--color-dark);
    margin-bottom: 30px;
}

.cta-orange .btn-contattaci {
    background-color: var(--color-dark);
    color: var(--color-white);
    border: none;
}

.cta-orange .btn-contattaci:hover {
    background-color: var(--color-black);
}

/* CTA con sfondo immagine */
.cta-bg-image {
    position: relative;
    background-image: url('../images/servizi-slider-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.cta-bg-image .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cta-bg-image .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-bg-image h3 {
    color: var(--color-white) !important;
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-bg-image p {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-bg-image .btn-contattaci {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.cta-bg-image .btn-contattaci:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* Cards Servizi Section */
.servizi-cards-section {
    background-color: var(--color-cream);
    padding: 0 0 60px;
    margin-top: -40px;
}

.servizi-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.servizio-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.servizio-card-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.servizio-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.servizio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servizio-card-link:hover .servizio-card-img img {
    transform: scale(1.1);
}

.servizio-card-link h3 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 15px 15px;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.btn-scopri-card {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.servizio-card-link:hover .btn-scopri-card {
    background-color: var(--color-orange);
    color: var(--color-dark);
}

/* Cataloghi Section (pagina servizi) */
.cataloghi-section {
    padding: 80px 0;
    text-align: center;
}

.cataloghi-section .section-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cataloghi-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cataloghi-section .section-desc {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.cataloghi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.catalogo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.catalogo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalogo-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 170, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.catalogo-card:hover::before {
    opacity: 1;
}

.catalogo-card-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.catalogo-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.catalogo-card:hover .catalogo-card-cover {
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.2);
}

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

.catalogo-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalogo-card-cta {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.catalogo-card-cta i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.catalogo-card:hover .catalogo-card-cta {
    color: var(--color-white);
}

.catalogo-card:hover .catalogo-card-cta i {
    transform: translateX(4px);
}

/* Perché Sceglierci Section */
.perche-sceglierci-section {
    background-color: var(--color-cream);
    padding: 80px 0;
    text-align: center;
}

.perche-sceglierci-section .section-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.perche-sceglierci-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.perche-sceglierci-section .section-desc {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.step-icon i {
    font-size: 40px;
    color: var(--color-white);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

.process-line {
    width: 80px;
    height: 2px;
    background-color: var(--color-orange);
    margin-top: 50px;
    flex-shrink: 0;
}

/* Responsive Servizi */
@media (max-width: 768px) {
    .servizi-hero {
        margin-top: 70px;
    }

    .servizi-section {
        padding: 50px 0;
    }

    .servizi-section h2 {
        font-size: 28px;
    }

    .servizi-section p {
        font-size: 15px;
    }

    .servizi-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .servizi-images img {
        height: 250px;
    }

    .servizi-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .servizio-card-img {
        height: 180px;
    }

    .servizio-card-link h3 {
        font-size: 14px;
        margin: 15px 10px 12px;
    }

    .btn-scopri-card {
        padding: 10px 25px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .cataloghi-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .catalogo-card {
        padding: 20px 12px 20px;
    }

    .cataloghi-section h2 {
        font-size: 32px;
    }

    .perche-sceglierci-section {
        padding: 60px 0;
    }

    .perche-sceglierci-section h2 {
        font-size: 28px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-line {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

    .step-icon i {
        font-size: 32px;
    }

    .cta-bg-image {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .cta-bg-image h3 {
        font-size: 28px;
    }

    .cta-bg-image p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .servizi-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servizio-card-img {
        height: 200px;
    }

    .cataloghi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .catalogo-card {
        padding: 25px 12px 20px;
    }

    .catalogo-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .catalogo-card-icon i {
        font-size: 20px;
    }

    .catalogo-card h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .catalogo-card-cta {
        font-size: 10px;
    }

    .cataloghi-section h2 {
        font-size: 26px;
    }

    .cataloghi-section .section-desc {
        font-size: 15px;
    }
}

/* ================================
   PAGINA ABBIGLIAMENTO
   ================================ */

/* Header scuro per pagine con hero chiara */
.page-header-dark header,
.page-header-dark #header {
    background-color: rgba(25, 29, 29, 0.9);
}

/* Hero Abbigliamento con immagine sfondo */
.abbigliamento-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/abbigliamento-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.abbigliamento-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.abbigliamento-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.abbigliamento-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Hero Gadget */
.gadget-hero {
    background-image: url('../images/gadget-gallery-1.jpg');
}

/* Hero Wrapping */
.wrapping-hero {
    background-image: url('../images/wrapping-gallery-1.jpg');
}

/* Hero Equestre */
.equestre-hero {
    background-image: url('../images/equestre-gallery-1.jpg');
}

/* Content Page Servizi */
.servizi-page-content {
    padding: 60px 0;
    background-color: var(--color-cream);
}

.servizi-page-content .content-block {
    margin-bottom: 40px;
}

.servizi-page-content .content-block:last-child {
    margin-bottom: 0;
}

.servizi-page-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.servizi-page-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-dark);
}

.servizi-page-content strong {
    font-weight: 700;
}

/* Gallery Abbigliamento */
.abbigliamento-gallery-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

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

.abbigliamento-gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

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

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

/* Responsive Abbigliamento */
@media (max-width: 1024px) {
    .abbigliamento-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .abbigliamento-gallery-item img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .abbigliamento-hero {
        min-height: 40vh;
        padding-top: 70px;
        background-attachment: scroll;
    }

    .abbigliamento-hero h1 {
        font-size: 32px;
    }

    .servizi-page-content {
        padding: 40px 0;
    }

    .servizi-page-content h2 {
        font-size: 24px;
    }

    .abbigliamento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .abbigliamento-gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .abbigliamento-hero h1 {
        font-size: 26px;
    }

    .abbigliamento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abbigliamento-gallery-item img {
        height: 160px;
    }
}

/* ================================
   LAYOUT 2 COLONNE CON SIDEBAR MODERNA
   ================================ */

.page-two-columns {
    padding: 60px 0;
    background-color: var(--color-cream);
}

.two-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: stretch;
}

/* Main Content */
.main-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.main-content .content-block {
    margin-bottom: 35px;
}

.main-content .content-block:last-child {
    margin-bottom: 0;
}

.main-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.main-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 20px;
    background-color: var(--color-orange);
    border-radius: 2px;
}

.main-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-dark);
}

.main-content strong {
    font-weight: 700;
    color: var(--color-dark);
}

/* Content Gallery (dentro main content) */
.content-gallery {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.content-gallery .abbigliamento-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.content-gallery .abbigliamento-gallery-item img {
    height: 180px;
}

/* Sidebar Modern */
.sidebar-modern {
    display: flex;
    flex-direction: column;
}

/* Sidebar Contact - Sticky */
.sidebar-contact {
    position: sticky;
    top: 90px;
}

.sidebar-modern .sidebar-card {
    margin-bottom: 25px;
}

.sidebar-modern .sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}


.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-orange);
}

.sidebar-card-header i {
    font-size: 24px;
    color: var(--color-orange);
}

.sidebar-card-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Sidebar Services */
.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--color-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-service-item:hover {
    background-color: var(--color-orange);
    transform: translateX(5px);
}

.sidebar-service-item .service-icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-service-item:hover .service-icon {
    background-color: var(--color-dark);
}

.sidebar-service-item .service-icon i {
    font-size: 18px;
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.sidebar-service-item:hover .service-icon i {
    color: var(--color-white);
}

.sidebar-service-item .service-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-service-item .service-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.sidebar-service-item:hover .service-name {
    color: var(--color-white);
}

.sidebar-service-item .service-arrow {
    color: var(--color-dark);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.sidebar-service-item:hover .service-arrow {
    color: var(--color-white);
    opacity: 1;
}

/* Sidebar Contact */
.sidebar-contact-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 25px;
}

.sidebar-contact-intro strong {
    color: var(--color-orange);
}

.sidebar-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background-color: var(--color-cream);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-contact-item:hover {
    background-color: rgba(255, 170, 0, 0.15);
    transform: translateX(5px);
}

.sidebar-contact-item .contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-orange), #ff8800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-contact-item .contact-icon i {
    font-size: 18px;
    color: var(--color-white);
}

.sidebar-contact-item .contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-contact-item .contact-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
}

.sidebar-contact-item .contact-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
}

/* Sidebar CTA Button */
.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, var(--color-orange), #ff8800);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.4);
}

.sidebar-cta-btn:hover {
    background: linear-gradient(135deg, #ff8800, var(--color-orange));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.5);
}

.sidebar-cta-btn i {
    font-size: 16px;
}

/* Responsive 2 Colonne */
@media (max-width: 1024px) {
    .two-columns-wrapper {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }

    .main-content {
        padding: 30px;
    }

    .sidebar-card {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    .two-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar-modern {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
        height: auto;
        align-self: auto;
    }

    .sidebar-modern .sidebar-card {
        margin-bottom: 0;
    }

    .sidebar-contact {
        position: relative;
        top: 0;
    }

    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .page-two-columns {
        padding: 40px 0;
    }

    .main-content {
        padding: 25px;
        border-radius: 15px;
    }

    .main-content h2 {
        font-size: 20px;
    }

    .content-gallery .abbigliamento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .content-gallery .abbigliamento-gallery-item img {
        height: 140px;
    }

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

    .sidebar-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 20px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .sidebar-service-item {
        padding: 12px;
    }

    .sidebar-service-item .service-icon {
        width: 40px;
        height: 40px;
    }

    .sidebar-contact-item .contact-icon {
        width: 40px;
        height: 40px;
    }
}

/* ================================
   COOKIE BANNER
   ================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--color-orange);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--color-orange);
    color: var(--color-dark);
}

.cookie-btn-accept:hover {
    background-color: #e69900;
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
        padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-banner-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
