/* Large Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    .section-title {
        font-size: 42px;
    }
    #packages::after {
        opacity: 0.6;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .hero-title {
        font-size: 48px;
    }
    .section-title {
        font-size: 36px;
    }
    .cta-title {
        font-size: 36px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        background: var(--nav-bg);
        backdrop-filter: var(--nav-blur);
        -webkit-backdrop-filter: var(--nav-blur);
        padding: 16px 0;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        box-shadow: var(--nav-shadow);
        z-index: 999;
        transition: background 0.3s ease, backdrop-filter 0.3s ease;
    }
    
    .nav-links.scrolled {
        background: rgba(15, 23, 42, 0.65);
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.25s ease-out;
    }
    
    .nav-links a {
        padding: 14px 20px;
        color: var(--text-primary);
        font-size: 15px;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .nav-cta {
        margin: 12px 16px 0;
        border-radius: 999px;
    }
    
    header .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero */
    .hero {
        padding-top: 110px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Sections */
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 30px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 40px 30px;
    }
    
    /* Coverage */
    .coverage-container {
        padding: 40px 30px;
    }
    
    .coverage-list li:hover {
        transform: none;
    }
    
    /* Footer */
    .footer-content {
        display: grid !important;
        grid-template-columns: 4fr 4fr;
        gap: 20px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
    }
    
    .footer-menu {
        grid-column: 1 / 2;
    }
    
    .footer-support {
        grid-column: 2 / 3;
    }
    
    .footer-menu,
    .footer-support {
        text-align: left;
    }
    
    .footer-menu a,
    .footer-support a {
        font-size: 13.5px;
        line-height: 1.4;
        white-space: nowrap;
    }
    
    .footer-menu i,
    .footer-support i {
        font-size: 10px;
        margin-top: 2px;
        margin-right: 6px;
    }
    
    .footer-menu li,
    .footer-support li {
        margin-bottom: 10px;
    }
    
    .footer-menu .footer-title,
    .footer-support .footer-title {
        font-size: 15px;
        white-space: nowrap;
    }
    
    /* Contact Map */
    .contact-map-embed iframe {
        height: 320px;
    }
    
    /* Intro Sound Button */
    .intro-sound-btn {
        bottom: 20px;
        right: 20px;
        padding: 8px 14px;
        font-size: 13px;
    }
    
    /* Coverage Button */
    .coverage-btn {
        all: unset;
        width: 100%;
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: var(--text-primary);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .coverage-btn:active {
        background: rgba(59, 130, 246, 0.2);
        transform: scale(0.98);
    }
    
    .coverage-btn i {
        font-size: 14px;
        color: var(--accent-blue);
    }
    
    /* Packages Animation */
    #packages::before {
        animation-duration: 26s;
    }
    
    #packages::after {
        opacity: 0.6;
    }
}

/* Mobile */
@media (max-width: 576px) {
    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 48px;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-text {
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 16px;
        margin-bottom: 32px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 14px;
        margin-top: 24px;
    }
    
    .cta-buttons .btn {
        min-width: 100%;
        height: 48px;
        font-size: 15px;
    }
    
    .cta-buttons .btn i {
        font-size: 18px;
    }
    
    .btn-whatsapp:hover,
    .btn-email:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Sections */
    section {
        padding: 64px 0;
    }
    
    #about {
        padding: 64px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .image-container {
        border-radius: 16px;
    }
    
    .image-container img {
        max-height: 220px;
        object-fit: cover;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-badge {
        font-size: 12px;
        padding: 8px 14px;
        top: 12px;
        right: 12px;
        border-radius: 8px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .about-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .about-content .section-badge {
        margin-bottom: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 24px;
    }
    
    .about-feature {
        align-items: center;
        text-align: left;
    }
    
    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    /* Cards */
    .service-card,
    .package-card,
    .advantage-card,
    .testimonial-card,
    .faq-item,
    .status-card,
    .blog-card,
    .career-card {
        padding: 24px;
    }
    
    .service-card h3,
    .advantage-card h3 {
        font-size: 20px;
    }
    
    .service-card p,
    .advantage-card p {
        font-size: 14px;
    }
    
    .services-grid,
    .packages-grid,
    .advantages-grid,
    .status-grid,
    .blog-grid,
    .career-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 36px;
    }
    
    .testimonial-text::before {
        top: -10px;
        left: -6px;
    }
    
    .testimonial-text::after {
        bottom: -20px;
        right: -6px;
    }
    
    .testimonial-author {
        gap: 14px;
    }
    
    .author-avatar {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
    
    .author-info h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .rating {
        font-size: 13px;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    /* Coverage */
    .coverage-container {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    #map {
        height: 240px;
        border-radius: 12px;
    }
    
    .coverage-map {
        margin-bottom: 20px;
    }
    
    #coverage h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .coverage-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .coverage-list li {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .coverage-list li i {
        font-size: 14px;
        color: var(--accent-blue);
    }
    
    .coverage-modal-content {
        margin: 0 16px;
    }
    
    /* CTA */
    .cta-section {
        padding: 48px 20px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .cta-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }
    
    /* Footer */
    footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-about .logo {
        margin-bottom: 12px;
    }
    
    .logo-custom {
        height: 36px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .footer-about p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-links ul {
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-links a i {
        font-size: 12px;
    }
    
    .footer-contact ul {
        text-align: left;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .footer-contact li {
        font-size: 14px;
        gap: 10px;
    }
    
    .footer-contact i {
        font-size: 14px;
        margin-top: 3px;
    }
    
    .copyright {
        font-size: 13px;
        padding-top: 24px;
        margin-top: 32px;
    }
    
    /* Navigation */
    .mobile-menu-btn {
        width: 34px;
        height: 34px;
        font-size: 20px;
        border-radius: 8px;
    }
    
    .nav-links {
        top: 56px;
        padding: 16px;
        gap: 16px;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 6px 0;
    }
    
    .nav-cta {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .footer-menu,
    .footer-support {
        width: 100%;
        padding: 0;
    }
}

/* Animation Keyframes */
@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes geoFloat {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}