/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #143472;
    --primary-dark: #0f2a5a;
    --secondary-color: #2a5faa;
    --accent-color: #3b7dd6;
    --accent-light: #8ebbff;
    --success-color: #25D366;
    --text-dark: #1b3760;
    --text-light: #405b81;
    --text-grey: #6b7280;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 52, 114, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(20, 52, 114, 0.98);
    padding: 8px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

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

.header.scrolled .logo img {
    height: 42px;
}

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

.nav-link {
    color: var(--bg-white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-base);
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 52, 114, 0.45) 0%, rgba(42, 95, 170, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

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

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

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-light);
    color: var(--bg-white);
}

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

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-download,
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-download:hover,
.btn-directions:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: var(--transition-base);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

.btn-whatsapp:hover {
    background: #1fab52;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 80px 0;
    position: relative;
}

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

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--bg-light);
}

.about-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.doc-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.doc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.doc-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.doc-icon svg {
    width: 100%;
    height: 100%;
}

.doc-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.doc-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ef 100%);
    opacity: 0.6;
    z-index: 0;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

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

.product-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-top: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    background: var(--bg-white);
}

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

.category-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    padding: 24px 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
}

/* Slider Wrapper */
.slider-wrapper {
    margin-top: 60px;
    padding: 40px 0;
}

.slider-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    position: relative;
    background: var(--primary-color);
    color: var(--bg-white);
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMTAwIDAgTCAwIDAgMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    opacity: 0.5;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-section .section-title,
.features-section .section-subtitle {
    color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent-light);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--bg-white);
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
}

/* ========================================
   DEALERS SECTION
   ======================================== */
.dealers-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 60px 0;
}

.dealers-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.dealers-text {
    flex: 1;
    min-width: 300px;
}

.dealers-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.dealers-text p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   CONTACT SECTION - NEW LAYOUT
   ======================================== */
.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Side - Form and Map */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-box,
.contact-map-box,
.contact-info-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.contact-form-box:hover,
.contact-map-box:hover,
.contact-info-box:hover {
    box-shadow: var(--shadow-md);
}

.contact-form-box h3,
.contact-map-box h3,
.contact-info-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 52, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    width: 100%;
}

/* Map Box */
.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 52, 114, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease;
    pointer-events: none;
}

.map-overlay-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.map-overlay-text svg {
    width: 20px;
    height: 20px;
}

.map-wrapper:hover .map-overlay {
    background: rgba(20, 52, 114, 0.15);
    pointer-events: auto;
}

.map-wrapper:hover .map-overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.map-overlay-text:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Right Side - Contact Info */
.contact-right {
    position: sticky;
    top: 100px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.info-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

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

.info-content a {
    color: var(--accent-color);
    transition: var(--transition-fast);
    font-weight: 500;
}

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


/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-content a {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-content a:hover {
    color: var(--bg-white);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 64px;
    height: 64px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--bg-white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

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

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero {
        padding: 100px 20px 40px;
        background-attachment: scroll;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

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

    .products-grid,
    .categories-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* New Contact Section Responsive */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-right {
        position: static;
    }

    .contact-form-box,
    .contact-map-box,
    .contact-info-box {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-wrapper {
        height: 280px;
    }

    .dealers-content {
        flex-direction: column;
        text-align: center;
    }

    .dealers-content .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    /* Tablet-specific typography */
    .section-title {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 16px;
    }

    .product-card h3,
    .category-card h3 {
        font-size: 1.3rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .product-card,
    .feature-card,
    .doc-card {
        padding: 30px 24px;
    }

    .contact-info,
    .contact-form,
    .contact-map {
        padding: 30px 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Fix email overflow on mobile */
    .info-content a {
        font-size: 12px;
        word-break: break-all;
        line-height: 1.6;
    }

    /* Fix product icon clipping on mobile */
    .product-icon {
        width: 64px;
        height: 64px;
        overflow: visible;
    }

    .product-card {
        overflow: visible;
    }

    /* Ensure no horizontal overflow */
    * {
        max-width: 100%;
    }

    .container {
        overflow-x: hidden;
    }
}

/* Samsung S22 Ultra and similar devices (360px-480px) */
@media (min-width: 360px) and (max-width: 480px) {
    /* Ensure proper spacing */
    .info-content h4 {
        font-size: 15px;
    }

    .info-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* Product icons with proper spacing */
    .product-card {
        padding: 28px 20px;
    }

    .product-icon {
        margin-bottom: 20px;
    }
}

/* Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* iPad Pro and larger tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map {
        grid-column: 1 / -1;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .scroll-indicator,
    .hero-buttons {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    section {
        page-break-inside: avoid;
    }
}