/* ===== Mobile & Tablet Styles ===== */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
    }

    .logo-img {
        height: 40px;
    }

    .main-nav {
        display: none;
    }

    .header-actions .search-btn,
    .header-actions .cta-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 4px;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 2px;
        width: 100%;
        background: #333;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .mobile-nav {
        display: block;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-nav.active {
        max-height: 500px;
    }

    .mobile-menu {
        list-style: none;
        padding: 20px 0;
    }

    .mobile-menu li {
        border-bottom: 1px solid #f1f5f9;
    }

    .mobile-menu li:last-child {
        border-bottom: none;
    }

    .mobile-link {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .mobile-link:hover {
        background-color: #f8fafc;
        color: #2563eb;
    }

    .mobile-cta {
        display: block;
        margin: 15px 20px;
        padding: 12px 20px;
        background: #2563eb;
        color: white;
        text-decoration: none;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .mobile-cta:hover {
        background: #1d4ed8;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .footer-brand {
        text-align: center;
        gap: 20px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-contact {
        align-items: center;
        gap: 12px;
    }

    .phone-link,
    .email-link {
        justify-content: center;
        font-size: 13px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column:nth-child(2) {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-menu {
        gap: 10px;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 15px 0;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 15px;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-legal {
        gap: 15px;
    }

    .legal-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
        padding: 0 10px;
    }

    .logo-img {
        height: 35px;
    }

    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }

    .footer-container {
        padding: 0 10px;
    }

    .footer-brand {
        gap: 15px;
    }

    .footer-links {
        gap: 25px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-link {
        font-size: 12px;
    }

    .mobile-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .mobile-cta {
        margin: 10px 15px;
        padding: 10px 15px;
        font-size: 14px;
    }
}
