/*INDEX MAIN*/

/* RESET BASE */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #222;
    background-color: #ffffff;
    line-height: 1.65;
}
p {
    color: white;
    font-size: 1.05rem;
}
.hero-overlay p {
    color: #eaeaea;
}


/* HERO */
.hero {
    height: 90vh;
    background-image: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;

    /* FIX STACKING */
    z-index: 1;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-overlay button {
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    background: #caa24d;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-overlay button:hover {
    background: #b08c3f;
    transform: translateY(-2px);
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: #caa24d;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #b08c3f;
    transform: translateY(-2px);
}


/* NAVBAR */
#navbar {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);

    /* FIX STACKING */
    position: relative;
    z-index: 2000;
}

#navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
}

.links a {
    margin: 0 14px;
    text-decoration: none;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
}
.links a {
    white-space: nowrap;
}


.links a:hover {
    color: #caa24d;
}

.nav-cta {
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #caa24d;
    color: #111;
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Menu */
.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;

    /* FIX STACKING */
    z-index: 3000;
}

/* Voci */
.dropdown-menu a {
    display: block;
    padding: 12px 22px;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(202, 162, 77, 0.12);
    color: #caa24d;
}

/* Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 120%;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* SPAZIATURA SEZIONI */
.section-gap {
    height: 10px;
}

/* ===============================
   SERVICES GRID
   =============================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 8%;
    align-items: stretch;
}

.services-grid.reverse {
    direction: rtl;
}

.services-grid.reverse > * {
    direction: ltr;
}

/* ===============================
   CARD BASE
   =============================== */

.service-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* ===============================
   IMAGE CARD
   =============================== */

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-card:hover img {
    transform: scale(1.12);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.7)
    );
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card-overlay p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 420px;
}

/* ===============================
   TEXT CARD
   =============================== */

.text-card {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: transform 0.6s ease;
}

.text-card:hover img {
    transform: scale(1.05);
}

.text-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.text-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 420px;
}

/* ===============================
   BUTTONS
   =============================== */

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn.gold {
    background: #caa24d;
    color: #111;
}

.btn.gold:hover {
    background: #b08c3f;
    transform: translateY(-2px);
}

.btn.dark {
    background: #111;
    color: #fff;
}

.btn.dark:hover {
    background: #caa24d;
    color: #111;
}


/* CONTATTI */
.contact {
    padding: 100px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}

.contact h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .links {
        display: none;
    }
}
/* NAVBAR TRASPARENTE IN HERO */
#navbar {
    background: white;
    backdrop-filter: blur(8px);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

#navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

#nav-placeholder {
    height: 0;
}

.hero #navbar .logo,
.hero #navbar .links a {
    color: black;
}

#navbar.fixed .logo,
#navbar.fixed .links a {
    color: #111;
}

/* WHY US */
.why-us {
    padding: 120px 20px;
    background: #f5f5f5;
    text-align: center;
    color: black;
}

.why-us h2 {
    font-size: 2.4rem;
    margin-bottom: 60px;
    font-family:comic sans;
}

.why-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family:brush script;

}

.why-item p {
    font-size: 1rem;
    color: black;
    font-family:cambria;
}

.why-img {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.why-img img {
    width: 110%;
    height: 110%;
   
    
}

.why-img img {
    transition: transform 0.4s ease;
}

.why-item:hover .why-img img {
    transform: scale(1.08);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Request Form */
.request-form {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.request-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.request-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.request-form button {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.request-form button:hover {
    background-color: #caa24d;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #caa24d;
    padding: 60px 20px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-container > div {
    flex: 1 1 200px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #caa24d;
    
}

.footer-contacts h3,
.footer-services h3,
.footer-area h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contacts p,
.footer-services ul,
.footer-area p {
    margin: 5px 0;
}



.footer-services ul {
    list-style: none;
    padding: 0;
    color: white;
}

.footer-services li {
    margin-bottom: 5px;
    color: white;
}

.footer a {

    color: white;
}


.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.8rem;
    color: #aaa;
}

.footer-bottom a {

    color: white;
}
.footer-bottom a:hover {

background: #caa24d;
    color: white;
}

.footer-logo img {
    display: block;
    max-width: 250px;   
    margin-top: 10px;
}

.footer-logo-img img {
    display: block;
    max-width: 80px; 
    margin-top: 10px;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}


............................................................................................

/*about.html*/

/* ABOUT HERO */
.about-hero {
    background: #f7f7f7;
    padding: 90px 20px 70px;
    text-align: center;
}

.about-hero-inner h1 {
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 12px;
}

.about-hero-inner p {
    font-size: 1.1rem;
    color: #666;
}

.about-hero {
    position: relative;
    overflow: hidden;
}

/* BOX A SINISTRA */
.about-hero-box {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    padding: 30px;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: left;
    z-index: 2;
}

.about-hero-box img {
    width: 140px;
    margin-bottom: 12px;
}

.about-hero-box h2 {
    margin-bottom: 10px;
    color: #111;
}

.about-hero-box p {
    color: #555;
    line-height: 1.5;
}

/* manteniamo il testo centrale sopra overlay */
.about-hero-inner {
    position: relative;
    z-index: 2;
}


/* ABOUT CONTENT */
.about-content {
    padding: 80px 20px;
    background: #ffffff;
    text-align:center;
}

.about-container {
    max-width: 1100px;
    margin: auto;
}

.about-text {
    max-width: 800px;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* VALUES */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-box {
    padding: 30px;
    border-radius: 16px;
    background: #fafafa;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

.value-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    background: #111;
    padding: 80px 20px;
    text-align: center;
}

.about-cta-inner h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.about-cta-inner p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1rem;
}

.about-cta-inner a {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: #caa24d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-inner a:hover {
    background: #b08c3f;
    transform: translateY(-2px);
}

/* HERO ABOUT VISIVO */
.about-hero.visual {
    position: relative;
    height: 60vh;
    background: url("img/casa_montagne.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    position: relative;
    color: white;
    font-weight: 30px;
}

.about-hero-inner {
    position: relative;
    color: white;
    font-weight: 30px;
}

.about-hero-inner h1 {
    font-size: 8rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #caa24d;
    font-weight: 1px;
}
 

.about-hero-inner p {
    font-size: 1.7rem;
    color: #ddd;
    font-weight: bold;
}

/* SPLIT STORY */
.about-split {
    padding: 90px 20px;
    background: #fff;
}

.about-split-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-split-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-split-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-split-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* PROCESSO */
.about-process {
    background: #f7f7f7;
    padding: 90px 20px;
    text-align: center;
}

.process-steps {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-step span {
    font-size: 2rem;
    font-weight: 700;
    color: #caa24d;
}

.process-step h3 {
    margin: 15px 0 10px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-split-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

----------------------------------------------------------------------------------

/*realizzazioni.html*/

/* HEADER */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: #f6f6f6;
    color: black;
}


/* HERO REALIZZAZIONI */
.gallery-hero {
    position: relative;
    height: 300px;
    background: url("img/sfondo_about.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.25)
    );
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.gallery-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color:#caa24d;
    font-weight:bold;

}

.gallery-hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    color:white;
    font-weight:bold;
}


/* FILTRI */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.gallery-filters button {
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: 600;
}

.gallery-filters button.active {
    background: #caa24d;
    color: #222;
}

/* GALLERIA */
.gallery-section {
    padding: 0 40px 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ANIMAZIONI */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.animate.show {
    opacity: 1;
    transform: none;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Micro descrizione */
.gallery-item p {
    padding: 12px 14px;
    font-size: 0.9rem;
    color: #555;
    background: #fff;
    border-top: 1px solid #eee;
    text-align:center;
}


/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

#lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* CTA */
.cta-section {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: #caa24d;
    color: #222;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
}

.cta-button:hover {
    background: #b8913f;
}

.page-header {
    padding-top: 180px; /* spazio per la navbar fissa */
}


-------------------------------------------------------------------------

/* ===============================
   CONTATTI
   =============================== */

.contact-hero {
    height: 55vh;
    background: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952") center/cover no-repeat;
    position: relative;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.contact-hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.contact-hero-overlay p {
    font-size: 1.2rem;
    color: #eaeaea;
}

.contact-section {
    padding: 100px 8%;
    background: #f7f7f7;
}

.contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-box h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.contact-box p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.contact-hours {
    margin-top: 30px;
    padding: 25px;
    border-radius: 14px;
    background: #f0f0f0;
}

.contact-hours h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-hours strong {
    color: #111;
}

.contact-box.highlight {
    background: #111;
    color: #fff;
}

.contact-box.highlight p {
    color: #ddd;
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 36px;
    background: #caa24d;
    color: #111;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #b08c3f;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-overlay h1 {
        font-size: 2.3rem;
    }
}

/* HEADER CONTATTI (SENZA HERO) */
.contact-header {
    padding: 140px 20px 60px; /* spazio per navbar fissa */
    text-align: center;
    background: #f7f7f7;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #111;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ===============================
   MAPPA ZONA OPERATIVA
   =============================== */

.area-map {
    padding: 100px 8%;
    background: #ffffff;
    text-align: center;
}

.area-map h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #111;
}

.area-map p {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: #555;
}

#map {
    max-width: 1100px;
    height: 450px;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
    #map {
        height: 320px;
    }
}

------------------------------------------------------------------------------

/* ===============================
   PAGINA SERVIZIO – ARTIGIANO
   =============================== */

.service-artisan {
    background: #fff;
}

/* INTRO */
.service-intro {
    max-width: 900px;
    margin: 160px auto 110px;
    padding: 0 8%;
    text-align: center;
}

.service-intro h1 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* IMMAGINE */
.service-image-main {
    max-width: 1500px;
    margin: 0 auto 150px;
    padding: 0 6%;
}

.service-image-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
}

/* TESTO */
.service-text-block {
    max-width: 820px;
    margin: 0 auto 160px;
    padding: 0 8%;
}

.service-text-block h2 {
    font-size: 2.1rem;
    margin-bottom: 28px;
}

.service-text-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* GALLERIA */
.service-work-gallery {
    max-width: 1400px;
    margin: 0 auto 180px;
    padding: 0 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.service-work-gallery img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
}

/* FINALE */
.service-final {
    max-width: 900px;
    margin: 0 auto 160px;
    padding: 80px 60px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 28px;
}

.service-final h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.service-cta {
    display: inline-block;
    padding: 15px 42px;
    border-radius: 50px;
    background: #111;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #caa24d;
    color: #111;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 900px) {
    .service-image-main img {
        height: 360px;
    }

    .service-work-gallery {
        grid-template-columns: 1fr;
    }

    .service-final {
        padding: 60px 30px;
    }
}


/* =========================
   MOBILE MENU PREMIUM
   ========================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* MENU MOBILE */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: right 0.4s ease;
    z-index: 9999;
}

.mobile-menu.show {
    right: 0;
}

/* HEADER MENU */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-btn {
    font-size: 1.4rem;
    cursor: pointer;
}

/* LINK MENU */
.mobile-menu a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
    color: #caa24d;
}

/* SUBMENU */
.mobile-submenu {
    margin-top: 10px;
    padding-left: 10px;
}

.mobile-submenu p {
    font-weight: 600;
    margin-bottom: 10px;
}

.mobile-submenu a {
    font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .links {
        display: none;
    }
}

/* TOUCH UX */
button, a {
    -webkit-tap-highlight-color: transparent;
}

button:active,
a:active {
    transform: scale(0.98);
}

/* =========================
   DROPDOWN DESKTOP
   ========================= */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3000;
}

.dropdown-menu a {
    display: block;
    padding: 12px 22px;
    color: #333;
    font-size: 0.9rem;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: rgba(202, 162, 77, 0.12);
    color: #caa24d;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 120%;
}


/* =========================
   SERVICES MOBILE FIX
   ========================= */

@media (max-width: 900px) {

    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .text-card,
    .image-card {
        width: 100% !important;
    }

}

/* =========================
   MOBILE DROPDOWN
   ========================= */

/* =========================
   MOBILE DROPDOWN FIX DEFINITIVO
   ========================= */

.mobile-menu .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    flex-direction: column;
    padding-top: 10px;
}

.mobile-menu .dropdown-menu.open {
    display: flex;
}

.mobile-dropdown .dropdown-menu.open {
    display: flex;
}




.nav-inner {
    height: 72px;
    min-height: 72px;
}

@keyframes fadeLogo {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
}

/* INTRO */
.detail-intro {
    padding: 80px 20px;
    text-align: center;
}

.detail-container {
    max-width: 900px;
    margin: auto;
}

.detail-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* BENEFITS */
.detail-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    color: black;
}

.detail-box {
    background: #111;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.detail-box h3 {
    color: #caa24d;
    margin-bottom: 10px;
}

.detail-box p {
    color: rgba(255,255,255,0.85);
}
.detail-box:hover {
    transform: translateY(-6px);
}

/* GALLERY */
.detail-gallery {
    padding: 80px 20px;
    text-align: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.detail-grid img {
    width: 100%;
    border-radius: 10px;
}

/* CTA */
.detail-cta {
    background: #111;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.detail-btn {
    background: #caa24d;
    color: #111;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
}

/* ANIMAZIONI */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.detail-slider {
    padding: 80px 20px;
    text-align: center;
}

.slider-container {
    overflow: hidden;
    max-width: 900px;
    margin: auto;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slider-track img {
    width: 100%;
    flex-shrink: 0;
}

.before-after-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
}

.before-after-container img {
    width: 100%;
    height: auto;
    display: block;
}

.after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.after-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #caa24d;
    cursor: ew-resize;
}


.detail-box {
    background: linear-gradient(145deg, #111, #1c1c1c);
    color: white;
    padding: 35px;
    border-radius: 12px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* ICONA */
.box-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #caa24d;
}

/* TITOLI */
.detail-box h3 {
    color: #caa24d;
    margin-bottom: 10px;
}

/* TESTO */
.detail-box p {
    color: rgba(255,255,255,0.85);
}

/* HOVER EFFECT */
.detail-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(202,162,77,0.3);
}

/* GLOW ANIMATO */
.detail-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(202,162,77,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-box:hover::before {
    opacity: 1;
}

.detail-box {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-box h3 {
    text-align: center;
    font-weight: 600;
}

.detail-box p {
    text-align: center;
    max-width: 320px;
    line-height: 1.6;
}

.biz-hero {
    text-align: center;
    padding: 80px 20px;
    background: #f8f8f8;
}

.biz-wrap {
    max-width: 800px;
    margin: auto;
}

.biz-description {
    padding: 60px 20px;
    text-align: center;
}

.biz-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.biz-box {
    background: #111;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.biz-box:hover {
    transform: translateY(-6px);
}

.biz-cta {
    text-align: center;
    padding: 80px 20px;
    background: #111;
    color: white;
}

.biz-btn {
    background: #caa24d;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
}


.wall-intro {
    text-align: center;
    padding: 80px 20px;
}

.wall-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.wall-text {
    flex: 1;
    min-width: 250px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
}

.wall-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    padding: 60px 20px;
}

.wall-gallery img {
    width: 100%;
    border-radius: 10px;
}

.decor-intro {
    text-align: center;
    padding: 80px 20px;
}

.decor-techniques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    padding: 40px 20px;
}

.decor-item {
    background: linear-gradient(145deg,#111,#1c1c1c);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.decor-item:hover {
    transform: scale(1.05);
}

.decor-cta {
    text-align: center;
    padding: 80px 20px;
}

.floor-intro {
    text-align: center;
    padding: 80px 20px;
}

.floor-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 40px 20px;
}

.floor-box {
    background: #1c1c1c;
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.floor-box:hover {
    transform: translateY(-6px);
}

.floor-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    padding: 60px 20px;
}

.floor-gallery img {
    width: 100%;
    border-radius: 10px;
}

.paintpro-intro {
    text-align: center;
    padding: 80px 20px;
}

.paintpro-container {
    max-width: 900px;
    margin: auto;
}

.paintpro-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
}

.paintpro-card {
    flex: 1;
    min-width: 250px;
    background: #111;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.paintpro-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
    padding: 40px 20px;
}

.paintpro-benefit {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: #111;
}

.paintpro-benefit h4 {
    color: #111;
    margin-bottom: 10px;
}

.paintpro-benefit p {
    color: #444;
}

.paintpro-steps {
    padding: 80px 20px;
    text-align: center;
}

.paintpro-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

.paintpro-step {
    background: #111;
    color: white;
    padding: 25px;
    border-radius: 8px;
}

.paintpro-cta {
    text-align: center;
    background: #111;
    color: white;
    padding: 80px 20px;
}

.paintpro-btn {
    background: #caa24d;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.paintpro-btn:hover {
    background: #b8913f;
    transform: translateY(-2px);
}

.paintpro-intro,
.paintpro-intro h2,
.paintpro-intro p,
.biz-hero,
.biz-hero h2,
.biz-hero p {
    color: #111 !important;
}

.animate {
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate:not(.show) {
    opacity: 0;
}

.paintpro-cta {
    opacity: 1 !important;
}

/* SECTION */
.portfolio-slider-section {
    padding: 80px 20px;
    background: #f8f8f8;
    text-align: center;
    overflow: hidden;
}

.portfolio-slider-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* SLIDER */
.portfolio-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.portfolio-slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 25s linear infinite;
}

.portfolio-slide-track img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

/* ANIMAZIONE */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* BADGE ESPERIENZA */
.experience-badge {
    background: #111;
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.experience-inner {
    max-width: 900px;
    margin: auto;
}

.exp-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    color: #caa24d;
    margin-bottom: 15px;
}

.experience-badge h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.experience-badge p {
    color: #ccc;
    max-width: 700px;
    margin: auto;
}
/* ===============================
   RECENSIONI
   =============================== */

.reviews-section {
    padding: 140px 20px 80px;
    background: #f7f7f7;
    text-align: center;
}

.reviews-section h1 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.reviews-section > p {
    color: #666;
    margin-bottom: 50px;
}

.reviews-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: left;
}

.stars {
    color: #f5b301;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-card strong {
    color: #111;
}

/* mobile */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   RECENSIONI SLIDER
   =============================== */

.reviews-section {
    padding: 140px 20px 80px;
    background: #f7f7f7;
    text-align: center;
}

.reviews-section h1 {
    font-size: 2.6rem;
}

.reviews-section > p {
    color: #666;
    margin-bottom: 50px;
}

.reviews-slider {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: none;
    text-align: left;
}

.review-card.active {
    display: block;
}

.stars {
    color: #f5b301;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-card p {
    color: #555;
    margin-bottom: 15px;
}

.review-card strong {
    display: block;
    color: #111;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* TELEFONO FLOAT */
.phone-float {
    position: fixed;
    bottom: 95px; /* sopra WhatsApp */
    right: 25px;
    width: 58px;
    height: 58px;
    background: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: .3s;
}

.phone-float:hover {
    transform: scale(1.1);
}

/* SEO TEXT */
.seo-text {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.seo-text h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #111;
    font-weight: 600;
}

.seo-text p {
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}



