/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

/* Tablets and Small Desktops (768px - 1023px) */
@media (max-width: 1023px) {
    .mobile-menu-close{
        display: block;
    }

    .hero {
        padding: 15px 5%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .services-section {
        padding: 60px 5%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .target-section {
        padding: 60px 5%;
    }
    
    .target-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .target-card {
        height: 180px;
    }
    
    .projects-section {
        padding: 60px 5%;
    }
    
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .project-card img {
        height: 220px;
    }
    
    .contact-cta-section {
        padding: 60px 5%;
    }
    
    .contact-cta-container {
        gap: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-banner {
        padding: 40px 5%;
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 1.4rem;
    }
    
    .cta-actions {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    footer {
        padding: 50px 5% 20px 5%;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
}

/* Mobile Devices (480px - 767px) */
@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 20px 4%;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* .scroll-section {
        min-height: 100vh;
    } */

    .hero-video {
        object-position: center center;
    }
    
    .navbar {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px 0;
    }

    .logo-image {
        width: 180px;
        margin-left: -8px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .navbar-actions {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-options {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
        padding: 80px 30px 40px;
        background: rgba(5,11,17,0.98);
        backdrop-filter: blur(10px);
        border-radius: 0;
        box-shadow: none;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
        z-index: 9999;
    }

    .navbar-options.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-menu-close {
        position: absolute;
        top: 54px;
        right: 18px;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10000;
    }

    .mobile-menu-close i {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        z-index: 1001;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        align-items: center;
    }
    
    .nav-links a {
        font-size: 0.7rem;
    }
    
    .btn-whatsapp {
        justify-content: center;
        font-size: 0.7rem;
        padding: 10px 14px;
    }

    .btn-whatsapp span {
        display: none;
    }
    
    .hero-content {
        margin-top: 30px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-cyan, .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .about-section {
        padding: 60px 4%;
    }

    .about-intro-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }

    .about-values-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .about-values-grid::-webkit-scrollbar {
        display: none;
    }

    .about-values-grid .value-card {
        min-width: min(84vw, 300px);
        scroll-snap-align: center;
    }

    .services-section {
        padding: 50px 4%;
    }
    
    .services-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 50px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px;
    }
    
    .service-card {
        min-width: min(80vw, 360px);
        flex: 0 0 min(80vw, 360px);
        max-width: min(80vw, 360px);
        padding: 15px;
        box-shadow: 0 0 7px rgba(0, 0, 0, 0.15), -5px 5px 7px rgba(0, 0, 0, 0.35);
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .target-section {
        padding: 50px 4%;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .target-card {
        height: 140px;
    }
    
    .target-overlay span {
        font-size: 0.75rem;
    }
    
    .target-overlay i {
        font-size: 1.3rem;
    }
    
    .projects-section {
        padding: 50px 4%;
    }
    
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-projects-outline {
        width: 100%;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-card img {
        height: 200px;
    }
    
    .feedbacks-section {
        padding: 60px 4%;
    }

    .feedbacks-nav {
        display: none;
    }

    .feedbacks-track {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .feedbacks-track::-webkit-scrollbar {
        display: none;
    }

    .feedback-card {
        min-width: min(88vw, 360px);
        flex: 0 0 min(88vw, 360px);
        max-width: min(88vw, 360px);
        scroll-snap-align: center;
    }

    .feedback-card.is-center {
        transform: none;
    }

    .feedback-card {
        min-width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-radius: 20px;
        scroll-snap-align: center;
    }

    .feedback-card.is-center {
        transform: none;
    }

    .contact-cta-section {
        padding: 50px 4%;
    }
    
    .contact-cta-header {
        margin-bottom: 30px;
    }
    
    .contact-cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .cta-highlight {
        padding: 25px;
    }
    
    .cta-content h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .cta-highlight-buttons {
        gap: 10px;
    }
    
    .cta-highlight-buttons a {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .cta-banner {
        padding: 30px 4%;
    }
    
    .cta-text h2 {
        font-size: 1.2rem;
    }
    
    .cta-actions p {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-outline-white {
        padding: 10px 15px;
        font-size: 0.75rem;
        width: 100%;
    }
    
    footer {
        padding: 40px 4% 20px 4%;
        font-size: 0.75rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-container h3 {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-contact p {
        margin-bottom: 8px;
        font-size: 0.75rem;
    }
    
    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* Extra Small (< 480px) */
@media (max-width: 479px) {
    body {
        font-size: 13px;
    }
    
    .hero {
        padding: 10px 3%;
    }
    
    .navbar {
        gap: 10px;
        padding: 8px 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 0.65rem;
    }
    
    .btn-whatsapp {
        font-size: 0.65rem;
        padding: 8px 10px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .btn-cyan, .btn-outline {
        padding: 8px 12px;
        font-size: 0.65rem;
        gap: 4px;
    }
    
    .services-section {
        padding: 40px 3%;
    }
    
    /* .services-grid {
        gap: 20px;
    } */
    
    .service-card {
        padding: 12px;
    }
    
    .service-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .target-section {
        padding: 40px 3%;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .target-card {
        height: 120px;
    }
    
    .target-overlay {
        gap: 8px;
    }
    
    .target-overlay span {
        font-size: 0.65rem;
    }
    
    .target-overlay i {
        font-size: 1.1rem;
    }
    
    .projects-section {
        padding: 40px 3%;
    }
    
    .projects-grid {
        gap: 10px;
    }
    
    .project-card img {
        height: 150px;
    }
    
    .project-info h4 {
        font-size: 0.75rem;
    }
    
    .project-info p {
        font-size: 0.65rem;
    }
    
    .contact-cta-section {
        padding: 40px 3%;
    }
    
    .contact-cta-header {
        margin-bottom: 25px;
    }
    
    .contact-form {
        gap: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .cta-highlight {
        padding: 20px;
    }
    
    .cta-content h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .cta-highlight-buttons {
        gap: 8px;
    }
    
    .cta-highlight-buttons a {
        padding: 8px 12px;
        font-size: 0.65rem;
    }
    
    .cta-banner {
        padding: 25px 3%;
    }
    
    .cta-text h2 {
        font-size: 1rem;
    }
    
    .cta-actions p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    footer {
        padding: 30px 3% 15px 3%;
        font-size: 0.7rem;
    }
    
    .footer-container {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-container h3 {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .footer-contact p {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 10px;
    }
    
    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}
