/*--------------------------------------------------------------
Responsive Styles
--------------------------------------------------------------*/

/* Tablet */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .channel-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .leasing-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .menu-text {
        display: block;
        font-weight: 600;
        font-size: 0.875rem;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        padding: 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation.toggled {
        display: flex;
    }
    
    #primary-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    #primary-menu > li {
        width: 100%;
        border-bottom: 1px solid #E5E5E5;
    }
    
    #primary-menu > li > a {
        padding: 0.75rem 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        background: transparent;
        display: none;
    }
    
    #primary-menu > li.menu-item-has-children.active .sub-menu {
        display: block;
    }
    
    .header-contact {
        margin: 1rem 0 0;
        width: 100%;
    }
    
    /* Homepage */
    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin: 0 auto 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-mockup {
        max-width: 60%;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Services */
    .service-category {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .channel-list {
        grid-template-columns: 1fr;
    }
    
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leasing-services {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Frequencies */
    .frequency-tools {
        flex-direction: column;
    }
    
    .filter-wrapper {
        min-width: auto;
    }
    
    .frequency-table {
        font-size: 0.8125rem;
    }
    
    .frequency-table th,
    .frequency-table td {
        padding: 0.5rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Blog */
    .posts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .channel-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Minimal Top Bar Style */
.top-bar {
    background: #282929;
    color: #FFFFFF;
    padding: 0.4rem 0;
    font-size: 0.75rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-text i {
    color: #D4AF37;
    animation: heart-beat 2s ease-in-out infinite;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-social .social-link:hover {
    color: #D4AF37;
    transform: translateY(-1px);
}

.top-bar-social .social-link i {
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .top-bar-text span,
    .top-bar-social .social-link span {
        display: none;
    }
}

/* Minimal Footer Social - Icon Only */
.footer-follow-text {
    color: #A7A7A7;
    font-size: 0.875rem;
    margin: 1.25rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-follow-text i {
    color: #D4AF37;
    font-size: 0.75rem;
    animation: heart-beat-footer 2s ease-in-out infinite;
}

@keyframes heart-beat-footer {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social .social-link span {
    display: none;
}

.footer-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-social .social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.footer-social .social-link.x-twitter:hover {
    background: #000000;
    border-color: #000000;
}