/* Responsive Design Improvements */

/* Global Responsive Settings */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 15px; /* Slightly smaller base font for tablets/mobile */
    }
    
    .container {
        padding: 0 16px; /* Smaller side padding on mobile */
    }
}

/* Header & Navigation */
@media (max-width: 900px) {
    .nav-links {
        display: none; /* Hide standard nav links on tablet/mobile */
    }
    
    .header .container {
        gap: 12px;
    }
    
    .logo-text .tagline {
        display: none; /* Simplify logo on small screens */
    }
    
    .btn-urgent span:last-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-urgent {
        padding: 8px 12px;
    }
    
    .btn-urgent span:last-child {
        display: none; /* Hide number on very small screens, show icon only */
    }
    
    .btn-urgent::after {
        content: "Bellen";
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .logo-text .brand {
        font-size: 1.1rem;
    }
}

/* Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        text-align: center;
        background-position: 65% center; /* Adjust image center for mobile */
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .hero-features {
        justify-content: center;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        width: 100%;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        min-width: unset;
        justify-content: center;
    }
    
    .btn-text {
        align-items: center;
        text-align: center;
    }
}

/* Services Grid */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .card {
        padding: 24px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Footer */
@media (max-width: 640px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-col {
        width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 16px;
    }
}