:where([class^="ri-"])::before { 
    content: "\f3c2"; 
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .locations-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .contact-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-bar {
        display: none;
    }
    
    .floating-action-button {
        display: none;
    }

    /* Responsive font sizes for desktop */
    .text-xs {
        font-size: 0.875rem;
    }
    
    .text-sm {
        font-size: 1rem;
    }
    
    .text-base {
        font-size: 1.125rem;
    }
    
    .text-lg {
        font-size: 1.25rem;
    }
    
    .text-xl {
        font-size: 1.5rem;
    }
    
    .text-2xl {
        font-size: 2rem;
    }
    
    .text-3xl {
        font-size: 2.5rem;
    }
    
    .text-4xl {
        font-size: 3rem;
    }
    
    .text-5xl {
        font-size: 3.5rem;
    }
} 