/* ===================================
   MOTOR SPOT - TECHNICAL MINIMALIST THEME
   =================================== */

:root {
    /* Color Palette - Technical & Premium */
    --primary-color: #000000;
    --primary-light: #333333;
    --accent-color: #004AAD;
    /* Motor Spot Blue */
    --accent-hover: #003882;

    --bg-body: #FFFFFF;
    --bg-section: #F7F7F9;
    /* Very subtle cool grey */
    --bg-card: #FFFFFF;

    --text-main: #111111;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-white: #FFFFFF;

    --border-light: #E5E5E5;
    --border-strong: #DDDDDD;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-bold: 700;

    /* Spacing & Layout */
    --container-max: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 4rem;

    /* Dynamic Spacing for 100vh fit */
    --spacing-xl: clamp(4rem, 8vh, 8rem);

    /* UI Elements */
    --radius-sm: 2px;
    --radius-md: 4px;
    /* Tech feel */
    --radius-lg: 8px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --duration: 0.3s;
}

/* ===================================
   RESET & BASE
   =================================== */

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--weight-bold);
    letter-spacing: -0.03em;
    /* Tight, modern tracking */
    color: var(--text-main);
}

.section-header {
    margin-bottom: 2.5rem;
    /* Reduced from 4rem for more compactness */
    max-width: 800px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    /* Responsive font size */
    margin-bottom: 0.75rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header h2::before {
    content: '';
    display: block;
    width: 24px;
    height: 4px;
    background: var(--accent-color);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: var(--weight-light);
    max-width: 500px;
}

/* ===================================
   UTILITIES
   =================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn-primary,
.btn-outline,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-weight: var(--weight-medium);
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease-out);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* ===================================
   HEADER
   =================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.btn-primary-nav {
    background: var(--accent-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: var(--weight-medium);
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

.btn-primary-nav:hover {
    background: var(--accent-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    z-index: 0;
}



.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.2s;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: var(--weight-light);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }
}



@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}




/* ===================================
   SERVICES grid - Minimalist
   =================================== */

.services,
.pricing,
.about,
.testimonials,
.contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Extra lift: Reduced top padding and increased bottom padding for a higher optical center */
    padding: 2vh 0 16vh;
}

.services {
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    /* Force 4 columns on desktop to keep them in one row */
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Slightly reduced gap to fit better */
}

@media (max-width: 1024px) {
    .services-grid {
        /* Revert to auto-fit on smaller screens (tablets/laptops) */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2rem 1.5rem;
    /* Reduced padding for compactness */
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

/* Technical Header Layout */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.service-icon {
    /* Clean icon style - no box */
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.service-icon img {
    display: block;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: var(--weight-bold);
    line-height: 1.2;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: var(--weight-bold);
    color: var(--primary-color);
    margin-top: auto;
    /* Push to bottom for symmetry */
    padding-top: 1.5rem;
    /* Space from the features list */
}

.service-link:hover {
    color: var(--accent-color);
}

/* Featured Service */
.service-card.featured {
    border-color: var(--primary-color);
    background: #000;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li,
.service-card.featured .service-link {
    color: white;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.service-card.featured .service-features li::before {
    color: var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-bottom-left-radius: var(--radius-md);
}

/* ===================================
   PRICING
   =================================== */

.pricing {
    background: var(--bg-section);
}

.pricing-grid {
    display: grid;
    /* Force 3 columns on desktop to keep them in one row */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .pricing-grid {
        /* Revert to auto-fit on tablets/mobile */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-section);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.75rem;
    /* Slightly larger */
    text-transform: uppercase;
    color: var(--text-main);
    /* Darker for more prominence */
    letter-spacing: 0.2em;
    /* More spacing for technical look */
    font-weight: var(--weight-bold);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: var(--weight-bold);
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-right: 2px;
    margin-top: 4px;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.price-features {
    text-align: left;
    margin: 2rem 0;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.price-features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Specific Pricing Button Style */
.price-card .btn-outline {
    width: 100%;
    margin-top: 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-card .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   ABOUT
   =================================== */

.about {
    background-color: var(--bg-body);
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Favoring the image even more */
    gap: 2.5rem;
    align-items: center;
}

.about-text .section-header {
    margin-bottom: 1rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: var(--weight-regular);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.about-text .btn-primary {
    margin-top: 0.5rem;
    padding: 0.9rem 2.2rem;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 480px;
    /* Fixed height to create a 'zoom' effect */
    object-fit: cover;
    /* Crops the sides to fill the height */
    object-position: center;
    display: block;
}



/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: #000;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-sm);
}

.testimonial-rating {
    color: var(--accent-color);
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ===================================
   FAQ PREVIEW
   =================================== */
.faq-preview {
    background: var(--bg-section);
    padding: var(--spacing-xl) 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

/* Accordion Style */
.faq-accordion {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.faq-accordion[open] {
    border-color: var(--accent-color);
    background: var(--bg-body);
    box-shadow: var(--shadow-soft);
}

.faq-accordion summary {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-accordion summary:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-accordion summary::-webkit-details-marker {
    display: none;
}

.faq-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-accordion[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    animation: fadeInFaq 0.4s ease-out;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-page-content {
    padding: 140px 0 80px;
    background: var(--bg-body);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.back-home {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.faq-cta {
    text-align: center;
}

/* ===================================
   COMPRAVENTA SHOP PREVIEW
   =================================== */
.shop-preview {
    background: var(--bg-section);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.shop-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.shop-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.shop-features {
    margin-bottom: 2.5rem;
}

.shop-features li {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

.shop-image img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .shop-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .shop-image img {
        height: 350px;
    }
}

/* ===================================
   CONTACT
   =================================== */

.contact {
    background: var(--bg-body);
    /* Set to 4vh at the top as requested */
    padding: 4vh 0 12vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.info-card {
    margin-bottom: clamp(1rem, 3vh, 2rem);
}

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

.info-card h3 {
    font-size: 0.75rem;
    /* Slightly smaller label */
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.info-card p,
.info-card li {
    font-size: 1rem;
    font-weight: var(--weight-regular);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Links inside info cards that are NOT buttons (like phone/email) */
.info-card a:not(.btn-primary) {
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    color: var(--text-main);
    display: inline-block;
    transition: color 0.2s ease;
}

.info-card a:not(.btn-primary):hover {
    color: var(--accent-color);
}

/* Fix for the button text color being overridden */
.info-card .btn-primary {
    margin-top: 1rem;
    color: var(--text-white);
    /* Enforce white text */
    font-size: 0.9rem;
}

.contact-map {
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 40vh;
    /* Reduced to lift the overall visual weight */
    min-height: 350px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    border: none;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #F2F2F2;
    padding: 5rem 0 2rem;
    color: var(--text-main);
    border-top: 1px solid var(--border-strong);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    filter: grayscale(100%) brightness(0);
    opacity: 0.8;
    height: 40px;
}

.footer-section h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-secondary);
    font-weight: var(--weight-medium);
    transition: color 0.3s ease;
}

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

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 900px) {

    /* Tablet */
    .hero h1 {
        font-size: 3rem;
    }

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

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

@media (max-width: 600px) {

    /* Mobile */
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: 0.3s;
        align-items: flex-start;
    }

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

    .menu-toggle {
        display: block;
    }

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

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content,
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
        flex-direction: column;
        gap: 1rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    animation: none;
    /* Stop pulsing on hover to avoid conflict with transform */
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}