/* ===== RESET & ROOT VARIABLES ===== */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(22, 22, 26, 0.6);
    --bg-card-hover: rgba(32, 32, 38, 0.8);
    --primary-orange: #f97316;
    --primary-orange-hover: #ea580c;
    --whatsapp-green: #0FD45A;
    --whatsapp-green-hover: #0bb54b;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== TYPOGRAPHY & UTILITIES ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.text-orange {
    color: var(--primary-orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #12d85c 0%, #0bb54b 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(18, 216, 92, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(18, 216, 92, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.logo i {
    color: var(--primary-orange);
    font-size: 2.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-top {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-bottom {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-main);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 212, 90, 0.1);
    color: var(--whatsapp-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(15, 212, 90, 0.3);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: var(--whatsapp-green);
    color: #fff;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    transition: var(--transition);
}

.call-btn:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 140px 24px 40px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, rgba(9, 9, 11, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Add a background image layered behind the gradient later */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-orange);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 40px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 16px;
        padding-top: 24px;
    }

    .stat-item {
        gap: 8px;
    }

    .stat-item i {
        font-size: 1.6rem;
    }

    .stat-item h3 {
        font-size: 1.4rem;
        margin-bottom: 0px;
    }

    .stat-text p {
        font-size: 0.75rem;
    }
}

/* ===== SECTIONS GENERAL ===== */
.section {
    padding: 60px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 24px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.filter-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
}

@media (max-width: 768px) {
    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        /* Hides scrollbar in modern browsers */
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }
}

/* ===== BIKE GRID & CARDS ===== */
.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.bike-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bike-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-card-hover);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.card-badge.orange {
    background: var(--primary-orange);
    color: #fff;
}

.bike-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.bike-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bike-card[data-category="scooty"] .bike-img {
    object-fit: contain;
}

.bike-card:hover .bike-img {
    transform: scale(1.05);
}

.bike-info {
    padding: 24px;
}

.bike-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.bike-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.bike-type {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: capitalize;
}

.bike-price h4 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    line-height: 1;
}

.bike-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bike-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.spec i {
    color: var(--text-main);
    font-size: 1.1rem;
}

.bike-actions {
    display: flex;
    gap: 12px;
}

.btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-small {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    background: rgba(15, 212, 90, 0.1);
    color: var(--whatsapp-green);
    border: 1px solid rgba(15, 212, 90, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp-small:hover {
    background: var(--whatsapp-green);
    color: #fff;
    border-color: var(--whatsapp-green);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--bg-card);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item[data-category="scooty"] img {
    object-fit: contain;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
.overall-rating {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.rating-stars {
    font-size: 1.2rem;
    display: flex;
    gap: 2px;
}

.overall-rating p {
    font-size: 0.95rem;
    margin-top: 4px;
    color: var(--text-muted);
}

.testimonials-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.testimonials-slider-container::before,
.testimonials-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.testimonials-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: slideRightToLeft 60s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    width: 350px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-size: 2.5rem;
    opacity: 0.2;
    position: absolute;
    top: 32px;
    right: 32px;
}

.testimonial-card .rating-stars {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-green {
    background: rgba(15, 212, 90, 0.1);
    color: #0FD45A;
}

.icon-orange {
    background: rgba(255, 106, 0, 0.1);
    color: #FF6A00;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 150px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .bike-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        width: 300px;
        padding: 30px 24px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .bike-info {
        padding: 20px;
    }

    .bike-specs {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 8px;
}

.contact-info {
    padding: 32px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-card.border-none {
    border-bottom: none;
    margin-bottom: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.w-full {
    flex: 1;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

@media (max-width: 992px) {
    .contact-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        letter-spacing: 1px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-text p {
        font-size: 0.7rem;
    }

    .hero-stats {
        gap: 12px;
    }

    .bike-img-container {
        height: 200px;
        /* Increased from 180 to prevent excessive cropping */
    }

    .bike-header h3 {
        font-size: 1.25rem;
    }

    .bike-price h4 {
        font-size: 1.35rem;
    }

    .testimonial-card {
        width: 280px;
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/* ===== DUAL WHATSAPP CONTACTS ===== */
.nav-contacts {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .nav-contacts {
        flex-direction: column;
        gap: 6px;
    }

    .nav-contacts .whatsapp-btn,
    .nav-contacts .call-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        justify-content: center;
    }
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #12d85c 0%, #0bb54b 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(18, 216, 92, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(18, 216, 92, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}