/* ============================================
   PRECISION PAINTING - Mobile-First Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #2BA3DB;
    --primary-blue-dark: #1E8BC3;
    --accent-orange: #F5A623;
    --accent-orange-dark: #E09000;
    --whatsapp-green: #25D366;
    --dark-charcoal: #2D3E50;
    --dark-charcoal-light: #3D5166;
    --white: #FFFFFF;
    --light-grey: #F5F7FA;
    --medium-grey: #E8ECF0;
    --text-grey: #5A6A7A;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(45, 62, 80, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 62, 80, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 62, 80, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Mobile-first spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography - Mobile First */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-charcoal);
}

h1 { font-size: 2rem; margin-bottom: var(--space-sm); }
h2 { font-size: 1.6rem; margin-bottom: var(--space-sm); }
h3 { font-size: 1.25rem; margin-bottom: var(--space-xs); }

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

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

/* Container */
.container {
    width: 100%;
    padding: 0 var(--space-sm);
    margin: 0 auto;
}

/* ============================================
   HEADER - Mobile First
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xs) var(--space-sm);
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

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

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.4rem;
    }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-charcoal);
}

/* Desktop Nav - Hidden on Mobile */
.nav-desktop {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    color: white;
}

.header-whatsapp svg {
    width: 22px;
    height: 22px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--dark-charcoal);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: var(--space-md);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

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

.mobile-nav a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    border-bottom: 1px solid var(--medium-grey);
}

.mobile-nav .nav-section {
    margin-top: var(--space-md);
}

.mobile-nav .nav-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: var(--space-xs);
}

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

/* ============================================
   BUTTONS - Touch Friendly
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 52px; /* Touch-friendly */
    text-align: center;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover, .btn-primary:active {
    background: var(--accent-orange-dark);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
    background: #20ba5a;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark-charcoal);
    border: 2px solid var(--medium-grey);
}

.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-charcoal);
}

/* ============================================
   HERO SECTION - Mobile First
   ============================================ */
.hero {
    padding: 80px 0 var(--space-lg);
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--dark-charcoal-light) 100%);
    color: var(--white);
    min-height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(43, 163, 219, 0.15);
    border: 1px solid rgba(43, 163, 219, 0.3);
    border-radius: 100px;
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.hero h1 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.hero h1 span {
    color: var(--accent-orange);
}

.hero-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--space-sm);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.trust-text strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-xl) 0;
}

.section-light {
    background: var(--light-grey);
}

.section-dark {
    background: var(--dark-charcoal);
    color: var(--white);
}

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

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

.section-dark .section-label {
    color: var(--accent-orange);
}

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

.section-header p {
    color: var(--text-grey);
    font-size: 1rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   SERVICE CARDS - Mobile Optimized
   ============================================ */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 2px solid var(--medium-grey);
    transition: var(--transition);
}

.service-card:active {
    border-color: var(--primary-blue);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.service-card.commercial .service-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
}

.service-card h3 {
    margin-bottom: var(--space-xs);
}

.service-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.service-list {
    list-style: none;
    margin-bottom: var(--space-md);
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.service-card.commercial .service-list li::before {
    color: var(--accent-orange);
}

/* ============================================
   AREAS GRID - Mobile First
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.area-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--medium-grey);
    text-decoration: none;
    color: var(--dark-charcoal);
    transition: var(--transition);
    min-height: 56px;
}

.area-card:active {
    border-color: var(--primary-blue);
    background: var(--light-grey);
}

.area-card svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.area-card span {
    font-weight: 500;
}

.area-card .arrow {
    margin-left: auto;
    color: var(--text-grey);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.why-card {
    text-align: center;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    color: var(--primary-blue);
}

.why-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.why-card p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-sm);
    color: var(--accent-orange);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    color: var(--white);
}

.author-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    text-align: center;
    color: var(--white);
}

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

.cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-form-section {
    padding: var(--space-xl) 0;
    background: var(--light-grey);
}

.quote-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.quote-form-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.quote-form-header h3 {
    margin-bottom: var(--space-xs);
}

.quote-form-header p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0;
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px; /* Prevents zoom on iOS */
    border: 2px solid var(--medium-grey);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-top: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

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

.whatsapp-float-text {
    display: none;
}

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

/* ============================================
   PAGE SPECIFIC - Service Pages
   ============================================ */
.page-hero {
    padding: 100px 0 var(--space-lg);
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--dark-charcoal-light) 100%);
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

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

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

.content-section h2 {
    margin-bottom: var(--space-sm);
}

.content-section p {
    color: var(--text-grey);
    margin-bottom: var(--space-sm);
}

.content-section ul {
    margin-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.content-section li {
    margin-bottom: var(--space-xs);
    color: var(--text-grey);
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--space-sm);
    background: var(--light-grey);
    border-radius: var(--radius-sm);
}

.feature-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Location page specific */
.location-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.local-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.local-area-tag {
    padding: 10px 14px;
    background: var(--light-grey);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --space-lg: 60px;
        --space-xl: 80px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container {
        padding: 0 var(--space-md);
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .trust-item {
        flex: 1;
        min-width: 200px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .local-areas {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --space-xl: 100px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    
    .container {
        max-width: 1140px;
    }
    
    /* Show desktop nav */
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-desktop a {
        padding: 10px 16px;
        color: var(--dark-charcoal);
        font-weight: 500;
        border-radius: var(--radius-sm);
        font-size: 0.95rem;
    }
    
    .nav-desktop a:hover {
        background: var(--light-grey);
        color: var(--primary-blue);
    }
    
    .nav-desktop .dropdown {
        position: relative;
    }
    
    .nav-desktop .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: var(--space-xs) 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
    }
    
    .nav-desktop .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-desktop .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        border-radius: 0;
    }
    
    /* Hide mobile elements */
    .menu-toggle {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }
    
    /* Header actions */
    .header-whatsapp {
        width: auto;
        padding: 10px 20px;
        border-radius: var(--radius-md);
        gap: 8px;
    }
    
    .header-whatsapp span {
        display: inline;
    }
    
    /* Hero */
    .hero {
        padding: 140px 0 var(--space-xl);
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    /* Grids */
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }
    
    /* Floating WhatsApp */
    .whatsapp-float {
        width: auto;
        padding: 16px 24px;
        border-radius: 50px;
        gap: 10px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float-text {
        display: inline;
        font-weight: 600;
    }
    
    .local-areas {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: var(--space-md); }
.hidden-mobile { display: none; }

@media (min-width: 768px) {
    .hidden-mobile { display: block; }
    .hidden-desktop { display: none; }
}
