/* Design System - Il Puntaspilli */

:root {
    --primary: #ad1457;
    --primary-dark: #880e4f;
    --primary-light: #f8bbd9;
    --primary-soft: #fff5f8;
    
    --secondary: #e91e63;
    --secondary-dark: #c2185b;
    
    --text-color: #2c3e50;
    --text-muted: #5a738e;
    --light-bg: #fdf6f9;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(173, 20, 87, 0.05);
    --shadow-md: 0 10px 20px rgba(173, 20, 87, 0.08);
    --shadow-lg: 0 20px 40px rgba(173, 20, 87, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Nunito', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* offset for sticky header */
}

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

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(136, 14, 79, 0.95);
    backdrop-filter: blur(15px);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05) rotate(-3deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius-lg);
    border: 1.5px solid transparent;
}

.nav-links a:hover,
.nav-links li.active a {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    position: absolute;
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Mobile Nav Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    z-index: 105;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.open {
    right: 0;
}

.nav-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-drawer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.nav-drawer-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: var(--primary-light);
    padding-left: 2rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 104;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(88, 9, 52, 0.25), rgba(44, 5, 26, 0.35)), 
                url('negozio.png');
    background-size: cover;
    background-position: center;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    box-shadow: inset 0 -100px 100px -100px rgba(0,0,0,0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 1;
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
}

.cta-button {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--white);
    padding: 16px 42px;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(173, 20, 87, 0.4);
    animation: fadeInUp 1.2s ease-out;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(136, 14, 79, 0.5);
    border-color: rgba(255,255,255,0.2);
}

/* Sections */
.section {
    padding: 3.2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.section-alternate {
    background-color: var(--primary-soft);
    max-width: 100%;
    width: 100%;
}

.section-alternate .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.2rem 2rem;
}

.section h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 2px;
}

/* Decorazione spillo sotto i titoli */
.heading-decorative-icon {
    width: 30px;
    height: 30px;
    fill: var(--primary);
    opacity: 0.7;
    margin-top: -0.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

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

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: inset 0 2px 5px rgba(173, 20, 87, 0.05);
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
}

.service-icon-svg {
    width: 45px;
    height: 45px;
    fill: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-svg {
    fill: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

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

/* Brands Grid */
.brands-section h2 {
    margin-bottom: 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    align-items: center;
}

.brand-item {
    height: 120px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--primary-light);
    padding: 1rem;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.brand-item img {
    max-width: 90%;
    max-height: 75%;
    object-fit: contain;
    filter: grayscale(20%) contrast(1.05);
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%) contrast(1.1);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-text p strong {
    color: var(--primary-dark);
}

.about-text p em {
    color: var(--primary);
    font-style: italic;
    border-left: 3px solid var(--primary-light);
    padding-left: 1rem;
    display: block;
    margin-top: 2rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    height: 450px;
    transition: var(--transition);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(173, 20, 87, 0.2);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* About Badges */
.about-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.about-badge {
    background: var(--primary-soft);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--border-radius-sm);
    padding: 1.2rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.2rem;
}

.badge-icon-svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    margin: 0 auto 0.5rem;
    display: block;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    line-height: 1.3;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2.5rem 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--primary-soft);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 45px;
    height: 45px;
    fill: var(--primary-light);
    opacity: 0.35;
    pointer-events: none;
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: #f39c12;
}

.testimonial-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--primary-soft);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1.5rem;
}

.faq-icon-svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon-svg {
    transform: rotate(180deg);
    fill: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* high enough limit for text */
    padding: 0 2rem 1.8rem;
}

/* Contact Section & Map */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1.5px solid var(--primary-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    border: 2px solid var(--primary-light);
    box-shadow: inset 0 2px 4px rgba(173, 20, 87, 0.03);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background-color: var(--primary);
}

.contact-icon-svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    transition: var(--transition);
}

.contact-card:hover .contact-icon-svg {
    fill: var(--white);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

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

.digital-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-soft);
    border: 1px solid var(--primary-light);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    transform: scale(1.15) rotate(8deg);
    background: var(--primary);
}

.social-icon-svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    transition: var(--transition);
}

.social-link:hover .social-icon-svg {
    fill: var(--white);
}

.email-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-soft);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
}

.email-contact:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(173, 20, 87, 0.15);
}

.email-icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Map Embed Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--white);
    margin-top: 2rem;
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.whatsapp-tooltip {
    background: #2c3e50;
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.1) rotate(8deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
}

/* Pulsing effect on WhatsApp button */
.whatsapp-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    z-index: -1;
    top: 0;
    left: 0;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border-top: 4px solid var(--primary);
    position: relative;
}

footer p {
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

footer p:last-child {
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Scroll animation placeholders (classes added by JS) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design (Mobile / Tablet) */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo img {
        height: 45px;
    }

    .nav-links {
        display: none; /* Hide desktop nav */
    }

    .hamburger {
        display: block; /* Show hamburger button */
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.15rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }

    .section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

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

    .about-image {
        height: 320px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltips on mobile/touch screens */
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-wrapper {
        width: 54px;
        height: 54px;
    }
    
    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
}
