/* =========================================================
   ZIOR IA — STYLE
   IA + ESTRATEGIA + MARKETING
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --blue: #1677ff;

    --blue-light: #48a9ff;

    --blue-dark: #06152e;

    --background: #030712;

    --background-2: #071426;

    --white: #ffffff;

    --text: #eaf2ff;

    --muted: #91a4bf;

    --border: rgba(255,255,255,0.09);

    --border-blue: rgba(22,119,255,0.35);

    --container: 1180px;

    --radius: 24px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background:

        radial-gradient(
            circle at 15% 10%,
            rgba(22,119,255,0.14),
            transparent 28%
        ),

        radial-gradient(
            circle at 85% 30%,
            rgba(72,169,255,0.08),
            transparent 30%
        ),

        var(--background);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    cursor: pointer;

}


a {

    color: inherit;

}


/* =========================================================
   FONDO
========================================================= */

.background-glow {

    position: fixed;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    filter: blur(100px);

}


.glow-1 {

    width: 350px;

    height: 350px;

    background: rgba(22,119,255,0.07);

    top: 10%;

    left: -150px;

}


.glow-2 {

    width: 300px;

    height: 300px;

    background: rgba(72,169,255,0.06);

    right: -120px;

    top: 45%;

}


.glow-3 {

    width: 250px;

    height: 250px;

    background: rgba(22,119,255,0.05);

    bottom: 10%;

    left: 35%;

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 2000;

    background: rgba(3,7,18,0.70);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-bottom:
        1px solid var(--border);

}


.nav-container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    min-height: 76px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.logo {

    color: white;

    text-decoration: none;

    font-size: 25px;

    font-weight: 900;

    letter-spacing: -1.5px;

}


.logo span {

    color: var(--blue-light);

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-links a {

    color: #b9c7da;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s ease;

}


.nav-links a:hover {

    color: white;

}


.nav-button {

    border: 0;

    background: var(--blue);

    color: white;

    padding: 11px 18px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s;

}


.nav-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(22,119,255,0.35);

}


.mobile-menu-button {

    display: none;

    background: transparent;

    border: 0;

    color: white;

    font-size: 25px;

}


.mobile-menu {

    display: none;

}


/* =========================================================
   GENERAL
========================================================= */

section {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin-left: auto;

    margin-right: auto;

}


.section-label {

    display: inline-block;

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 18px;

}


.section-header {

    max-width: 760px;

    margin-bottom: 55px;

}


.section-header h2 {

    font-size:
        clamp(
            38px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 22px;

}


.section-header h2 span {

    color: var(--blue-light);

}


.section-header p {

    color: var(--muted);

    font-size: 17px;

    max-width: 680px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding-top: 145px;

    padding-bottom: 100px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 60px;

}


.hero-content {

    position: relative;

    z-index: 2;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 13px;

    border-radius: 50px;

    border:
        1px solid
        rgba(72,169,255,0.2);

    background:
        rgba(22,119,255,0.06);

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 25px;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--blue-light);

    box-shadow:
        0 0 12px var(--blue-light);

}


.hero h1 {

    font-size:
        clamp(
            48px,
            6vw,
            80px
        );

    line-height: 0.98;

    letter-spacing: -4px;

    max-width: 800px;

    margin-bottom: 28px;

}


.hero h1 span {

    color: var(--blue-light);

}


.hero-description {

    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

}


.btn {

    min-height: 52px;

    padding: 0 22px;

    border-radius: 12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 1px solid transparent;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition: 0.3s ease;

}


.btn-primary {

    background: var(--blue);

    color: white;

    box-shadow:
        0 15px 40px rgba(22,119,255,0.22);

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 20px 50px rgba(22,119,255,0.4);

}


.btn-secondary {

    background:
        rgba(255,255,255,0.035);

    border-color: var(--border);

    color: white;

}


.btn-secondary:hover {

    background:
        rgba(255,255,255,0.07);

}


.hero-trust {

    margin-top: 50px;

    display: flex;

    gap: 45px;

}


.hero-trust div {

    display: flex;

    flex-direction: column;

}


.hero-trust strong {

    font-size: 18px;

}


.hero-trust span {

    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-main-card {

    width: 390px;

    height: 450px;

    padding: 32px;

    border-radius: 32px;

    background:

        linear-gradient(
            145deg,
            rgba(17,51,94,0.85),
            rgba(4,15,32,0.95)
        );

    border:
        1px solid
        rgba(255,255,255,0.10);

    box-shadow:
        0 45px 110px rgba(0,0,0,0.55);

    transform:
        rotate(5deg);

    position: relative;

    overflow: hidden;

}


.hero-main-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    background: rgba(22,119,255,0.16);

    filter: blur(70px);

    top: -80px;

    right: -50px;

}


.hero-card-header {

    display: flex;

    justify-content: space-between;

    color: var(--blue-light);

    font-weight: 900;

    font-size: 13px;

}


.hero-card-content {

    margin-top: 100px;

    display: flex;

    flex-direction: column;

}


.hero-card-content small {

    font-size: 35px;

    font-weight: 900;

    letter-spacing: -2px;

}


.hero-card-content strong {

    font-size: 65px;

    line-height: 0.7;

    color: var(--blue-light);

}


.hero-card-line {

    width: 100%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            transparent
        );

    margin-top: 35px;

}


.hero-card-footer {

    position: absolute;

    bottom: 32px;

    left: 32px;

    right: 32px;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: 11px;

    letter-spacing: 1.5px;

}


.hero-card-footer span {

    color: var(--blue-light);

}


.hero-orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(72,169,255,0.10);

}


.orbit-1 {

    width: 480px;

    height: 480px;

}


.orbit-2 {

    width: 600px;

    height: 600px;

}


.floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    border-radius: 15px;

    background:
        rgba(6,21,46,0.85);

    border:
        1px solid
        rgba(255,255,255,0.09);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);

}


.floating-card > span {

    width: 35px;

    height: 35px;

    border-radius: 10px;

    background:
        rgba(22,119,255,0.16);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--blue-light);

}


.floating-card div {

    display: flex;

    flex-direction: column;

}


.floating-card strong {

    font-size: 12px;

}


.floating-card small {

    color: var(--muted);

    font-size: 10px;

}


.card-one {

    top: 80px;

    left: 0;

    animation: floating 5s ease-in-out infinite;

}


.card-two {

    right: -5px;

    bottom: 70px;

    animation: floating 6s ease-in-out infinite reverse;

}


@keyframes floating {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =========================================================
   RUTA
========================================================= */

.route-section {

    padding-top: 120px;

    padding-bottom: 120px;

}


.route-progress {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}


.progress-number {

    color: var(--blue-light);

    font-weight: 900;

    font-size: 12px;

}


.progress-line {

    width: 70px;

    height: 1px;

    background: var(--border);

}


.progress-text {

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 1.5px;

}


.route-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 17px;

}


.route-card {

    min-height: 300px;

    padding: 30px;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    border:
        1px solid
        var(--border);

    display: flex;

    flex-direction: column;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}


.route-card:hover {

    transform: translateY(-8px);

    border-color:
        var(--border-blue);

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.28);

}


.route-card.route-featured {

    background:
        linear-gradient(
            145deg,
            rgba(22,119,255,0.16),
            rgba(255,255,255,0.025)
        );

}


.route-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 900;

}


.route-icon {

    font-size: 28px;

}


.route-card h3 {

    font-size: 25px;

    line-height: 1.15;

    margin-top: 28px;

    margin-bottom: 13px;

}


.route-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 25px;

}


.route-button {

    margin-top: auto;

    background: transparent;

    border: 0;

    color: var(--blue-light);

    font-size: 13px;

    font-weight: 900;

    text-align: left;

    padding: 5px 0;

}


.route-button span {

    display: inline-block;

    transition: 0.3s;

}


.route-button:hover span {

    transform: translateX(5px);

}


/* =========================================================
   RUTA RESULTADO
========================================================= */

.route-result {

    margin-top: 35px;

    padding: 35px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22,119,255,0.18),
            transparent 35%
        ),

        rgba(255,255,255,0.035);

    border:
        1px solid
        rgba(22,119,255,0.25);

    display: none;

    animation:
        resultAppear 0.5s ease forwards;

}


.route-result.active {

    display: block;

}


@keyframes resultAppear {

    from {

        opacity: 0;

        transform:
            translateY(20px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.result-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.result-tag {

    color: var(--blue-light);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.result-close {

    background: transparent;

    border: 0;

    color: var(--muted);

    font-size: 27px;

}


.result-content {

    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 25px;

}


.result-icon {

    width: 70px;

    height: 70px;

    flex-shrink: 0;

    border-radius: 20px;

    background:
        rgba(22,119,255,0.12);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

}


.result-content small {

    color: var(--blue-light);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.result-content h3 {

    font-size: 30px;

    margin: 5px 0;

}


.result-content p {

    color: var(--muted);

    max-width: 700px;

}


.recommended-services {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

    margin-top: 30px;

}


.recommended-service {

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        rgba(255,255,255,0.025);

    cursor: pointer;

    transition: 0.3s;

}


.recommended-service:hover {

    border-color:
        var(--border-blue);

    transform:
        translateY(-3px);

}


.recommended-service strong {

    display: block;

    margin-bottom: 5px;

}


.recommended-service span {

    color: var(--blue-light);

    font-size: 12px;

}


.result-main-button {

    margin-top: 25px;

    padding: 14px 20px;

    border: 0;

    border-radius: 10px;

    background: var(--blue);

    color: white;

    font-weight: 800;

}


/* =========================================================
   SERVICIOS
========================================================= */

.services-section {

    padding-top: 100px;

    padding-bottom: 100px;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 430px;

    padding: 30px;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    border:
        1px solid
        var(--border);

    display: flex;

    flex-direction: column;

    transition: 0.35s;

}


.service-card:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--border-blue);

}


.service-card.featured {

    background:
        linear-gradient(
            145deg,
            rgba(22,119,255,0.18),
            rgba(255,255,255,0.025)
        );

}


.featured-label {

    position: absolute;

    top: 18px;

    right: 18px;

    padding: 5px 8px;

    border-radius: 50px;

    background:
        rgba(22,119,255,0.15);

    color: var(--blue-light);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


.service-number {

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 900;

}


.service-icon {

    font-size: 31px;

    margin-top: 25px;

}


.service-card h3 {

    font-size: 24px;

    line-height: 1.15;

    margin-top: 18px;

    margin-bottom: 12px;

}


.service-card > p {

    color: var(--muted);

    font-size: 14px;

}


.service-price {

    margin-top: 25px;

    font-size: 32px;

    font-weight: 900;

}


.service-price small {

    display: block;

    color: var(--muted);

    font-size: 11px;

    font-weight: 500;

}


.service-note {

    color: var(--muted);

    font-size: 11px;

}


.service-note del {

    color: #74869e;

}


.service-badge {

    margin-top: 8px;

    color: var(--blue-light);

    font-size: 11px;

    font-weight: 800;

}


.requirements {

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 20px;

}


.requirements span {

    color: var(--muted);

    font-size: 12px;

}


.service-button {

    margin-top: auto;

    padding-top: 25px;

    background: transparent;

    border: 0;

    color: var(--blue-light);

    text-align: left;

    font-size: 13px;

    font-weight: 900;

}


.service-button span {

    transition: 0.3s;

}


.service-button:hover span {

    margin-left: 5px;

}


/* =========================================================
   SERVICE DETAIL
========================================================= */

.service-detail {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin:
        0 auto 100px;

    display: none;

}


.service-detail.active {

    display: block;

    animation:
        resultAppear 0.5s ease forwards;

}


.detail-container {

    padding: 55px;

    border-radius: 30px;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(22,119,255,0.15),
            transparent 35%
        ),

        rgba(255,255,255,0.035);

    border:
        1px solid
        var(--border);

    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    gap: 60px;

}


.detail-icon {

    font-size: 42px;

    margin-bottom: 15px;

}


.detail-left h2 {

    font-size:
        clamp(35px,5vw,58px);

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 20px;

}


.detail-left > p {

    color: var(--muted);

    max-width: 600px;

}


.detail-price {

    font-size: 38px;

    font-weight: 900;

    margin-top: 25px;

}


.detail-button {

    margin-top: 25px;

    padding: 15px 22px;

    border: 0;

    border-radius: 11px;

    background: var(--blue);

    color: white;

    font-weight: 900;

}


.detail-right {

    display: flex;

    flex-direction: column;

    gap: 15px;

}


.detail-box {

    padding: 25px;

    border-radius: 18px;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        var(--border);

}


.detail-box > span {

    display: block;

    color: var(--blue-light);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 15px;

}


.detail-box ul {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.detail-box li {

    color: #c4d0df;

    font-size: 13px;

}


.detail-box p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================================
   TRABAJOS
========================================================= */

.works-section {

    padding-top: 100px;

    padding-bottom: 110px;

}


.video-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.video-card {

    overflow: hidden;

    border-radius: 22px;

    border:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,0.025);

}


.video-card video {

    width: 100%;

    display: block;

    aspect-ratio: 9 / 16;

    object-fit: cover;

}


.video-placeholder {

    aspect-ratio: 9 / 16;

    min-height: 420px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(22,119,255,0.10),
            rgba(255,255,255,0.015)
        );

}


.play-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: var(--blue);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    box-shadow:
        0 15px 40px
        rgba(22,119,255,0.25);

}


.video-placeholder h3 {

    margin-bottom: 8px;

}


.video-placeholder p {

    color: var(--muted);

    font-size: 13px;

}


/* =========================================================
   TESTIMONIOS
========================================================= */

.testimonials-section {

    padding-top: 90px;

    padding-bottom: 120px;

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.testimonial-card {

    padding: 30px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid
        var(--border);

}


.stars {

    color: var(--blue-light);

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.testimonial-card p {

    color: #c3cede;

    margin-bottom: 25px;

    font-size: 14px;

}


.testimonial-card strong {

    font-size: 13px;

}


/* =========================================================
   CTA
========================================================= */

.final-cta {

    position: relative;

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin:
        0 auto 100px;

    padding:
        85px 40px;

    border-radius: 35px;

    text-align: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(22,119,255,0.25),
            transparent 55%
        ),

        rgba(255,255,255,0.035);

    border:
        1px solid
        var(--border);

}


.final-cta h2 {

    position: relative;

    max-width: 850px;

    margin:
        0 auto 20px;

    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;

}


.final-cta h2 span {

    color: var(--blue-light);

}


.final-cta p {

    position: relative;

    max-width: 600px;

    margin:
        0 auto 30px;

    color: var(--muted);

}


.final-cta .btn {

    position: relative;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    border-top:
        1px solid
        var(--border);

    padding: 35px 0;

}


.footer-container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        auto;

    align-items: center;

    gap: 30px;

    color: var(--muted);

    font-size: 12px;

}


.footer-container p {

    margin-top: 5px;

}


.footer-links {

    display: flex;

    justify-content: center;

    gap: 25px;

}


.footer-links a {

    text-decoration: none;

}


.footer-links a:hover {

    color: white;

}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-floating {

    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 3000;

    border: 0;

    border-radius: 50px;

    background:
        #1677ff;

    color: white;

    padding:
        9px 16px 9px 9px;

    display: flex;

    align-items: center;

    gap: 10px;

    box-shadow:
        0 15px 45px
        rgba(22,119,255,0.35);

    transition:
        transform 0.3s,
        box-shadow 0.3s;

}


.whatsapp-floating:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 55px
        rgba(22,119,255,0.5);

}


.whatsapp-icon {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.18);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 17px;

}


.whatsapp-text {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    line-height: 1.15;

}


.whatsapp-text small {

    font-size: 9px;

    opacity: 0.75;

}


.whatsapp-text strong {

    font-size: 12px;

}


.whatsapp-pulse {

    position: absolute;

    inset: 0;

    border-radius: 50px;

    border:
        1px solid
        rgba(72,169,255,0.5);

    animation:
        whatsappPulse 2.2s infinite;

}


@keyframes whatsappPulse {

    0% {

        transform: scale(1);

        opacity: 0.8;

    }

    70% {

        transform: scale(1.08);

        opacity: 0;

    }

    100% {

        transform: scale(1.08);

        opacity: 0;

    }

}


/* =========================================================
   MODAL
========================================================= */

.modal {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.25s;

}


.modal.active {

    opacity: 1;

    visibility: visible;

}


.modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,0.78);

    backdrop-filter: blur(12px);

}


.modal-container {

    position: relative;

    z-index: 2;

    width:
        min(
            100%,
            580px
        );

    max-height: 92vh;

    overflow-y: auto;

    padding: 35px;

    border-radius: 25px;

    background:
        #081426;

    border:
        1px solid
        rgba(255,255,255,0.10);

    box-shadow:
        0 40px 100px
        rgba(0,0,0,0.65);

    transform:
        translateY(25px)
        scale(0.97);

    transition: 0.3s;

}


.modal.active .modal-container {

    transform:
        translateY(0)
        scale(1);

}


.modal-close {

    position: absolute;

    top: 15px;

    right: 18px;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.05);

    color: white;

    font-size: 24px;

}


.modal-header h2 {

    font-size: 32px;

    line-height: 1.1;

    margin-bottom: 10px;

}


.modal-header p {

    color: var(--muted);

    font-size: 14px;

}


.selected-service {

    margin:
        25px 0;

    padding: 15px;

    border-radius: 12px;

    background:
        rgba(22,119,255,0.08);

    border:
        1px solid
        rgba(22,119,255,0.18);

}


.selected-service span {

    display: block;

    color: var(--blue-light);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 5px;

}


.selected-service strong {

    font-size: 14px;

}


.form-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;

}


.form-group {

    margin-bottom: 16px;

}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 7px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border:
        1px solid
        var(--border);

    background:
        rgba(255,255,255,0.04);

    color: white;

    border-radius: 10px;

    padding: 13px;

    outline: none;

    font-size: 13px;

}


.form-group select option {

    background: #081426;

    color: white;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(22,119,255,0.08);

}


.form-group textarea {

    min-height: 105px;

    resize: vertical;

}


.form-submit {

    width: 100%;

    border: 0;

    padding: 15px;

    border-radius: 10px;

    background: var(--blue);

    color: white;

    font-weight: 900;

    transition: 0.3s;

}


.form-submit:hover {

    box-shadow:
        0 15px 35px
        rgba(22,119,255,0.3);

    transform:
        translateY(-2px);

}


.form-privacy {

    display: block;

    margin-top: 12px;

    color: #64758c;

    text-align: center;

    font-size: 10px;

}


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

@media (max-width: 1000px) {


    .nav-links {

        display: none;

    }


    .mobile-menu-button {

        display: block;

    }


    .mobile-menu {

        position: absolute;

        top: 76px;

        left: 0;

        width: 100%;

        padding: 20px;

        background:
            rgba(3,7,18,0.96);

        backdrop-filter: blur(20px);

        border-bottom:
            1px solid
            var(--border);

        display: none;

        flex-direction: column;

        gap: 8px;

    }


    .mobile-menu.active {

        display: flex;

    }


    .mobile-menu a,
    .mobile-menu button {

        padding: 14px;

        border-radius: 10px;

        text-decoration: none;

        border: 0;

        background:
            rgba(255,255,255,0.04);

        color: white;

        text-align: left;

        font-size: 14px;

    }


    .hero {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-trust {

        justify-content: center;

    }


    .hero-visual {

        min-height: 480px;

    }


    .route-grid,
    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .detail-container {

        grid-template-columns: 1fr;

    }


    .video-grid,
    .testimonial-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {


    section {

        width:
            calc(100% - 28px);

    }


    .nav-container {

        width:
            calc(100% - 28px);

    }


    .nav-button {

        display: none;

    }


    .hero {

        padding-top: 125px;

        padding-bottom: 70px;

    }


    .hero h1 {

        font-size: 46px;

        letter-spacing: -2.5px;

    }


    .hero-description {

        font-size: 15px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .hero-trust {

        gap: 20px;

    }


    .hero-trust strong {

        font-size: 15px;

    }


    .hero-visual {

        min-height: 390px;

    }


    .hero-main-card {

        width: 285px;

        height: 340px;

        padding: 25px;

    }


    .hero-card-content {

        margin-top: 70px;

    }


    .hero-card-content small {

        font-size: 28px;

    }


    .hero-card-content strong {

        font-size: 52px;

    }


    .orbit-1 {

        width: 350px;

        height: 350px;

    }


    .orbit-2 {

        width: 420px;

        height: 420px;

    }


    .floating-card {

        padding: 10px;

    }


    .card-one {

        left: 0;

        top: 50px;

    }


    .card-two {

        right: 0;

        bottom: 40px;

    }


    .section-header {

        margin-bottom: 35px;

    }


    .section-header h2 {

        font-size: 39px;

        letter-spacing: -1.5px;

    }


    .section-header p {

        font-size: 14px;

    }


    .route-section,
    .services-section,
    .works-section,
    .testimonials-section {

        padding-top: 75px;

        padding-bottom: 75px;

    }


    .route-grid,
    .services-grid,
    .video-grid,
    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .route-card {

        min-height: 270px;

    }


    .recommended-services {

        grid-template-columns: 1fr;

    }


    .result-content {

        align-items: flex-start;

    }


    .result-content h3 {

        font-size: 24px;

    }


    .route-result {

        padding: 23px;

    }


    .service-detail {

        width:
            calc(100% - 28px);

        margin-bottom: 70px;

    }


    .detail-container {

        padding: 28px 22px;

    }


    .detail-left h2 {

        font-size: 40px;

    }


    .video-placeholder {

        max-width: 350px;

        width: 100%;

        margin: auto;

    }


    .final-cta {

        width:
            calc(100% - 28px);

        padding:
            60px 22px;

        margin-bottom: 70px;

    }


    .final-cta h2 {

        font-size: 40px;

        letter-spacing: -1.5px;

    }


    .footer-container {

        width:
            calc(100% - 28px);

        grid-template-columns: 1fr;

        text-align: center;

    }


    .footer-links {

        justify-content: center;

    }


    .whatsapp-floating {

        right: 15px;

        bottom: 15px;

        padding:
            8px;

        width: 52px;

        height: 52px;

        justify-content: center;

    }


    .whatsapp-text {

        display: none;

    }


    .whatsapp-icon {

        width: 36px;

        height: 36px;

    }


    .modal {

        padding: 10px;

    }


    .modal-container {

        padding:
            28px 20px;

        max-height: 94vh;

    }


    .modal-header h2 {

        font-size: 27px;

    }


    .form-grid {

        grid-template-columns: 1fr;

        gap: 0;

    }

}