/* ═══════════════════════════════════════════════════════════════════════════════
   CABBAR OĞLU İNŞAAT - STYLE.CSS
   Taxta sexi / taxta məhsulları
   Modern, Responsive, SEO-friendly dizayn
   
   İçindəkilər:
   1. CSS Variables (Rənglər, Fontlar)
   2. Reset & Base Styles
   3. Typography
   4. Layout & Container
   5. Header & Navigation
   6. Hero Section
   7. About Section
   8. Products Section
   9. Contact Section
   10. Footer
   11. Floating WhatsApp Button
   12. Buttons & Components
   13. Animations
   14. Responsive (Mobile, Tablet)
═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLES
═══════════════════════════════════════════════════════════════════════════════ */
:root {
    /* Primary Colors - Taxta tonları */
    --primary: #5D4037;
    /* Tünd qəhvəyi */
    --primary-dark: #3E2723;
    /* Çox tünd qəhvəyi */
    --primary-light: #8D6E63;
    /* Açıq qəhvəyi */

    /* Secondary Colors */
    --secondary: #795548;
    /* Orta qəhvəyi */
    --accent: #A1887F;
    /* Krem-qəhvəyi */

    /* Background Colors */
    --bg-light: #EFEBE9;
    /* Krem arxa fon */
    --bg-white: #FFFFFF;
    --bg-dark: #3E2723;
    --bg-gray: #F5F5F5;

    /* Text Colors */
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --text-white: #FFFFFF;

    /* WhatsApp Color */
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Gradients */
    --gradient-wood: linear-gradient(135deg, #5D4037 0%, #8D6E63 50%, #5D4037 100%);
    --gradient-dark: linear-gradient(180deg, rgba(62, 39, 35, 0.95) 0%, rgba(62, 39, 35, 0.8) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(62, 39, 35, 0.9) 0%, rgba(93, 64, 55, 0.85) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Header Height */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. TYPOGRAPHY
═══════════════════════════════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-medium);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. LAYOUT & CONTAINER
═══════════════════════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xs);
}

.section-title {
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-wood);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. HEADER & NAVIGATION
═══════════════════════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-accent {
    color: var(--primary);
}

/* Logo Image */
.logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.logo-img-footer {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    position: relative;
    padding: var(--space-xs) 0;
}

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

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

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

/* Header WhatsApp Button */
.header-whatsapp {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.6rem 1.2rem;
    background: var(--whatsapp);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.header-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-whatsapp .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. HERO SECTION
═══════════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        var(--gradient-hero),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%238D6E63" width="100" height="100"/><g fill-opacity="0.1"><rect fill="%23ffffff" x="0" y="0" width="50" height="50"/><rect fill="%233E2723" x="50" y="50" width="50" height="50"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
    overflow: hidden;
}

/* Wood Pattern Overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 50px,
            rgba(0, 0, 0, 0.05) 50px,
            rgba(0, 0, 0, 0.05) 51px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(62, 39, 35, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.hero-title {
    color: var(--text-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--accent);
    display: inline-block;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.about-text {
    max-width: 600px;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.feature-text h4 {
    margin-bottom: var(--space-xs);
    color: var(--primary-dark);
}

.feature-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. PRODUCTS SECTION
═══════════════════════════════════════════════════════════════════════════════ */
.products {
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Product Card */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--space-md);
}

.product-name {
    margin-bottom: var(--space-xs);
    color: var(--primary-dark);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    min-height: 1.4rem;
}

/* Product Card Border Enhancement */
.product-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    border-color: var(--primary-light);
}

/* Products Placeholder */
.products-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--accent);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.products-placeholder h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

.products-placeholder p {
    max-width: 400px;
    margin: 0 auto var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. CONTACT SECTION
═══════════════════════════════════════════════════════════════════════════════ */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.contact-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.contact-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--primary-dark);
}

.contact-card p {
    margin-bottom: var(--space-xs);
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.contact-city,
.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Contact CTA */
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--gradient-wood);
    border-radius: var(--radius-lg);
    color: var(--text-white);
}

.cta-content h3 {
    color: var(--text-white);
    margin-bottom: var(--space-xs);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. FOOTER
═══════════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-logo .logo-text {
    color: var(--text-white);
}

.footer-tagline {
    margin-top: var(--space-xs);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: var(--space-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: var(--text-white);
}

.footer-contact a:hover {
    color: var(--whatsapp);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: var(--text-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float .whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-fast);
}

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

@keyframes pulse {

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

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

/* ═══════════════════════════════════════════════════════════════════════════════
   12. BUTTONS & COMPONENTS
═══════════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn .whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Small WhatsApp Button (for product cards) */
.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--whatsapp);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-whatsapp-sm:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* WhatsApp Icon for Product Cards */
.whatsapp-icon-sm {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

/* Large Button */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. ANIMATIONS
═══════════════════════════════════════════════════════════════════════════════ */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. RESPONSIVE STYLES
═══════════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
        --space-3xl: 4rem;
    }

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

    .about-text {
        max-width: 100%;
    }

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

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

    .contact-cards .contact-card:last-child {
        grid-column: 1 / -1;
    }

    .contact-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 65px;
        --container-padding: 1rem;
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
    }

    /* Header Mobile */
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .nav-link {
        display: block;
        padding: var(--space-sm);
        text-align: center;
        font-size: 1rem;
    }

    .header-whatsapp {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
        padding-top: calc(var(--header-height) + var(--space-xl));
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    /* About Mobile */
    .about-features {
        grid-template-columns: 1fr;
    }

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

    /* Contact Mobile */
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-cards .contact-card:last-child {
        grid-column: auto;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-contact {
        text-align: center;
    }

    /* Floating Button Mobile */
    .whatsapp-float {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 56px;
        height: 56px;
    }

    .whatsapp-float .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .products-placeholder {
        padding: var(--space-xl);
    }

    .placeholder-icon {
        font-size: 3rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: var(--text-white);
}