:root {
    --primary-color: #0a2342;
    --secondary-color: #8d99ae;
    --accent-color: #d90429;
    --text-color: #2b2d42;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #b00322;
    border-color: #b00322;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 35, 66, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    /* Ensure vertical alignment */
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.btn-whatsapp-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

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

.btn-whatsapp-nav {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    /* Reverted to standard rounded corners */
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.5)), url('../assets/hero-car.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.about-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.product-content ul {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-content ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

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

.contact-info {
    padding: 35px 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #05162b;
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Product Detail*/
/* Modal Redesign */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content - Card Style */
.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: row;
    /* Always horizontal */
    padding: 20px;
    /* Padding around the content to create the "card" look */
    gap: 20px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

/* Image Container - "Inside" the card */
.modal-image-container {
    width: 50%;
    min-width: 50%;
    height: auto;
    background: #f8f9fa;
    /* Light background for the image area */
    border-radius: 15px;
    /* Rounded corners for the image container */
    overflow: hidden;
    /* Clip the image */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* No border radius here, the container handles it */
}

/* Modal Body */
.modal-body {
    width: 50%;
    overflow-y: auto;
    padding: 10px 10px 10px 0;
    /* Adjust padding */
    display: flex;
    flex-direction: column;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .modal-content {
        display: grid;
        grid-template-columns: 130px 1fr;
        /* Image column | Text column */
        grid-template-rows: auto auto auto auto 1fr auto;
        /* Title | Badge | Price | Stock | Description | Button */
        /* Title | Badge | Price | Stock | Description | Button */
        column-gap: 15px;
        row-gap: 2px;
        padding: 15px;
        padding-top: 40px;
        /* Extra padding for close button */
        height: auto;
        max-height: 85vh;
        overflow-y: auto;
        /* Scroll on the grid container */
        align-items: start;
        position: relative;
        /* For absolute positioning of close button */
    }

    /* Remove flex/block behavior from body so children participate in grid */
    .modal-body {
        display: contents;
    }

    /* Image Position: Top Left, spanning rows 1-4 (Title to Stock) */
    .modal-image-container {
        grid-column: 1;
        grid-row: 1 / 5;
        width: 100%;
        height: 100%;
        /* Fill grid rows 1-4 */
        min-width: 0;
        border-radius: 10px;
        margin: 0;
        align-self: stretch;
        /* Ensure it fills the available height */
    }

    .modal-image {
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 20% !important;
        /* Crop from top to align with stock card */
    }

    /* Close Button: Absolute position in top right corner */
    .modal-close {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        grid-column: unset !important;
        grid-row: unset !important;
        justify-self: unset !important;
        align-self: unset !important;
        margin: 0 !important;
        z-index: 20;
        background: rgba(255, 255, 255, 0.95) !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 1.3rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
    }

    /* Text Elements: Right Column */
    .modal-body h2 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.2rem;
        /* Slightly smaller to fit better */
        margin-bottom: -2px !important;
        /* Reduce spacing */
        padding-right: 0px;
        /* No padding needed anymore */
        align-self: end;
        /* Align to bottom of cell if needed, or just let it flow */
    }

    .modal-badge {
        grid-column: 2;
        grid-row: 2;
        margin-bottom: -2px !important;
        /* Reduce spacing */
        font-size: 0.65rem;
        justify-self: start;
        /* Make it fit content */
        width: auto;
        /* Ensure it doesn't stretch */
    }

    .modal-price {
        grid-column: 2;
        grid-row: 3;
        font-size: 1.4rem;
        margin: -2px 0 !important;
        /* Reduce spacing */
    }

    .modal-stock {
        grid-column: 2;
        grid-row: 4;
        margin-bottom: 0 !important;
        /* Reduce spacing */
        font-size: 0.7rem;
        padding: 4px 8px;
        justify-self: start;
        /* Make it fit content */
        width: auto;
        /* Ensure it doesn't stretch */

    }

    /* Description: Full Width below everything */
    .modal-description {
        grid-column: 1 / -1;
        grid-row: 5;
        margin-top: 10px;
        font-size: 0.9rem;
    }

    /* WhatsApp Button: Full Width at bottom */
    .modal-whatsapp {
        grid-column: 1 / -1;
        grid-row: 6;
        margin-top: 15px;
        padding: 12px;
    }
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f3f5;
    color: #333;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

/* Typography & Elements */
.modal-body h2 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    padding-right: 30px;
    /* Space for close button */
}

@media (min-width: 768px) {
    .modal-body h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

.modal-badge {
    align-self: flex-start;
    background: #e9ecef;
    /* Gray background like reference */
    color: #495057;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.modal-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 800;
    margin: 5px 0 10px;
}

@media (min-width: 768px) {
    .modal-price {
        font-size: 2.5rem;
        margin: 10px 0 20px;
    }
}

/* Stock Banner */
.modal-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d4edda;
    color: #155724;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .modal-stock {
        gap: 8px;
        padding: 8px 16px;
        margin-bottom: 25px;
        font-size: 0.95rem;
        width: fit-content;
        /* Make it fit content width, not full width */
    }
}

.modal-stock.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.modal-description {
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.modal-whatsapp {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

@media (min-width: 768px) {
    .modal-whatsapp {
        padding: 16px;
        font-size: 1.1rem;
        gap: 12px;
    }
}

.modal-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Button on Card */
.btn-whatsapp-card {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background-color: #f0fdf4;
    /* Very light green */
    color: #166534;
    /* Dark green text */
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-whatsapp-card:hover {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

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

    /* General Mobile Improvements */
    body {
        font-size: 16px;
        /* Ensure minimum readable size */
    }

    .container {
        padding: 0 15px;
    }

    /* Header */
    header {
        padding: 0.5rem 0;
        /* Reduced for more compact header */
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }

    /* Mobile Header Layout */
    .nav-wrapper {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        align-items: center;
        gap: 10px;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .logo img {
        height: 55px;
        /* Reduced for more compact header */
    }

    .menu-toggle {
        grid-column: 3;
        justify-self: end;
        font-size: 1.8rem;
        padding: 5px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 10px;
    }

    .btn-whatsapp-nav {
        padding: 12px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 75vh;
        /* Increased to show only section title, not description */
        padding: 80px 0 40px;
        /* Optimized spacing */
    }

    .hero h1 {
        font-size: 1.85rem;
        /* Slightly reduced for compactness */
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        /* Reduced spacing */
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        /* Reduced gap */
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .about-grid::-webkit-scrollbar {
        display: none;
    }

    .about-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 30px 25px;
        opacity: 0.5;
        transform: scale(0.95);
        transition: all 0.3s ease;
        background: #f5f5f5;
        border: 2px solid var(--accent-color);
        outline: none;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .about-card.active-card {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: var(--white);
        border: 2px solid var(--accent-color);
    }

    .about-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .about-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* Products Section */
    .products {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .product-content ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .product-content .btn {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Search Bar */
    #search-bar {
        font-size: 1rem !important;
        padding: 14px 20px !important;
    }

    /* Filter Buttons */
    .products-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 0 10px;
    }

    .filter-btn {
        flex: 1 1 auto;
        min-width: 100px;
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 30px 25px;
        opacity: 0.5;
        transform: scale(0.95);
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid var(--accent-color);
        outline: none;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .testimonial-card.active-card {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid var(--accent-color);
    }

    .quote {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .info-item {
        margin-bottom: 20px;
    }

    .info-item h4 {
        font-size: 1.1rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px;
        font-size: 1rem;
    }

    .contact-form button {
        padding: 14px;
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 1.2rem;
    }

    /* Floating WhatsApp */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    /* Buttons */
    .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Extra small devices adjustments */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .product-card {
        max-width: 100%;
    }
}