/* Responsive CSS - Mobile-first approach */

/* Base styles (mobile-first) */
.hero-title {
    font-size: 2.5rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 1rem;
}

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

.testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .floating-phone {
        top: 1rem;
        right: 1rem;
    }
    
    .phone-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-content {
        padding: 6rem 0 4rem;
    }
}

/* Tablet styles */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        max-width: 32rem;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 64rem;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .footer-info {
        text-align: center;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .container {
        max-width: 1200px;
    }
}

/* Section-specific responsive styles */
.about-section {
    padding: 4rem 0;
    background: hsl(var(--background));
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

.special-offer-section {
    padding: 4rem 0;
    background: hsl(var(--light-gray));
}

.offer-card {
    background: white;
    border: 2px solid hsl(var(--warm-orange));
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.offer-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.offer-percentage {
    font-size: 4rem;
    font-weight: bold;
    color: hsl(var(--warm-orange));
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.offer-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.offer-terms {
    font-size: 0.875rem;
    color: hsl(var(--professional-gray));
}

.benefits-section {
    padding: 4rem 0;
    background: hsl(var(--light-gray));
}

.testimonials-section {
    padding: 4rem 0;
    background: hsl(var(--background));
}

.cta-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-phone {
    font-size: 1.125rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .offer-title {
        font-size: 2.5rem;
    }
    
    .offer-percentage {
        font-size: 5rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .about-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .offer-card {
        padding: 3rem;
    }
    
    .offer-percentage {
        font-size: 6rem;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
}