/* =========================================
   RESPONSIVE.CSS
========================================= */



/* =========================================
   LARGE DESKTOPS
========================================= */

@media (min-width: 1600px) {

    .container {
        max-width: 1550px;
    }

    .hero-title {
        font-size: 7rem;
    }

    .section-title {
        font-size: 4.5rem;
    }

}



/* =========================================
   LAPTOPS
========================================= */

@media (max-width: 1200px) {

    .hero-content {
        padding-top: 130px;
    }

    .hero-title {
        font-size: 4.8rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .services-grid,
    .portfolio-grid,
    .benefits-grid,
    .process-steps,
    .testimonials-slider {
        gap: 2rem;
    }

}



/* =========================================
   TABLETS
========================================= */

@media (max-width: 992px) {

    /* NAVBAR */

    .navbar {
        padding: 18px 0;
    }

    .nav-menu {
        gap: 1.5rem;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 140px 0 100px;
    }

    .hero-content {
        padding-top: 40px;

        text-align: center;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1rem;

        max-width: 700px;

        margin:
            0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }

    .scroll-indicator {
        display: none;
    }


    /* SECTIONS */

    .services,
    .portfolio,
    .benefits,
    .process,
    .testimonials,
    .contact {
        padding: 100px 0;
    }


    /* GRIDS */

    .services-grid,
    .portfolio-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* CONTACT */

    .contact-content {
        padding: 4rem 3rem;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    /* GENERAL */

    .container {
        width: 92%;
    }

    .section {
        padding: 90px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 0.8rem;

        letter-spacing: 3px;
    }

    .section-title {
        font-size: 2.4rem;

        line-height: 1.3;
    }


    /* NAVBAR */

    .navbar {
        padding: 16px 0;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-logo {
        font-size: 1.6rem;
    }

    .nav-menu {
        display: none;
    }

    /* ========================================
    MOBILE NAVBAR
    ======================================== */

    @media (max-width: 768px) {

        .menu-toggle {
            display: block;

            background: none;
            border: none;

            color: var(--gold);

            font-size: 2rem;

            cursor: pointer;

            z-index: 1001;
        }



        .nav-menu {
            position: fixed;

            top: 0;
            right: -100%;

            width: 190px;
            height: 100vh;

            background: #0B1F3A;

            display: flex;
            flex-direction: column;

            align-items: flex-start;
            justify-content: center;

            gap: 30px;

            padding: 30px;

            transition: right 0.4s ease;

            z-index: 1000;
        }



        .nav-menu.active {
            right: 0;
        }



        .nav-menu a {
            font-size: 1.1rem;
        }

    }


    /* HERO */

    .hero {
        min-height: 100svh;

        padding:
            130px 0 80px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-tagline {
        font-size: 0.8rem;

        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3rem;

        line-height: 1.1;
    }

    .hero-description {
        font-size: 1rem;

        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: center;

        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;

        max-width: 320px;
    }

    .scroll-indicator {
        display: none;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 260px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }


    /* PORTFOLIO */

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card img {
        height: 320px;
    }

    .portfolio-info {
        padding: 1.5rem;
    }


    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 2rem;
    }


    /* PROCESS */

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 2.5rem 1.5rem;
    }


    /* TESTIMONIALS */

    .testimonials-slider {
        display: flex;

        overflow-x: auto;

        gap: 1.2rem;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        padding-bottom: 10px;
    }

    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 85%;

        scroll-snap-align: center;
    }


    /* CONTACT */

    .contact-content {
        padding: 3rem 2rem;

        border-radius: 24px;
    }

    .contact .section-title {
        font-size: 2.2rem;
    }


    /* FOOTER */

    .footer {
        padding-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 2.5rem;

        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links,
    .footer-social {
        align-items: center;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    /* HERO */

    .hero {
        padding:
            120px 0 70px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }


    /* BUTTONS */

    .btn,
    .btn-primary,
    .btn-secondary {
        width: 100%;

        max-width: 100%;

        padding:
            1rem 1.5rem;

        font-size: 0.95rem;
    }


    /* TITLES */

    .section-title {
        font-size: 2rem;
    }


    /* CARDS */

    .service-card,
    .portfolio-card,
    .benefit-item,
    .step-card,
    .testimonial-card {
        border-radius: 22px;
    }


    /* CONTACT */

    .contact-content {
        padding: 2.5rem 1.5rem;
    }

}



/* =========================================
   SHORT HEIGHT SCREENS
========================================= */

@media (max-height: 820px) {

    .scroll-indicator {
        display: none;
    }

}