/* ==========================================
   OM MOTORS - Custom CSS
   Modern Design with Brand Colors
   ========================================== */

/* ==========================================
   CSS Variables - Brand Colors
   ========================================== */
:root {
    /* Brand Colors */
    --gold: #D4AF37;
    --gold-light: #E8C766;
    --gold-dark: #B8941F;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --off-white: #f5f5f5;

    /* Gradient */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8C766 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Oswald', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-small: 0 2px 10px rgba(212, 175, 55, 0.1);
    --shadow-medium: 0 5px 20px rgba(212, 175, 55, 0.2);
    --shadow-large: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--gold);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo img {
    height: 40px;
}

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

.nav-link {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-fast);
    border-radius: 2px;
}

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

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

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

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-eyebrow {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 18px;
    text-transform: uppercase;
    opacity: 0.85;
}

.title-descriptor {
    display: block;
    font-size: 1.3rem;
    color: var(--off-white);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.9;
}

.title-main {
    display: block;
    font-family: var(--font-secondary);
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--off-white);
    margin: 30px 0 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    opacity: 0.75;
    transition: opacity var(--transition-fast);
    animation: arrowBounce 1.8s ease-in-out infinite;
    text-decoration: none;
}

.scroll-arrow:hover {
    opacity: 1;
}

.scroll-arrow i {
    font-size: 1.6rem;
    display: block;
}

.scroll-arrow i:nth-child(2) {
    animation: arrowFade 1.8s ease-in-out infinite 0.2s;
    opacity: 0;
}

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

@keyframes arrowFade {
    0%, 100% { opacity: 0; }
    50%       { opacity: 0.5; }
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--dark-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.05"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--medium-gray);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-large);
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-fast);
    padding: 0;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.40);
    transform-origin: center center;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: var(--off-white);
    line-height: 1.8;
    font-size: 15px;
}


/* ==========================================
   About Section
   ========================================== */
.about {
    background: var(--black);
}

.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease;
}

.about-text-large {
    color: var(--off-white);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 18px;
    text-align: center;
}

/* Google Reviews Section */
.reviews-section {
    margin: 50px 0;
    padding: 40px 40px 35px;
    background: var(--medium-gray);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.reviews-google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--off-white);
    opacity: 0.6;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reviews-google-logo i {
    font-size: 18px;
}

.reviews-text {
    font-size: 16px;
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 25px;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* About Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: var(--medium-gray);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

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

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    font-size: 30px;
    color: var(--black);
}

.feature-box h4 {
    font-family: var(--font-secondary);
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-box p {
    color: var(--off-white);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background: var(--dark-gray);
    text-align: center;
}

.gallery-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--medium-gray);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-info p {
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.8;
}

.instagram-link {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 5px;
}

.instagram-link:hover {
    color: var(--gold-light);
    transform: scale(1.05);
}

.instagram-link i {
    font-size: 24px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--black);
}

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

.contact-info h3,
.contact-form-wrapper h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--medium-gray);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    transition: var(--transition-fast);
}

.info-item:hover {
    transform: translateX(10px);
    background: var(--light-gray);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--black);
}

.info-content h4 {
    color: var(--gold-light);
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content p {
    color: var(--off-white);
}

.info-content a {
    color: var(--off-white);
}

.info-content a:hover {
    color: var(--gold);
}

.info-content strong {
    color: var(--gold);
    font-weight: 600;
}

.info-content .closed {
    color: #999;
    font-style: italic;
}

.location-item {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--light-gray) 100%);
    border-left: 4px solid var(--gold);
}

.location-item:hover {
    border-left-width: 6px;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    color: var(--gold-light);
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.social-icon i {
    font-size: 20px;
    color: var(--gold);
    transition: var(--transition-fast);
}

.social-icon:hover i {
    color: var(--black);
}

/* Scrivici Section */
.contact-write-wrapper h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.write-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--medium-gray);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
    transition: var(--transition-fast);
    align-items: center;
}

.write-item:hover {
    transform: translateX(10px);
    background: var(--light-gray);
}

.whatsapp-item {
    border-left-color: #25D366;
}

.write-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.write-icon i {
    font-size: 22px;
    color: var(--black);
}

.whatsapp-icon-bg {
    background: #25D366;
}

.whatsapp-icon-bg i {
    color: #ffffff;
}

.write-content h4 {
    color: var(--gold-light);
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.write-content p {
    color: var(--off-white);
    font-size: 17px;
}

.write-content a {
    color: var(--off-white);
    transition: var(--transition-fast);
}

.write-content a:hover {
    color: var(--gold);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark-gray);
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    margin: 0 auto 15px;
}

.footer-logo p {
    color: var(--off-white);
    font-size: 14px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    color: var(--off-white);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-dev-link {
    color: var(--gold-light);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-dev-link:hover {
    color: var(--gold);
    opacity: 1;
}

/* Footer Legal Links */
.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-links a {
    color: var(--off-white);
    font-size: 13px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Map Link */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.map-link:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.scroll-top i {
    font-size: 20px;
    color: var(--black);
}

/* ==========================================
   Legal Pages
   ========================================== */
.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--black);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.legal-subtitle {
    color: var(--off-white);
    opacity: 0.6;
    font-size: 15px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.legal-content ul li {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 5px;
}

.legal-content a {
    color: var(--gold);
    transition: var(--transition-fast);
}

.legal-content a:hover {
    color: var(--gold-light);
}

.legal-content strong {
    color: var(--gold);
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    opacity: 0.6;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Disabilita parallax su mobile/tablet (iOS Safari non lo supporta) */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

/* ── Tablet (max 768px) ── */
@media (max-width: 768px) {

    /* Nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition-medium);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 16px 40px;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    }

    /* Hero */
    .title-main {
        font-size: 3.2rem;
        letter-spacing: 5px;
    }

    .title-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .title-descriptor {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin: 24px 0 32px;
        padding: 0 10px;
    }

    .hero-buttons {
        gap: 14px;
    }

    /* Sections */
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-icon {
        width: 110px;
        height: 110px;
        padding: 0;
    }

    /* About */
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Legal Pages */
    .legal-page {
        padding-top: 110px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

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

/* ── Mobile (max 480px) ── */
@media (max-width: 480px) {

    /* Hero */
    .hero {
        min-height: 100svh; /* usa svh su mobile per evitare overflow da barra browser */
    }

    .title-main {
        font-size: 2.6rem;
        letter-spacing: 3px;
    }

    .title-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .title-descriptor {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 20px 0 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px; /* touch target ≥ 44px */
    }

    /* Sections */
    section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.9rem;
        letter-spacing: 1px;
    }

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

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
        padding: 0;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* About */
    .about-text-large {
        font-size: 16px;
    }

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

    .feature-box {
        padding: 20px 14px;
    }

    /* Reviews */
    .reviews-section {
        padding: 28px 18px;
    }

    /* Contact */
    .info-item {
        gap: 14px;
        padding: 16px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    /* Social icons: touch-friendly */
    .social-icon {
        width: 48px;
        height: 48px;
    }

    /* Legal Pages */
    .legal-content h1 {
        font-size: 1.6rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    /* Write items */
    .write-item {
        gap: 14px;
        padding: 18px;
    }

    .write-icon {
        width: 48px;
        height: 48px;
    }

    /* Footer */
    .footer-logo img {
        height: 48px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    display: none; /* visibile solo su mobile */
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.whatsapp-float i {
    font-size: 28px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: flex;
    }
}

/* ==========================================
   Animations & Utilities
   ========================================== */
.fade-in {
    animation: fadeIn 1s ease;
}

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

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
