/* =====================================================
   LAVA REAL - Professional Laundromat Styles
   Design System & Responsive CSS
   ===================================================== */

/* =====================================================
   1. CSS Variables & Design System
   ===================================================== */
:root {
    /* Primary Colors */
    --primary-blue: #1E88E5;
    --primary-dark: #1565C0;
    --primary-light: #64B5F6;
    --primary-lighter: #E3F2FD;

    /* Secondary Colors */
    --success: #4CAF50;
    --success-light: #E8F5E9;
    --warning: #FF9800;
    --warning-light: #FFF3E0;
    --danger: #F44336;

    /* Neutral Colors */
    --text-primary: #212121;
    --text-secondary: #616161;
    --text-light: #9E9E9E;
    --background: #FFFFFF;
    --background-light: #F5F5F5;
    --background-dark: #EEEEEE;
    --border-light: #E0E0E0;
    --border-dark: #BDBDBD;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 40px;
    --font-size-5xl: 48px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
}

/* =====================================================
   2. Base Styles & Reset
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

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

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

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

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

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

button {
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-base);
}

/* =====================================================
   3. Layout Components
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

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

.section-title {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   4. Header & Navigation
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-base);
}

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

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

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: #25D366;
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-whatsapp-nav:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* =====================================================
   5. Hero Section
   ===================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: var(--space-2xl);
    padding: var(--space-2xl);
}

.hero-content {
    text-align: left;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: heroPattern 60s linear infinite;
}

@keyframes heroPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-simple-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-simple-info p {
    margin: 0;
    font-size: var(--font-size-lg);
    opacity: 0.95;
}

.hero-simple-info strong {
    font-weight: 600;
    font-size: 1.1em;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-lg);
}

.feature-icon {
    opacity: 0.9;
}

.hero-price-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.price-card-mini {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 150px;
    transition: all var(--transition-base);
}

.price-card-mini:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.price-card-mini.featured {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.price-label {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: var(--space-xs);
}

.price-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.price-unit {
    font-size: var(--font-size-sm);
    opacity: 0.85;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    min-height: 48px;
}

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

.btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-xl);
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: var(--space-xl) var(--space-lg);
}

.hero-image-caption {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 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); }
}

/* =====================================================
   6. Services Section
   ===================================================== */
.services-section {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(30, 136, 229, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.1);
}

.badge-featured {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: rgba(29, 78, 216, 0.1);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 11px;
    border: 1px solid rgba(29, 78, 216, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--success);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.service-icon {
    margin-bottom: var(--space-lg);
}

.service-title {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-2xl);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.price-list {
    margin-bottom: var(--space-xl);
}

.price-item {
    display: flex;
    align-items: center;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--background-light);
    transition: all 0.2s ease;
}

.price-item:hover {
    padding-left: var(--space-sm);
    background: var(--background-light);
    margin: 0 calc(-1 * var(--space-md));
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.featured {
    background: var(--primary-lighter);
    padding: var(--space-md);
    margin: var(--space-sm) calc(-1 * var(--space-md));
    border-radius: var(--radius);
    border: none;
}

.price-name {
    flex: 1;
    font-weight: 500;
}

.price-dots {
    flex: 1;
    border-bottom: 2px dotted var(--border-light);
    margin: 0 var(--space-md);
}

.price-amount {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
}

/* Desktop service pricing styles */
.service-pricing {
    background: var(--background-light);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin-top: auto;
    margin-bottom: var(--space-lg);
    min-height: auto;
}

.price-row-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
}

.price-row-desktop:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--space-xs);
    padding-bottom: var(--space-xs);
}


.price-label {
    font-weight: 500;
    color: var(--text-light);
    font-size: var(--font-size-md);
}

.price-value {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
}


/* Equal height for service cards - already handled in .service-card */

/* Hide buttons for first two cards */
.services-grid .service-card:first-child .btn-service,
.services-grid .service-card:nth-child(2) .btn-service {
    display: none;
}

.price-sub-info {
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-top: var(--space-sm);
}

/* Elegant bullet points */
.feature-bullet {
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: var(--space-sm);
}

/* Remove emoji icons */
.service-icon {
    display: none;
}

/* Adjust title spacing when icon is removed */
.service-card .service-title {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-xl);
}

.service-description {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
    min-height: 48px;
}

.service-features {
    margin-bottom: auto;
    padding-bottom: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: baseline;
    margin-bottom: var(--space-sm);
}

.feature-item:last-child {
    margin-bottom: 0;
}

/* Highlight price for Por Encargo */
.price-row-desktop.highlight-price {
    font-size: var(--font-size-lg);
}

.price-row-desktop.highlight-price .price-value {
    font-size: var(--font-size-xl);
    color: var(--primary-blue);
}

.btn-service {
    width: 100%;
    padding: var(--space-md);
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-featured {
    background: var(--success);
}

.btn-featured:hover {
    background: #388E3C;
}

/* Mobile-friendly services layout */
.services-mobile {
    display: grid;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.service-mobile-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-emoji {
    font-size: 2.5rem;
}

.service-header h3 {
    font-size: var(--font-size-xl);
    margin: 0;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    font-size: var(--font-size-lg);
}

.service-prices {
    background: var(--background-light);
    border-radius: var(--radius);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.price-row:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.price-row span {
    color: var(--text-light);
    font-size: var(--font-size-md);
}

.price-row strong {
    color: var(--primary-blue);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.service-mobile-card .btn-whatsapp {
    width: 100%;
    padding: var(--space-lg);
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.service-mobile-card .btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}

/* Hide old services grid on mobile, show new mobile layout */
@media (max-width: 768px) {
    .services-grid {
        display: none;
    }

    .services-mobile {
        display: grid;
    }
}

/* Hide mobile layout on desktop, show grid */
@media (min-width: 769px) {
    .services-mobile {
        display: none;
    }

    .services-grid {
        display: grid;
    }
}

/* =====================================================
   7. How It Works Section
   ===================================================== */
.how-it-works {
    background: white;
}

/* Mobile-first Process Section */
.process-mobile {
    max-width: 600px;
    margin: 0 auto;
}

.service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    border-color: var(--primary-blue);
    background: var(--background-light);
}

.service-btn.active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
}

.service-btn-icon {
    font-size: 1.5rem;
}

.process-content {
    display: none;
}

.process-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.process-timeline {
    position: relative;
    padding-left: var(--space-xl);
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--border-light);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-xl);
    padding-left: var(--space-xl);
}

.timeline-marker {
    position: absolute;
    left: -28px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
}

.timeline-item:last-child .timeline-marker {
    background: var(--primary-blue);
    color: white;
}

.timeline-content h4 {
    margin: 0 0 var(--space-xs);
    color: var(--text-primary);
    font-size: var(--font-size-lg);
}

.timeline-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-md);
}

/* Keep old styles for compatibility */
.process-tabs {
    display: none;
}

.tab-buttons {
    display: none;
}

.tab-button {
    padding: var(--space-md) var(--space-xl);
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab-button.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.tab-button:hover:not(.active) {
    background: var(--background-dark);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    position: relative;
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.step-icon {
    margin: var(--space-xl) 0 var(--space-lg);
}

.step-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-blue);
}

.process-step h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

/* Connect steps with lines on desktop */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 15px;
        right: -20%;
        width: 40%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    }
}

/* =====================================================
   8. Promotions Section - Desktop Grid
   ===================================================== */
.promotions-section {
    background: var(--background-light);
}

/* Desktop Promotions Grid */
.promos-desktop {
    display: none;
}

.promos-mobile {
    display: block;
}

@media (min-width: 769px) {
    .promos-desktop {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
        max-width: 1000px;
        margin: 0 auto;
    }

    .promos-mobile {
        display: none !important;
    }

    /* Featured large card spans full width */
    .promo-card.featured-large {
        grid-column: span 2;
    }

    .promo-card {
        background: white;
        border-radius: var(--radius-lg);
        padding: var(--space-2xl);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all var(--transition-base);
        border: 2px solid transparent;
    }

    .promo-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-color: var(--primary-blue);
    }

    .promo-card.featured-large {
        background: linear-gradient(135deg, #fff 60%, rgba(29, 78, 216, 0.05) 100%);
        border-color: var(--primary-blue);
    }

    .promo-content {
        position: relative;
        z-index: 2;
    }

    .promo-badge {
        display: inline-block;
        background: var(--primary-blue);
        color: white;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: var(--space-md);
    }

    .promo-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-lg);
        color: var(--text-dark);
    }

    .promo-pricing {
        display: flex;
        align-items: baseline;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .price-strike {
        text-decoration: line-through;
        color: var(--text-light);
        font-size: var(--font-size-lg);
    }

    .price-highlight {
        color: var(--primary-blue);
        font-size: var(--font-size-3xl);
        font-weight: 700;
    }

    .price-highlight.large {
        font-size: var(--font-size-4xl);
    }

    .price-unit {
        color: var(--text-light);
        font-size: var(--font-size-md);
    }

    .promo-description {
        color: var(--text-light);
        line-height: 1.6;
        font-size: var(--font-size-md);
    }

    .promo-icon {
        position: absolute;
        bottom: var(--space-xl);
        right: var(--space-xl);
        font-size: 3rem;
        opacity: 0.15;
    }

    /* Featured card specific styles */
    .featured-large .promo-title {
        font-size: var(--font-size-3xl);
    }

    .featured-large .promo-content {
        max-width: 70%;
    }

    .featured-large .promo-icon {
        font-size: 6rem;
        right: var(--space-2xl);
    }
}

/* Mobile-first Promotions */
.promos-mobile {
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

@media (min-width: 769px) {
    .promos-mobile {
        display: none !important;
    }
}

.promo-mobile-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.promo-mobile-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.1);
}

.promo-mobile-card.featured {
    border-color: var(--warning);
    background: linear-gradient(135deg, #fffbf0 0%, white 100%);
}

.promo-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.promo-emoji {
    font-size: 2rem;
    line-height: 1;
}

.promo-info h3 {
    margin: 0 0 var(--space-xs);
    font-size: var(--font-size-lg);
    color: var(--text-primary);
}

.promo-tag {
    margin: 0;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.promo-offer {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price-before {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.price-now {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.promo-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-label {
    color: var(--text-secondary);
    font-size: var(--font-size-md);
}

.promo-desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-md);
}

.promo-footer {
    text-align: center;
    padding: var(--space-xl);
    background: var(--background-light);
    border-radius: var(--radius-lg);
}

.promo-footer p {
    margin: 0 0 var(--space-lg);
    color: var(--text-secondary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Keep old styles for compatibility */
.promotions-grid {
    display: none;
}

/* Removed conflicting .promo-card display:none */

.promo-card.new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD600, #FFC107);
}

.promo-badge {
    display: inline-block;
    background: var(--warning);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
}

.promo-icon {
    margin-bottom: var(--space-lg);
}

.promo-title {
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-2xl);
}

.promo-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: var(--font-size-xl);
}

.price-new {
    color: var(--success);
    font-size: var(--font-size-3xl);
    font-weight: 700;
}

.price-highlight {
    color: var(--primary-blue);
    font-size: var(--font-size-4xl);
    font-weight: 700;
}

.promo-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.promo-validity {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

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

/* =====================================================
   9. Location Section
   ===================================================== */
.location-section {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.location-info {
    display: grid;
    gap: var(--space-lg);
}

.info-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.info-card:hover {
    background: var(--background-dark);
}

.info-icon {
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

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

.info-content a:hover {
    text-decoration: underline;
}

.text-small {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-actions {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--background-light);
}

.btn-map {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--primary-blue);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-map:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-map-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

/* =====================================================
   10. Reviews Section
   ===================================================== */
.reviews-section {
    background: var(--background-light);
}

.reviews-grid {
    display: grid;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.review-featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-stars {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.review-text {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 var(--space-lg);
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.review-author strong {
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
}

.review-author span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.review-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--background-light);
    border-radius: var(--radius-lg);
}

.review-cta h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.review-cta p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* =====================================================
   11. FAQ Section
   ===================================================== */
.faq-section {
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--background-dark);
}

.faq-icon {
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* =====================================================
   12. Contact Section
   ===================================================== */
.contact-section {
    background: var(--background-light);
}

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

.contact-options h3,
.b2b-form-container h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.contact-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

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

.contact-card.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact-card.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.contact-card.whatsapp .contact-icon {
    background: rgba(255,255,255,0.2);
}

.contact-content h4 {
    margin-bottom: var(--space-xs);
    color: inherit;
}

.contact-content p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: var(--space-xs);
}

.contact-value {
    font-weight: 600;
    font-size: var(--font-size-lg);
}

/* B2B Form */
.b2b-form-container {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.b2b-form {
    display: grid;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

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

.btn-submit {
    width: 100%;
    margin-top: var(--space-md);
}

/* =====================================================
   13. Footer
   ===================================================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: white;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-column h4 {
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: var(--font-size-sm);
}

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

.mt-4 {
    margin-top: var(--space-xl);
}

/* =====================================================
   14. WhatsApp Floating Button
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--text-primary);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
    white-space: nowrap;
    font-size: var(--font-size-sm);
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--text-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* =====================================================
   15. Modal
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 32px;
    height: 32px;
    background: var(--background-light);
    border: none;
    border-radius: 50%;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

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

.modal-content h2 {
    margin-bottom: var(--space-lg);
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* =====================================================
   16. Animations
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =====================================================
   17. Utility Classes
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.block { display: block !important; }
.flex { display: flex !important; }
.grid { display: grid !important; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }

/* =====================================================
   18. Responsive Design
   ===================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Typography scaling */
    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }
    h3 { font-size: var(--font-size-xl); }

    /* Hero adjustments */
    .hero-split {
        grid-template-columns: 1fr;
        padding: var(--space-lg);
        gap: var(--space-xl);
    }

    .hero-content {
        padding: var(--space-lg) 0;
        text-align: center;
        align-items: center;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-simple-info {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }

    .hero-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Reviews adjustments */
    .review-featured {
        grid-template-columns: 1fr;
    }

    .review-image {
        height: 250px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: var(--space-xl) 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-link {
        padding: var(--space-md);
        display: block;
    }

    .nav-cta {
        margin-top: var(--space-lg);
    }

    /* Hero */
    .hero {
        padding: calc(70px + var(--space-xl)) var(--space-md) var(--space-xl);
    }

    .hero-features {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-price-cards {
        flex-direction: column;
        align-items: center;
    }

    .price-card-mini.featured {
        transform: scale(1.05);
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .service-card.featured {
        transform: scale(1);
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    /* Promotions */
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 55px;
        height: 55px;
    }

    /* Modal */
    .modal-content {
        padding: var(--space-lg);
    }

    /* Utilities */
    .container {
        padding: 0 var(--space-md);
    }

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

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Typography */
    body {
        font-size: var(--font-size-sm);
    }

    h1 { font-size: var(--font-size-2xl); }
    h2 { font-size: var(--font-size-xl); }
    h3 { font-size: var(--font-size-lg); }

    /* Buttons */
    .btn-large {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--font-size-base);
    }

    /* Price cards */
    .price-card-mini {
        min-width: 120px;
    }

    /* Map */
    .location-map iframe {
        height: 300px;
    }

    .map-actions {
        flex-direction: column;
    }

    /* WhatsApp tooltip */
    .whatsapp-tooltip {
        display: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .mobile-menu-toggle,
    .btn-whatsapp-nav,
    .modal {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

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

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

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0D47A1;
        --text-primary: #000000;
        --background: #FFFFFF;
        --border-light: #000000;
    }

    .btn-primary {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support (Optional - can be enabled with class toggle) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here if needed */
}