*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
}

html, body{
    height:100%;
}

/* ================= HEADER ================= */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 40px;
    background: transparent;
    box-shadow: none;
    z-index: 999;
}

.header-inner{
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 25px;
    border-radius: 60px;
    background: rgba(0, 31, 63, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
}

.company-logo{
    height: 54px;
    width: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover{
    transform: scale(1.08);
}

.nav-center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-right{
    margin-left: auto;
    padding-right: 15px;
}

.nav-center a,
.nav-right a{
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-center a:hover,
.nav-right a:hover{
    color: #FF5E00;
    transform: scale(1.15);
}

.nav-center a::after,
.nav-right a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#FF5E00;
    transition:0.3s ease;
}

.nav-center a:hover::after,
.nav-right a:hover::after{
    width:100%;
}

/* ================= GET STARTED BUTTON (HEADER) ================= */

.get-started-cta{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    letter-spacing: 0.3px;
}

.get-started-cta i{
    font-size: 13px;
    color: #FF5E00;
    transition: color 0.3s ease;
}

.get-started-cta:hover{
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.get-started-cta:hover i{
    color: #FF8C00;
}

/* ================= SERVICES DROPDOWN (DESKTOP) ================= */

.nav-services-wrapper{
    position: relative;
    display: flex;
    align-items: center;
}

.nav-services-link{
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-services-chevron{
    font-size: 11px;
    transition: transform 0.3s ease;
    color: white;
}

.nav-services-wrapper:hover .nav-services-chevron{
    transform: rotate(180deg);
    color: #FF5E00;
}

.services-dropdown{
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 20, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 10px 8px;
    min-width: 260px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1000;
}

.nav-services-wrapper::after{
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 20px;
    background: transparent;
    display: block;
}

.services-dropdown::before{
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(0, 20, 50, 0.97);
}

.nav-services-wrapper:hover .services-dropdown{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item{
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 11px 16px !important;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 10px;
    transition: all 0.2s ease !important;
    white-space: nowrap;
    transform: none !important;
}

.dropdown-item i{
    width: 18px;
    text-align: center;
    color: #FF5E00;
    font-size: 15px;
    flex-shrink: 0;
}

.dropdown-item:hover{
    background: rgba(255, 94, 0, 0.15) !important;
    color: #FF5E00 !important;
    transform: translateX(4px) !important;
}

.dropdown-item:hover i{
    color: #FF5E00;
}

.dropdown-item::after{
    display: none !important;
}

@media (max-width: 768px) {
    .nav-services-wrapper{
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .services-dropdown{
        display: none !important;
    }
    .nav-services-chevron{
        display: none;
    }
    .nav-services-link{
        justify-content: center;
        width: 100%;
    }
}

/* ================= HERO ================= */

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(0,31,63,0.92), rgba(0,31,63,0.92));
    color:white;
    padding:50px;
}

.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:80px;
    color:white;
}

.nets-title{
    color:white;
    font-weight:900;
}

.gen-title{
    color:white;
    font-weight:900;
}

.tagline{
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    margin: 20px 0;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline::after{
    display: none !important;
}

.typing-text::after{
    content: "|";
    animation: blink 0.7s infinite;
    color: #FF5E00;
    font-weight: 300;
}

@keyframes blink{
    50%{ opacity:0; }
}

.typing-text{
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    display: inline-block;
    min-height: 40px;
}

.hero p{
    max-width:900px;
    font-size:20px;
    color:#ddd;
}

/* ---- Hero Get Started Button ---- */

.hero-get-started-btn{
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FF5E00, #FF8C00);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255,94,0,0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
    z-index: 2;
}

.hero-get-started-btn:hover{
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 15px 40px rgba(255,94,0,0.6);
}

.hero-get-started-btn i{
    font-size: 17px;
}

.btn-shine{
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.hero-get-started-btn:hover .btn-shine{
    left: 130%;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform: scale(1.05);
    filter: brightness(0.9);
    z-index:0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero.scrolled .hero-video{
    filter: blur(3px) brightness(0.4);
    transform: scale(1.12);
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0, 31, 63, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(8px);
    z-index:1;
}

.hero-content{
    transition: transform 0.8s ease, opacity 0.8s ease;
    will-change: transform, opacity;
}

.hero.scrolled .hero-content{
    opacity: 0.35;
    transform: translateY(-40px);
}

.hero-fallback{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
    display:none;
}

@media (prefers-reduced-motion: reduce){
    .hero-video{ display:none; }
    .hero-fallback{ display:block; }
}

.hero-content h1,
.hero-content h2,
.hero-content p{
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1{
    animation: fadeUp 1s ease forwards;
}

.hero-content h2{
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-content p{
    animation: fadeUp 1s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeUp{
    from{ opacity: 0; transform: translateY(30px); }
    to{ opacity: 1; transform: translateY(0); }
}

/* ================= SECTIONS (SHARED) ================= */

section{
    padding: 90px 10%;
}

h2{
    text-align:center;
    font-size:42px;
    color:#001f3f;
    margin-bottom:50px;
}

h2::after{
    content:'';
    display:block;
    width:90px;
    height:4px;
    background:#FF5E00;
    margin:15px auto;
}

/* ================= SHARED SCROLL ANIMATION BASE STATES ================= */

#about h2,
#vision .vision-content h2,
#why-choose h2,
#services h2,
#timeline h2,
#founder h2{
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#about h2.show,
#vision .vision-content h2.show,
#why-choose h2.show,
#services h2.show,
#timeline h2.show,
#founder h2.show{
    opacity: 1;
    transform: translateY(0);
}

/* ================= ABOUT SECTION ================= */

#about{
    background: #ffffff;
}

.about-split{
    display:flex;
    gap:60px;
    align-items:stretch;
    flex-wrap:wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.about-left{
    flex:1;
    min-width:300px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    padding: 45px 40px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-left.show{
    opacity: 1;
    transform: translateX(0);
}

.about-left h3{
    font-size: 30px;
    color: #FF5E00;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-left p{
    font-size: 16px;
    line-height: 2;
    color: rgba(255,255,255,0.88);
    text-align: justify;
}

.about-right{
    flex:1;
    min-width:300px;
    display:flex;
    flex-direction:column;
    gap:25px;
    justify-content: center;
}

.about-card{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f7f9fc;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-left: 5px solid #FF5E00;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateX(60px);
}

.about-card.show{
    opacity: 1;
    transform: translateX(0);
}

.about-card:nth-child(1){ transition-delay: 0.1s; }
.about-card:nth-child(2){ transition-delay: 0.3s; }

.about-card-icon{
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, #FF5E00, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 15px rgba(255,94,0,0.25);
}

.about-card-body h4{
    color: #001f3f;
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 700;
}

.about-card-body p{
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    text-align: justify;
}

.about-card:hover{
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background: #ffffff;
}

@media(max-width:768px){
    .about-split{ flex-direction:column; gap: 25px; }
    .about-left{ padding: 30px 25px; }
    .about-left p{ text-align: left; }
    .about-card-body p{ text-align: left; }
    .about-card{
        flex-direction: column;
        align-items: flex-start;
    }
    .about-card-icon{ margin-bottom: 5px; }
}

/* ================= VISION SECTION ================= */

#vision{
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 10%;
}

.vision-content{
    position: relative;
    z-index: 2;
    width: 100%;
}

#vision .vision-content h2{
    color: #ffffff;
    margin-bottom: 40px;
}

#vision .vision-content h2::after{
    background: #FF5E00;
    margin: 15px auto;
}

.vision-boxes{
    display: flex;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    overflow: hidden;
}

.vision-box{
    flex: 1;
    padding: 40px 35px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    color: #fff;
    transition: background 0.3s ease;
    opacity: 0;
}

.vision-box:nth-child(1){
    transform: translateX(-50px);
    transition: opacity 0.9s ease 0.1s, transform 0.9s cubic-bezier(0.25,1,0.5,1) 0.1s;
}

.vision-box:nth-child(3){
    transform: translateX(50px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s cubic-bezier(0.25,1,0.5,1) 0.3s;
}

.vision-box.show{
    opacity: 1;
    transform: translateX(0);
}

.vision-box:hover{
    background: rgba(255,255,255,0.08);
}

.vision-divider{
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
    margin: 20px 0;
}

.vision-box-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255,94,0,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FF5E00;
    border: 1px solid rgba(255,94,0,0.35);
    transition: all 0.3s ease;
    margin-top: 3px;
}

.vision-box:hover .vision-box-icon{
    background: #FF5E00;
    color: #ffffff;
    border-color: #FF5E00;
}

.vision-box-text h3{
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.vision-box-text p{
    color: rgba(255,255,255,0.80);
    line-height: 1.8;
    font-size: 15px;
}

@media(max-width:768px){
    #vision{ padding: 60px 5%; }
    .vision-boxes{
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 16px;
    }
    .vision-divider{ display: none; }
    .vision-box{
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 14px;
        padding: 28px 22px;
    }
    .vision-box-text h3{ font-size: 18px; }
}

/* ================= WHY CHOOSE US SECTION ================= */

#why-choose{
    background: #f4f7fb;
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card{
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    border-top: 4px solid #FF5E00;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
}

.why-card.show{
    opacity: 1;
    transform: translateY(0);
}

.why-card:nth-child(1){ transition-delay: 0.05s; }
.why-card:nth-child(2){ transition-delay: 0.15s; }
.why-card:nth-child(3){ transition-delay: 0.25s; }
.why-card:nth-child(4){ transition-delay: 0.05s; }
.why-card:nth-child(5){ transition-delay: 0.15s; }
.why-card:nth-child(6){ transition-delay: 0.25s; }

.why-icon{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF5E00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 94, 0, 0.28);
    transition: transform 0.4s ease;
}

.why-card h3{
    font-size: 19px;
    color: #001f3f;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p{
    font-size: 15px;
    color: #666;
    line-height: 1.75;
}

.why-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(255, 94, 0, 0.13);
}

.why-card:hover .why-icon{
    transform: scale(1.1) rotate(5deg);
}

/* ================= SERVICES SECTION ================= */

#services{
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    position: relative;
    color: #fff;
}

#services h2{
    color: #ffffff;
}

#services h2::after{
    background: #FF5E00;
}

.services-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card{
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 35px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 4px solid #FF5E00;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.show{
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1){ transition-delay: 0.05s; }
.service-card:nth-child(2){ transition-delay: 0.15s; }
.service-card:nth-child(3){ transition-delay: 0.25s; }
.service-card:nth-child(4){ transition-delay: 0.05s; }
.service-card:nth-child(5){ transition-delay: 0.15s; }
.service-card:nth-child(6){ transition-delay: 0.25s; }

.service-icon{
    width: 60px;
    height: 60px;
    background: rgba(255,94,0,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #FF5E00;
    border: 1px solid rgba(255,94,0,0.35);
    transition: all 0.4s ease;
}

.service-card h3{
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card p{
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-card ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-card li{
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    padding: 7px 0;
    padding-left: 25px;
    position: relative;
}

.service-card li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF5E00;
    font-weight: bold;
    font-size: 15px;
}

.service-card:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,94,0,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover h3{
    color: #FF5E00;
}

.service-card:hover .service-icon{
    background: #FF5E00;
    color: #ffffff;
    border-color: #FF5E00;
    transform: scale(1.1) rotate(5deg);
}

/* ---- Services CTA ---- */

.services-cta-wrap{
    text-align: center;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.services-cta-text{
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 24px;
    font-weight: 500;
}

.services-get-started-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #FF5E00, #FF8C00);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255,94,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-get-started-btn:hover{
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 45px rgba(255,94,0,0.55);
}

.services-get-started-btn i{
    font-size: 18px;
}

/* ================= JOURNEY SECTION ================= */

#timeline{
    background: #ffffff;
    overflow: hidden; /* keep section clipping */
}

/* -------------------------------------------------------
   JOURNEY WRAPPER — FIX FOR MOBILE SCROLL STUCK ISSUE
   The old overflow-x:auto on a non-touch-action element
   caused iOS/Android to capture the touch event and
   prevent vertical page scrolling. Fixed by:
   1. Making the wrapper non-scrollable on mobile (cards
      stack vertically instead of scrolling horizontally)
   2. Adding touch-action:pan-y so vertical swipes always
      reach the page scroller
   ------------------------------------------------------- */

.journey-wrapper{
    max-width: 1300px;
    margin: 0 auto;
    /* Allow horizontal overflow only on large screens */
    overflow-x: auto;
    /* Always allow vertical (page) scrolling on touch */
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* Disable text selection on all journey elements */
#timeline,
.journey-wrapper,
.journey-grid,
.journey-card,
.journey-year-badge,
.journey-icon,
.journey-arrow,
.journey-card h3,
.journey-card p{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.journey-grid{
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-width: 720px;
}

.journey-arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    margin-top: 68px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.journey-arrow.show{
    opacity: 1;
}

.journey-arrow svg{
    width: 64px;
    height: 24px;
    display: block;
    overflow: visible;
}

.journey-card{
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 22px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25,1,0.5,1);
    min-width: 0;
}

.journey-card.show{
    opacity: 1;
    transform: translateX(0);
}

.journey-card:nth-child(1){ transition-delay: 0.05s; }
.journey-card:nth-child(3){ transition-delay: 0.25s; }
.journey-card:nth-child(5){ transition-delay: 0.45s; }
.journey-card:nth-child(7){ transition-delay: 0.65s; }

.journey-arrow:nth-child(2){ transition-delay: 0.18s; }
.journey-arrow:nth-child(4){ transition-delay: 0.38s; }
.journey-arrow:nth-child(6){ transition-delay: 0.58s; }

.journey-year-badge{
    display: inline-block;
    background: #001f3f;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,31,63,0.25);
}

.journey-year-badge.future{
    background: linear-gradient(135deg, #FF5E00, #FFA500);
    box-shadow: 0 4px 12px rgba(255,94,0,0.35);
}

.journey-icon{
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #FF5E00, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(255,94,0,0.3);
    border: 4px solid #ffffff;
    outline: 3px solid rgba(255,94,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

.journey-card h3{
    font-size: 16px;
    color: #001f3f;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.journey-card p{
    font-size: 13px;
    color: #666;
    line-height: 1.75;
}

.journey-card:hover{
    background: #f7f9fc;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.journey-card:hover .journey-icon{
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 25px rgba(255,94,0,0.4);
}

/* ---------------------------------------------------
   MOBILE: stack cards vertically — no horizontal
   scroll container, so touch scrolling is never
   blocked by the child element
   --------------------------------------------------- */

@media(max-width: 768px){
    .journey-wrapper{
        overflow-x: visible; /* Remove horizontal scroll on mobile */
        overflow: visible;
        touch-action: auto; /* Let browser handle all touch naturally */
    }

    .journey-grid{
        flex-direction: column;
        min-width: unset; /* Remove forced min-width on mobile */
        gap: 0;
        align-items: stretch;
    }

    /* Arrows rotate to point downward on vertical layout */
    .journey-arrow{
        margin: 0 auto;
        width: 24px;
        height: 50px;
        transform: rotate(90deg);
    }

    .journey-arrow svg{
        width: 50px;
        height: 20px;
    }

    /* Reset horizontal slide animation — use vertical */
    .journey-card{
        transform: translateY(30px);
        width: 100%;
    }

    .journey-card.show{
        transform: translateY(0);
    }
}

@media(max-width:1000px) and (min-width:769px){
    .journey-wrapper{
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .journey-grid{
        min-width: 700px;
    }
}

/* ================= FOUNDER SECTION ================= */

#founder {
    background: #f0f4f8;
    position: relative;
}

#founder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,244,248,0.95) 0%, rgba(224,232,242,0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.founder-container{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.founder-card{
    display: flex;
    gap: 45px;
    max-width: 1000px;
    width: 100%;
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,31,63,0.10);
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25,1,0.5,1);
    border-top: 5px solid #FF5E00;
}

.founder-card.show{
    opacity: 1;
    transform: translateY(0);
}

.founder-photo-wrap{
    flex-shrink: 0;
    width: 200px;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.founder-card.show .founder-photo-wrap{
    opacity: 1;
    transform: translateX(0);
}

.founder-photo-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-info{
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.founder-card.show .founder-info{
    opacity: 1;
    transform: translateX(0);
}

.founder-info h3{
    font-size: 24px;
    color: #001f3f;
    font-weight: 700;
    margin-bottom: 6px;
}

.founder-info h4{
    font-size: 15px;
    color: #FF5E00;
    margin-bottom: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-info p{
    text-align: justify;
    line-height: 1.85;
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.founder-title-mobile-break{ display: none; }
.founder-title-desktop-dash{ display: inline; }

@media(max-width:768px){
    .founder-card{
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    .founder-photo-wrap{
        width: 160px;
        height: 180px;
        margin: 0 auto;
    }
    .founder-info h3{ font-size: 20px; }
    .founder-info p{ text-align: center; }
    .founder-title-mobile-break{ display: inline; }
    .founder-title-desktop-dash{ display: none; }
}

/* ================= CONTACT SECTION ================= */

#contact{
    background:#001f3f;
    color:white;
    padding-top:80px;
    padding-bottom:60px;
    box-sizing:border-box;
}

#contact h2{
    color:white;
    display: none;
}

.contact-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    color: white;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-col h3{
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
}

.contact-col h3::after{
    content:"";
    width: 40px;
    height: 2px;
    background: #FF5E00;
    display: block;
    margin-top: 8px;
}

.contact-col p{
    font-size: 14px;
    color: #dcdcdc;
    line-height: 1.8;
}

.contact-col a{
    display: block;
    color: #dcdcdc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.contact-col a:hover{
    color: #FF5E00;
    transform: translateX(5px);
}

.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #dcdcdc;
}

.contact-item i{
    color: #FF5E00;
    margin-top: 3px;
    flex-shrink: 0;
}

.social-icons{
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icons a{
    width: 44px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover{
    background:#4267B2;
    transform: translateY(-3px);
    color: white;
}

.social-icons a[aria-label="WhatsApp"]:hover{
    background: #25D366;
}

.footer-bottom{
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #ccc;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom a{
    color: #ccc;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom a:hover{
    color: #FF5E00;
}

@media(max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr 1fr; }
}

@media(max-width: 600px){
    .contact-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom{
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 30px;
        padding-top: 15px;
        justify-content: center;
    }
}

/* ================= SCROLL PROGRESS BAR ================= */

#scroll-progress{
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #FF5E00, orange);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ================= ACTIVE NAV HIGHLIGHT ================= */

.nav-center a.active,
.nav-right a.active{
    color: #FF5E00;
}

.nav-center a.active::after,
.nav-right a.active::after{
    width: 100%;
}

/* ================= HAMBURGER MENU ================= */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    html, body{
        overflow-x:hidden;
        width:100%;
    }

    section{
        padding: 60px 5% !important;
    }

    header{
        padding:10px 15px;
    }

    .header-inner{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:12px 18px;
        border-radius:50px;
    }

    .company-logo{
        height:55px !important;
    }

    .menu-toggle{
        display:block;
    }

    .nav-right{
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .nav-right .get-started-cta{
        display: inline-flex;
        justify-content: center;
    }

    .nav-center{
        position:absolute;
        top:80px;
        left:0;
        right:0;
        transform:none;
        display:none;
        flex-direction:column;
        gap:18px;
        padding:25px;
        background:rgba(0,31,63,0.95);
        backdrop-filter:blur(15px);
        border-radius:20px;
        margin:0 15px;
        box-shadow:0 10px 30px rgba(0,0,0,0.25);
    }

    .nav-center.mobile-open{
        display:flex;
    }

    .nav-center a{
        font-size:18px;
        text-align:center;
        cursor: pointer;
        pointer-events: auto;
    }

    .hero h1{
        font-size: 42px !important;
        line-height: 1.2;
    }

    .tagline{
        font-size: 20px !important;
        line-height: 1.4;
        max-width: 100%;
        margin: 12px auto;
        min-height: 60px;
    }

    .hero p{
        font-size: 16px;
        max-width: 100%;
    }

    .hero-get-started-btn{
        font-size: 15px;
        padding: 14px 30px;
    }

    .typing-text{
        display:block;
        min-height:40px;
        text-align:center;
    }

    h2{
        font-size: 28px !important;
        margin-bottom: 30px;
    }

    h2::after{
        width: 70px;
        margin: 10px auto;
    }

    .why-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card{
        padding: 25px 20px;
    }

    .services-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card{
        padding: 25px;
    }

    .service-card h3{ font-size: 18px; }
    .service-card p{ font-size: 14px; }

    .services-get-started-btn{
        font-size: 15px;
        padding: 15px 28px;
    }

    .services-cta-text{
        font-size: 15px;
    }

    .contact-grid{
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .contact-col{ text-align:left; }

    .social-icons{ justify-content:flex-start; }

    .header-inner > .nav-right{
        display: none !important;
    }

    .nav-center .nav-right{
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

/* ================= IMAGE & VIDEO PROTECTION ================= */

img{
    user-select: none;
    -webkit-user-drag: none;
}

a img{
    pointer-events: auto;
}

video{
    pointer-events: none;
    user-select: none;
}

/* ===============================================================
   GET STARTED MODAL — PROFESSIONAL ENTERPRISE STYLE
   =============================================================== */

/* Modal font override — DM Sans for crisp professional readability */
.modal-overlay,
.modal-overlay *{
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

.modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0, 5, 15, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.modal-open{
    opacity: 1;
    visibility: visible;
}

.modal-box{
    display: flex;
    width: 100%;
    max-width: 1080px;
    max-height: 94vh;
    border-radius: 0;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 40px 80px rgba(0,0,0,0.65),
        0 0 60px rgba(0,0,0,0.4);
    position: relative;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.38s ease;
}

.modal-overlay.modal-open .modal-box{
    transform: translateY(0);
    opacity: 1;
}

/* ---- LEFT PANEL ---- */

.modal-left{
    flex: 0 0 40%;
    background: #080e1a;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.modal-left::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF5E00 0%, #FF8C00 55%, rgba(255,94,0,0.1) 100%);
}

.modal-left::before{
    display: none;
}

.modal-left-inner{
    position: relative;
    z-index: 1;
    padding: 44px 38px 38px 42px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.modal-left-inner::-webkit-scrollbar{ width: 3px; }
.modal-left-inner::-webkit-scrollbar-track{ background: transparent; }
.modal-left-inner::-webkit-scrollbar-thumb{ background: rgba(255,255,255,0.15); }

.modal-brand-logo{
    margin-bottom: 26px;
}

.modal-brand-logo img{
    height: 46px;
    width: auto;
}

.modal-left-inner h2{
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: -0.2px;
}

.modal-left-inner h2::after{
    display: none;
}

.modal-tagline{
    font-size: 11.5px;
    color: #FF5E00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.modal-desc{
    font-size: 14.5px;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    margin-bottom: 24px;
}

.modal-divider{
    height: 1px;
    background: linear-gradient(90deg, rgba(255,94,0,0.45) 0%, rgba(255,255,255,0.06) 100%);
    margin-bottom: 24px;
}

.modal-how h4{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.modal-how h4 i{
    color: #FF5E00;
    font-size: 12px;
}

.modal-how ul{
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-how ul li{
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-how ul li:last-child{
    border-bottom: none;
}

.modal-how ul li i{
    color: #FF5E00;
    font-size: 11px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.modal-trust{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid #FF5E00;
    padding: 16px 18px;
    margin-bottom: 24px;
}

.modal-trust-badge{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.modal-trust-badge i{
    color: #FF5E00;
    font-size: 13px;
}

.modal-trust-badge span{
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-trust p{
    font-size: 13px;
    color: rgba(255,255,255,0.52);
    line-height: 1.7;
}

.modal-stats{
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}

.modal-stat{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    gap: 4px;
}

.modal-stat-num{
    font-size: 20px;
    font-weight: 800;
    color: #FF5E00;
    font-family: 'DM Sans', 'Montserrat', sans-serif;
    line-height: 1;
}

.modal-stat-label{
    font-size: 10.5px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.modal-stat-divider{
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
}

/* ---- RIGHT PANEL ---- */

.modal-right{
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
}

.modal-right::-webkit-scrollbar{ width: 4px; }
.modal-right::-webkit-scrollbar-track{ background: #f5f5f5; }
.modal-right::-webkit-scrollbar-thumb{ background: #ddd; }

.modal-right-header{
    background: #f5f8fc;
    border-bottom: 1px solid #e5eaf2;
    padding: 30px 40px 24px;
    flex-shrink: 0;
}

.modal-right-header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-step-indicator{
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-step{
    font-size: 11.5px;
    font-weight: 800;
    color: #b0bcc8;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border: 1.5px solid #dde4ed;
    line-height: 1;
}

.modal-step.active{
    color: #FF5E00;
    border-color: #FF5E00;
    background: rgba(255,94,0,0.06);
}

.modal-step-line{
    width: 18px;
    height: 1.5px;
    background: #dde4ed;
}

.modal-right-header h3{
    font-size: 22px;
    color: #001428;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.modal-form-subtitle{
    font-size: 14.5px;
    color: #7a8ea6;
    line-height: 1.55;
}

/* Form body */
#consultationForm,
#formSuccessMsg{
    padding: 30px 40px 36px;
    flex: 1;
}

/* Section labels inside form */
.cf-section-label{
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a9ab0;
    margin-bottom: 16px;
    margin-top: 4px;
    padding-bottom: 9px;
    border-bottom: 1px solid #edf0f5;
}

.cf-section-label:not(:first-child){
    margin-top: 22px;
}

/* ---- FORM FIELDS ---- */

.cf-field{
    margin-bottom: 16px;
}

.cf-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-field label{
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #2e3e50;
    margin-bottom: 7px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.cf-required{
    color: #FF5E00;
    margin-left: 2px;
}

.cf-optional{
    color: #aab8c8;
    font-weight: 400;
    font-size: 11px;
    margin-left: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.cf-input-wrap{
    position: relative;
    display: flex;
    align-items: center;
}

.cf-icon{
    position: absolute;
    left: 13px;
    color: #b0bcc8;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s ease;
}

/* Inputs */
.cf-input-wrap input,
.cf-input-wrap select,
.cf-input-wrap textarea{
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid #dde4ed;
    border-radius: 0;
    font-size: 15px;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    color: #1a2a3a;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.5;
}

.cf-input-wrap input::placeholder,
.cf-input-wrap textarea::placeholder{
    color: #b8c4d0;
    font-size: 14.5px;
}

.cf-input-wrap input:focus,
.cf-input-wrap select:focus,
.cf-input-wrap textarea:focus{
    border-color: #001f3f;
    box-shadow: 3px 0 0 0 #FF5E00 inset;
    background: #fafcff;
}

.cf-input-wrap:focus-within .cf-icon{
    color: #FF5E00;
}

.cf-select-wrap{
    position: relative;
}

.cf-select-arrow{
    position: absolute;
    right: 13px;
    color: #b0bcc8;
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.cf-input-wrap select{
    padding-right: 36px;
    cursor: pointer;
    font-size: 15px;
    color: #1a2a3a;
}

.cf-input-wrap select option[value=""]{
    color: #b8c4d0;
}

.cf-textarea-wrap{
    align-items: flex-start;
}

.cf-textarea-icon{
    top: 13px;
    align-self: flex-start;
}

.cf-input-wrap textarea{
    resize: vertical;
    min-height: 100px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.65;
}

/* Submit Button */
.schedule-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: #001428;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
    cursor: pointer;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    margin-top: 8px;
}

.schedule-btn::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #FF5E00;
    transition: width 0.3s ease;
}

.schedule-btn:hover:not(:disabled){
    background: #002850;
    box-shadow: 0 8px 24px rgba(0,31,63,0.28);
}

.schedule-btn:hover:not(:disabled)::before{
    width: 8px;
}

.schedule-btn:disabled{
    opacity: 0.65;
    cursor: not-allowed;
}

.schedule-btn-arrow{
    margin-left: auto;
    font-size: 13px;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.schedule-btn:hover:not(:disabled) .schedule-btn-arrow{
    transform: translateX(4px);
    opacity: 1;
}

.cf-privacy{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #a0adb8;
    margin-top: 12px;
    justify-content: center;
    letter-spacing: 0.2px;
}

.cf-privacy i{
    color: #FF5E00;
    font-size: 12px;
}

.form-inline-msg{
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    border-left: 3px solid transparent;
}

.form-inline-msg.error{
    background: #fef2f0;
    color: #b91c1c;
    border-left-color: #b91c1c;
}

.form-inline-msg.success{
    background: #f0fdf4;
    color: #15803d;
    border-left-color: #15803d;
}

/* ---- CLOSE BUTTON ---- */

.modal-close{
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    z-index: 10;
}

.modal-close:hover{
    background: #FF5E00;
    border-color: #FF5E00;
    color: #ffffff;
    transform: scale(1.08);
}

/* ---- SUCCESS STATE ---- */

.form-success{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    text-align: center;
    padding: 40px 40px 40px;
}

.form-success-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    width: 100%;
}

.form-success-icon{
    width: 72px;
    height: 72px;
    background: #001428;
    border-left: 4px solid #FF5E00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FF5E00;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.form-success-tag{
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #FF5E00;
    text-transform: uppercase;
}

.form-success h4{
    font-size: 22px;
    color: #001428;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-top: 2px;
}

.form-success p{
    font-size: 15px;
    color: #6a7a8a;
    line-height: 1.75;
    max-width: 320px;
}

.success-back-btn{
    margin-top: 12px;
    padding: 13px 32px;
    font-size: 14px;
    display: inline-flex;
    width: auto;
}

/* ---- MODAL RESPONSIVE ---- */

@media (max-width: 860px){
    .modal-overlay{
        padding: 0;
        align-items: stretch;
    }

    .modal-box{
        flex-direction: column;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        overflow: hidden;
    }

    .modal-left{
        display: none;
    }

    .modal-right{
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 100%;
    }

    .modal-right-header{
        flex-shrink: 0;
        padding: 20px 22px 16px;
        position: relative;
    }

    #consultationForm{
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 22px 100px;
    }

    #formSuccessMsg{
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 30px 22px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cf-row{
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-stats{
        display: none;
    }

    .modal-close{
        background: rgba(0,0,0,0.08);
        border-color: rgba(0,0,0,0.15);
        color: #333;
        top: 12px;
        right: 14px;
    }

    .modal-close:hover{
        background: #FF5E00;
        border-color: #FF5E00;
        color: #fff;
    }
}

@media (max-width: 500px){
    .modal-right-header{
        padding: 16px 18px 14px;
    }

    #consultationForm{
        padding: 16px 18px 100px;
    }

    #formSuccessMsg{
        padding: 24px 18px 40px;
    }

    .modal-right-header h3{
        font-size: 18px;
    }

    .modal-form-subtitle{
        font-size: 13px;
    }

    .schedule-btn{
        font-size: 14px;
        padding: 14px 16px;
    }

    .cf-input-wrap input,
    .cf-input-wrap select,
    .cf-input-wrap textarea{
        font-size: 16px; /* Prevents iOS auto-zoom */
    }
}
