/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links {
        margin-top: 10px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 10px;
        background: var(--light-color);
    }
    
    .nav-right .btn {
        display: none;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

/* Small Devices (Phones, less than 768px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    /* Top Bar */
    .top-bar {
        display: none;
    }
    
    /* Logo */
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text strong {
        font-size: 20px;
    }
    
    .logo-text small {
        font-size: 12px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Section Title */
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title span {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* WhatsApp & Scroll Top */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 80px;
        right: 20px;
    }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575px) {
    html {
        font-size: 14px;
    }
    
    .container {
        max-width: 100%;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .newsletter-content h3 {
        font-size: 20px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 991px) and (orientation: landscape) {
    .nav-menu {
        padding: 60px 20px 20px;
    }
}