/* ===================================
   WELLCOME VILLARICCA - STYLE.CSS
   =================================== */

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

:root {
    color-scheme: only light;
    --black: #0a0a0a;
    --dark: #141414;
    --darker: #1a1a1a;
    --gray-dark: #222;
    --gray: #333;
    --gray-light: #888;
    --white: #fff;
    --yellow: #FFC107;
    --yellow-dark: #FFA000;
    --pink: #E91E63;
    --pink-dark: #C2185B;
    --blue: #2196F3;
    --blue-dark: #1976D2;
    --green: #25D366;
    --page-max-width: 1400px;
    --page-gutter: clamp(12px, 1.35vw, 20px);
    --hero-text-max: 780px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    overflow-x: hidden;
}

main,
section,
header,
footer {
    width: 100%;
}

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

ul {
    list-style: none;
}

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

.container {
    width: min(var(--page-max-width), calc(100% - (var(--page-gutter) * 2)));
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0;
}

/* TOP BAR */
.top-bar {
    background: var(--darker);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gray);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info span,
.top-bar-info i {
    color: #ccc;
}

.top-bar-info i {
    color: var(--yellow);
    margin-right: 5px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social span {
    color: #ccc;
    margin-right: 5px;
}

.top-bar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.top-bar-social a:nth-child(2) { background: #1877F2; }
.top-bar-social a:nth-child(3) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.top-bar-social a:nth-child(4) { background: var(--green); }

.top-bar-social a:hover {
    transform: translateY(-2px);
}

/* HEADER */
.header {
    background: var(--black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo,
.header-phone {
    flex: 0 0 auto;
}

.nav-menu {
    flex: 1 1 auto;
    min-width: 0;
}

.logo a {
    display: block;
}

.logo-text {
    font-family: 'Poppins', cursive;
    font-size: 36px;
    font-weight: 800;
    color: var(--pink);
    font-style: italic;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.logo-tagline {
    font-size: 9px;
    color: var(--white);
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 500;
}

.nav-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2vw, 35px);
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--yellow);
}

.btn-phone {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #121212 0%, #181818 50%, #101010 100%);
    overflow: hidden;
    padding: 60px 0;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.96;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.84) 18%, rgba(10,10,10,0.52) 52%, rgba(10,10,10,0.14) 100%);
    z-index: 0;
}

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

.hero-content {
    width: min(100%, var(--hero-text-max));
    max-width: var(--hero-text-max);
    padding-right: clamp(0px, 5vw, 96px);
}

.hero-tags {
    display: flex;
    gap: 12px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-yellow {
    color: var(--yellow);
}

.hero-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.btn span small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.btn i {
    font-size: 18px;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

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

.btn-pink:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
}

.btn-dark {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-dark:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.couriers {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.courier-logo {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 92px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.courier-logo img {
    display: block;
    width: auto;
    height: 28px;
    max-width: 130px;
    object-fit: contain;
}

.courier-logo-wide img {
    max-width: 150px;
}

.courier-logo-extra-wide img {
    max-width: 170px;
}

.couriers-note {
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
}

/* SERVICES */
.services {
    padding: 80px 0;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--darker);
    border-radius: 16px;
    padding: 35px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.service-yellow::before { background: var(--yellow); }
.service-pink::before { background: var(--pink); }
.service-blue::before { background: var(--blue); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-yellow:hover { border-color: var(--yellow); }
.service-pink:hover { border-color: var(--pink); }
.service-blue:hover { border-color: var(--blue); }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-yellow .service-icon { background: rgba(255,193,7,0.15); color: var(--yellow); }
.service-pink .service-icon { background: rgba(233,30,99,0.15); color: var(--pink); }
.service-blue .service-icon { background: rgba(33,150,243,0.15); color: var(--blue); }

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-yellow h3 { color: var(--yellow); }
.service-pink h3 { color: var(--pink); }
.service-blue h3 { color: var(--blue); }

.service-card p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 14px;
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    padding: 8px 0;
    color: #ddd;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    font-size: 12px;
}

.service-yellow .service-list i { color: var(--yellow); }
.service-pink .service-list i { color: var(--pink); }
.service-blue .service-list i { color: var(--blue); }

.btn-card {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.btn-card.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-card.btn-pink { background: var(--pink); color: white; }
.btn-card.btn-blue { background: var(--blue); color: white; }

/* FEATURES */
.features {
    padding: 50px 0;
    background: var(--darker);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 22px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.feature-content p {
    font-size: 12px;
    color: #aaa;
}

/* BOOKING */
.booking {
    padding: 80px 0;
    background: var(--black);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 25px;
}

.booking-form-wrapper {
    background: var(--darker);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--gray);
}

.booking-form-wrapper h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.booking-subtitle {
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px 16px;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    resize: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #777;
}

.btn-submit {
    background: var(--pink);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.btn-submit:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.booking-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,193,7,0.15);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.step-content p {
    font-size: 13px;
    color: #aaa;
}

.booking-cta {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=600&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0,0,0,0.7);
}

.booking-cta h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.booking-cta p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 14px;
}

.booking-cta .btn {
    align-self: center;
    padding: 12px 28px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: var(--darker);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--gray-dark);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.stars {
    color: var(--yellow);
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #ddd;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 14px;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--yellow);
    width: 25px;
    border-radius: 5px;
}

/* FOOTER */
.footer {
    background: var(--black);
    padding: 60px 0 0;
    border-top: 1px solid var(--gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col .logo-text {
    font-size: 32px;
}

.footer-description {
    color: #aaa;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-list li {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-list i {
    color: var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-links li {
    display: block;
    padding: 4px 0;
}

.footer-links a {
    color: #aaa;
    transition: all 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-map iframe {
    filter: invert(0.9) hue-rotate(180deg);
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #777;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #777;
    font-size: 12px;
}

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

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: var(--green);
    color: white;
    padding: 10px 15px 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* INNER PAGE STYLES */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    isolation: isolate;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/servizi-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.36;
    z-index: 0;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--yellow);
    font-size: 16px;
    letter-spacing: 1px;
}

.breadcrumb {
    background: var(--darker);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-list {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #aaa;
}

.breadcrumb-list a {
    color: var(--yellow);
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.content-section h2 .text-yellow,
.content-section h2 .text-pink,
.content-section h2 .text-blue {
    display: block;
}

.text-pink { color: var(--pink); }
.text-blue { color: var(--blue); }

.content-section p {
    color: #ccc;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
}

.service-detail {
    background: var(--darker);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 30px;
    border-left: 5px solid;
}

.service-detail.service-yellow { border-left-color: var(--yellow); }
.service-detail.service-pink { border-left-color: var(--pink); }
.service-detail.service-blue { border-left-color: var(--blue); }

.service-detail h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-detail.service-yellow h3 { color: var(--yellow); }
.service-detail.service-pink h3 { color: var(--pink); }
.service-detail.service-blue h3 { color: var(--blue); }

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.service-detail-item {
    background: var(--gray-dark);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.service-detail-item i {
    font-size: 32px;
    margin-bottom: 10px;
}

.service-yellow .service-detail-item i { color: var(--yellow); }
.service-pink .service-detail-item i { color: var(--pink); }
.service-blue .service-detail-item i { color: var(--blue); }

.service-detail-item h4 {
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
}

.service-detail-item p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--pink), #1a1a2e);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.about-image h2 {
    font-size: 64px;
    color: var(--yellow);
    margin: 0;
}

.about-image p {
    font-size: 18px;
    margin: 0;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--darker);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--yellow);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 13px;
    color: #aaa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--darker);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--gray);
}

.contact-info-box h3 {
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
    color: #ddd;
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.contact-info-list i {
    color: var(--yellow);
    font-size: 20px;
    width: 25px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-list strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 14px;
}

.contact-info-list span {
    font-size: 13px;
    color: #aaa;
}

.contact-form-box {
    background: var(--darker);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--gray);
}

.contact-form-box h3 {
    color: var(--pink);
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.full-map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 30px;
}

.full-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */
@media (min-width: 1400px) {
    :root {
        --page-max-width: 1480px;
        --page-gutter: 18px;
        --hero-text-max: 820px;
    }

    .hero::before {
        width: 47%;
        background-position: right center;
    }

    .hero-content {
        padding-right: clamp(0px, 3.5vw, 64px);
    }
}

@media (min-width: 1700px) {
    :root {
        --page-max-width: 1540px;
        --page-gutter: 18px;
        --hero-text-max: 860px;
    }

    .hero::before {
        width: 45%;
    }
}

@media (max-width: 1180px) {
    :root {
        --page-gutter: 16px;
        --hero-text-max: 720px;
    }

    .header-container {
        gap: 14px;
    }

    .logo-text {
        font-size: 32px;
    }

    .logo-tagline {
        font-size: 8px;
        letter-spacing: 0.8px;
    }

    .nav-menu ul {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .btn-phone {
        padding: 11px 18px;
        font-size: 14px;
    }

    .hero-content {
        max-width: 700px;
        padding-right: clamp(0px, 5vw, 100px);
    }
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .header-container {
        position: relative;
    }
    .logo {
        max-width: calc(100% - 56px);
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        padding: 20px;
        border-bottom: 1px solid var(--gray);
    }
    .nav-menu.active ul {
        flex-direction: column;
        gap: 15px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .header-phone {
        display: none;
    }
    .hero::before {
        width: 100%;
        opacity: 0.38;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --page-gutter: 16px;
    }

    .top-bar-container {
        justify-content: center;
    }
    .top-bar-info {
        font-size: 11px;
        gap: 10px;
        justify-content: center;
    }
    .top-bar-info span:first-child {
        display: none;
    }
    .top-bar-social span {
        display: none;
    }
    .hero {
        padding: 40px 0 48px;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(32px, 10vw, 52px);
        line-height: 1.02;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: flex-start;
    }
    .couriers {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .courier-logo {
        width: 100%;
        min-width: 0;
        min-height: 64px;
        padding: 10px 12px;
    }
    .courier-logo-wide,
    .courier-logo-extra-wide {
        grid-column: span 2;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
    .whatsapp-float .whatsapp-text {
        display: none;
    }
    .whatsapp-float {
        padding: 12px;
        bottom: 20px;
        right: 20px;
    }
    .service-detail {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }
    .logo {
        max-width: calc(100% - 52px);
    }
    .logo-text {
        font-size: 26px;
    }
    .logo-tagline {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    .hero-title {
        font-size: clamp(28px, 10.5vw, 40px);
    }
    .hero-buttons .btn {
        padding: 14px 16px;
    }
    .courier-logo {
        min-width: 78px;
        min-height: 50px;
        padding: 8px 12px;
    }
    .courier-logo img {
        height: 22px;
        max-width: 110px;
    }
    .courier-logo-extra-wide img {
        max-width: 126px;
    }
    .couriers-note {
        font-size: 10px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .services,
    .testimonials,
    .booking,
    .content-section {
        padding: 50px 0;
    }
}



.page-header::before {
    background-position: center;
    opacity: 0.22;
}

.page-servizi .page-header::before { background-image: url('../images/servizi-bg.webp'); }
.page-chi-siamo .page-header::before { background-image: url('../images/chi-siamo-bg.webp'); }
.page-dove-siamo .page-header::before { background-image: url('../images/dove-siamo-bg.webp'); }
.page-contatti .page-header::before { background-image: url('../images/contatti-bg.webp'); }
.page-curiosita .page-header::before { background-image: url('../images/curiosita-bg.webp'); }
.page-legal .page-header::before { background-image: url('../images/hero-bg.png'); }

.content-section-compact {
    padding-top: 50px;
    padding-bottom: 50px;
}

.eyebrow {
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading-left {
    max-width: 880px;
    margin-bottom: 30px;
}

.section-heading-left p:last-child {
    color: #c8c8c8;
}

.alt-surface {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.rounded-block {
    border-radius: 18px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.06);
}

.content-block {
    margin-top: 45px;
}

.cta-panel {
    background: linear-gradient(135deg, rgba(233,30,99,0.14), rgba(33,150,243,0.10), rgba(255,193,7,0.08));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 34px;
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 10px 0 30px;
}

.info-strip-item {
    background: var(--darker);
    border: 1px solid var(--gray);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-strip-item i {
    color: var(--yellow);
    font-size: 22px;
    margin-top: 2px;
}

.info-strip-item strong,
.mini-card h4,
.tip-card h4,
.faq-card h4 {
    color: white;
    display: block;
    margin-bottom: 8px;
}

.info-strip-item span,
.mini-card p,
.tip-card p,
.faq-card p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.75;
}

.mini-card-grid,
.tips-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.mini-card,
.tip-card,
.faq-card {
    background: var(--darker);
    border: 1px solid var(--gray);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.mini-card:hover,
.tip-card:hover,
.faq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,193,7,0.35);
}

.mini-card i {
    color: var(--yellow);
    font-size: 28px;
    margin-bottom: 14px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    margin-top: 24px;
}

.checklist-grid li {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checklist-grid i {
    color: var(--yellow);
    margin-top: 4px;
}

.checklist-grid span {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .info-strip,
    .mini-card-grid,
    .tips-grid,
    .faq-grid,
    .checklist-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .info-strip,
    .mini-card-grid,
    .tips-grid,
    .faq-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .rounded-block,
    .service-detail,
    .contact-info-box,
    .contact-form-box {
        padding: 24px;
    }

    .nav-menu ul {
        gap: 20px;
    }
}


/* Responsive background consistency for Hostinger/mobile/tablet */
.hero::before,
.page-header::before {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.page-header {
    overflow: hidden;
}

.page-servizi .page-header::before { background-image: url('../images/servizi-bg.webp'); }
.page-chi-siamo .page-header::before { background-image: url('../images/chi-siamo-bg.webp'); }
.page-dove-siamo .page-header::before { background-image: url('../images/dove-siamo-bg.webp'); }
.page-contatti .page-header::before { background-image: url('../images/contatti-bg.webp'); }
.page-curiosita .page-header::before { background-image: url('../images/curiosita-bg.webp'); }
.page-legal .page-header::before { background-image: url('../images/hero-bg.png'); }

@media (max-width: 1024px) {
    .page-header::before {
        background-position: center center !important;
        opacity: 0.34;
    }
}

@media (max-width: 992px) {
    .hero::before {
        width: 100%;
        opacity: 0.38;
        background-position: center center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 70px 0 55px;
    }

    .page-header::before {
        background-position: center center !important;
        opacity: 0.40;
        transform: scale(1.02);
    }

    .hero::before {
        opacity: 0.46;
        transform: scale(1.02);
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(10,10,10,0.56) 0%, rgba(10,10,10,0.38) 42%, rgba(10,10,10,0.16) 100%);
    }
}

@media (max-width: 480px) {
    .page-header::before,
    .hero::before {
        background-position: center center !important;
        transform: scale(1.04);
    }
}

/* Mobile image visibility safeguard */
img,
picture,
svg {
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero,
    .page-header {
        background-color: #111;
    }

    .hero-content,
    .page-header > * {
        position: relative;
        z-index: 1;
    }
}

/* ===== SEO BUILD ADDITIONS ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    background: var(--yellow);
    color: var(--black);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 99999;
}
.skip-link:focus { left: 16px; top: 16px; }

.section-subtitle {
    text-align: center;
    color: #bbb;
    max-width: 720px;
    margin: -10px auto 30px;
    font-size: 16px;
}

.section-heading-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
}
.section-heading-center .eyebrow {
    color: var(--yellow);
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}
.section-heading-center h2 { margin-bottom: 14px; }
.section-heading-center p { color: #bbb; }

.intro-block {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid var(--yellow);
    padding: 22px 26px;
    border-radius: 10px;
    margin-bottom: 50px;
    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
}
.intro-block strong { color: var(--yellow); }

.sub-heading {
    margin-top: 30px !important;
    margin-bottom: 14px !important;
    font-size: 20px !important;
    color: var(--white) !important;
    border-left: 3px solid var(--yellow);
    padding-left: 12px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}
.check-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: #ddd;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--yellow);
    font-weight: 800;
    font-size: 16px;
}

.partner-line {
    background: rgba(255,193,7,0.08);
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 25px !important;
    font-size: 15px;
    color: #ddd;
}
.partner-line strong { color: var(--yellow); }

/* Service detail h3 within service-detail-item */
.service-detail-item h3,
.mini-card h3,
.tip-card h3,
.faq-card h3,
.value-card h3,
.testimonial-card h3 {
    font-size: 18px;
    margin: 12px 0 6px;
    color: var(--white);
    font-weight: 700;
}

/* CTA Strip Homepage */
.cta-strip {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    padding: 60px 0;
    margin-top: 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-strip h2 { color: white; margin: 0 0 6px; font-size: 28px; }
.cta-strip p { color: rgba(255,255,255,0.92); margin: 0; }
.btn-whatsapp {
    background: var(--green) !important;
    color: white !important;
}

/* CTA panel-strong (Curiosità finale) */
.cta-panel-strong {
    background: linear-gradient(135deg, rgba(255,193,7,0.12), rgba(233,30,99,0.08));
    border: 1px solid rgba(255,193,7,0.25);
    border-radius: 18px;
    padding: 40px;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
}
.cta-panel-strong p { color: #ddd; }
.cta-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (max-width: 768px) {
    .cta-panel-strong { grid-template-columns: 1fr; padding: 26px; }
}

/* Legal pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: #ddd;
    line-height: 1.8;
}
.legal-content h2 {
    color: var(--yellow);
    margin-top: 40px;
    margin-bottom: 14px;
    font-size: 22px;
}
.legal-content h3 {
    color: var(--white);
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 18px;
}
.legal-content p, .legal-content li { color: #cfcfcf; }
.legal-content a { color: var(--yellow); }
.legal-content ul { padding-left: 22px; margin: 10px 0 18px; }
.legal-content li { margin-bottom: 6px; }
.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #222;
    padding-top: 16px;
}

/* Form intro */
.form-intro {
    color: #aaa;
    margin: 0 0 18px;
    font-size: 14px;
}

/* Page-header improvements */
.page-header h1 {
    line-height: 1.15;
}

/* Logo as text link (no h1 in header on inner pages) */
.logo .logo-text,
.logo .logo-tagline {
    display: block;
}

/* Ensure breadcrumb visible spacing */
.breadcrumb { padding: 10px 0; }

/* ===== Mobile refinement v4 ===== */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-info {
        width: 100%;
        text-align: center;
    }

    .header {
        padding: 10px 0;
        backdrop-filter: blur(12px);
    }

    .header-container {
        gap: 12px;
        min-height: 56px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(255,255,255,0.05);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .nav-menu.active {
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.38);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        background: rgba(26,26,26,0.96);
        backdrop-filter: blur(14px);
    }

    .nav-menu.active ul {
        gap: 10px;
    }

    .nav-menu.active a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 14px 16px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 12px;
        font-size: 14px;
        letter-spacing: 0.6px;
    }

    .hero {
        padding: 32px 0 40px;
    }

    .hero-tags {
        gap: 8px;
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .hero-title {
        margin-bottom: 18px;
    }

    .hero-description {
        max-width: 100%;
        line-height: 1.65;
    }

    .hero-buttons .btn {
        min-height: 60px;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .btn span small {
        font-size: 11px;
    }

    .couriers {
        margin-top: 6px;
    }

    .courier-logo {
        border-radius: 14px;
    }

    .services,
    .testimonials,
    .booking,
    .content-section {
        padding: 44px 0;
    }

    .section-title {
        font-size: clamp(24px, 7.4vw, 32px);
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .section-subtitle {
        margin: 0 auto 24px;
        font-size: 14px;
        line-height: 1.65;
    }

    .services-grid,
    .testimonials-slider,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card,
    .testimonial-card,
    .booking-form-wrapper,
    .booking-cta,
    .service-detail,
    .contact-info-box,
    .contact-form-box,
    .rounded-block,
    .cta-panel,
    .mini-card,
    .tip-card,
    .faq-card {
        padding: 24px;
        border-radius: 18px;
    }

    .service-card h3 {
        font-size: 20px;
        letter-spacing: 0.4px;
    }

    .service-list {
        margin-bottom: 24px;
    }

    .booking-grid,
    .footer-grid {
        gap: 18px;
    }

    .booking-steps {
        gap: 18px;
    }

    .step-item {
        gap: 12px;
    }

    .page-header {
        padding: 56px 0 44px;
    }

    .page-header h1 {
        font-size: clamp(28px, 8.5vw, 36px);
        letter-spacing: 1px;
    }

    .page-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-list {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-detail-item,
    .info-strip-item,
    .checklist-grid li {
        padding: 18px;
        border-radius: 16px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn,
    .btn-card,
    .btn-submit {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer {
        padding-top: 48px;
    }

    .footer-grid {
        margin-bottom: 28px;
    }

    .footer-col h4 {
        margin-bottom: 14px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --page-gutter: 14px;
    }

    .header-container {
        min-height: 52px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 0.4px;
    }

    .nav-menu.active {
        padding: 10px;
    }

    .nav-menu.active a {
        padding: 13px 14px;
        font-size: 13px;
    }

    .hero {
        padding: 28px 0 36px;
    }

    .hero::before {
        background-position: 62% center !important;
        opacity: 0.42;
        transform: scale(1.05);
    }

    .hero-title {
        font-size: clamp(26px, 10vw, 36px);
    }

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

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        min-height: 56px;
        padding: 13px 14px;
        gap: 10px;
    }

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

    .couriers {
        gap: 10px;
    }

    .courier-logo {
        min-height: 56px;
        padding: 8px 10px;
    }

    .courier-logo img {
        height: 20px;
        max-width: 104px;
    }

    .courier-logo-wide img {
        max-width: 124px;
    }

    .courier-logo-extra-wide img {
        max-width: 132px;
    }

    .services,
    .testimonials,
    .booking,
    .content-section {
        padding: 40px 0;
    }

    .service-card,
    .testimonial-card,
    .booking-form-wrapper,
    .booking-cta,
    .service-detail,
    .contact-info-box,
    .contact-form-box,
    .rounded-block,
    .cta-panel,
    .mini-card,
    .tip-card,
    .faq-card {
        padding: 20px;
    }

    .feature-item {
        align-items: flex-start;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .feature-content h4 {
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .feature-content p {
        font-size: 12px;
    }

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

    .page-header::before {
        background-position: center top !important;
    }

    .breadcrumb-list {
        font-size: 12px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 13px 14px;
        font-size: 15px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}

