/* Responsive Styles */

/* Large desktops and up */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* Desktops */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    /* Adjust section paddings */
    section {
        padding: 80px 0;
    }
    
    /* Header adjustments */
    .header-container {
        padding: 10px 0;
    }
    
    .main-nav ul li {
        margin-left: 20px;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    /* Services & Map */
    .services-map-grid {
        flex-direction: column;
    }
    
    .services-column,
    .map-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-column {
        margin-bottom: 30px;
    }
    
    .map-container,
    .map-container iframe {
        min-height: 500px;
    }
    
    /* About section */
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    /* Team section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact section */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    /* Header */
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
        transform: translateY(-150%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .language-switcher {
        margin: 20px 0 0;
        padding: 10px 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
    }
    
    /* Hero section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Services & Map */
    .services-map-container {
        padding: 60px 0;
    }
    
    .services-column {
        max-width: 100%;
    }
    
    .service-card {
        height: 220px;
    }
    
    /* About section */
    .about {
        padding: 80px 0;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    /* Team section */
    .team {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Contact section */
    .contact {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about,
    .footer-links,
    .footer-contact,
    .footer-newsletter {
        margin-bottom: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Small tablets and large phones */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    /* Typography */
    h1, .h1 {
        font-size: 2.5rem;
    }
    
    h2, .h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number, h3.stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #D4AF37 !important; /* Gold color with !important to ensure it overrides other styles */
    }
    
    /* Hero section */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Services & Map */
    .services-map-container {
        padding: 50px 0;
    }
    
    .service-card {
        height: 200px;
    }
    
    .map-container,
    .map-container iframe {
        min-height: 400px;
    }
    
    /* About section */
    .about {
        padding: 70px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Contact section */
    .contact {
        padding: 70px 0;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
}

/* Small phones */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography */
    h1, .h1 {
        font-size: 2.2rem;
    }
    
    h2, .h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Header */
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        top: 70px;
    }
    
    /* Hero section */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        margin-top: 30px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Services & Map */
    .services-map-container {
        padding: 40px 0;
    }
    
    .service-card {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-link {
        font-size: 0.8rem;
    }
    
    .map-container,
    .map-container iframe {
        min-height: 350px;
    }
    
    /* About section */
    .about {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Team section */
    .team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    /* Typography */
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Services & Map */
    .service-card {
        height: 160px;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-link {
        font-size: 0.75rem;
    }
    
    .map-container,
    .map-container iframe {
        min-height: 300px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
