/* Override Bootstrap Icons font-display to swap for PageSpeed performance */
@font-face {
    font-family: 'bootstrap-icons';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/fonts/bootstrap-icons.woff2?e34853139ec4008761005a307044f514") format("woff2"),
         url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/fonts/bootstrap-icons.woff?e34853139ec4008761005a307044f514") format("woff");
}

:root{

    --navy:var(--black);
    --blue:var(--orange);
    --gold:#FD5E02;
    --orange:#FD5E02;
    --black:#020202;

    /* Testing overrides (Revert by changing --title-color back to var(--navy) and --subtitle-color to var(--blue)) */
    --title-color: var(--navy);
    --subtitle-color: var(--blue);
    --hover-color: #fd7e35;

    --text:#404041;
    --bg:#F8FAFC;
    --bg-warm:#FAF8F5;
    --white:#FFFFFF;

}

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

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:30px;

}

.hero-highlights span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    color:var(--white);

    font-size:.92rem;

    backdrop-filter:blur(8px);

}

.hero-highlights i{

    color:var(--gold);

}

@media(max-width:768px){

    .hero-highlights{

        gap:10px;

    }

    .hero-highlights span{

        font-size:.82rem;

    }

}

/* ==========================================
   ABOUT HIGHLIGHTS
========================================== */

.about-highlights{

    display:grid;

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

    gap:14px;

    margin-top:30px;

}

.about-highlights div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:500;

    color:var(--navy);

}

.about-highlights i{

    color:var(--gold);

    font-size:1rem;

}

.estimator-features i{

    color:var(--gold);

    font-size:1rem;

}

@media(max-width:768px){

    .about-highlights{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   Cost Estimator Note
========================================== */

.estimator-note{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

    padding:14px 18px;

    border-radius:12px;

    background:#fff8ec;

    color:var(--text);

    font-size:.92rem;

}

.estimator-note i{

    color:var(--gold);

}

.estimator-card textarea{

    min-height:46px;

    max-height:100px;

    resize:vertical;

}

.estimator-benefits{

    margin-top:30px;
    padding-left:20px;

}

.estimator-benefits li{

    margin-bottom:12px;

}

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

.cta-section-home p{

    max-width:700px;

    margin:20px auto 35px;

}

.cta-section-home{
    background: radial-gradient(circle at 80% 20%, rgba(253, 94, 2, 0.15), transparent 50%), 
                linear-gradient(135deg, #020202, #18110b, #020202);
    color:white;
    padding:100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-home h2{
    color:white;
}


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

.page-hero{

    position:relative;
    height:300px;

    display:flex;
    align-items:center;

    overflow:hidden;

}

.page-hero-image{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.page-hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(15,23,42,.92),
    rgba(15,23,42,.60)
    );

}

.page-hero .hero-title{
    margin-bottom:20px;
}


.page-hero-sm{

    min-height:45vh;

    display:flex;

    align-items:center;

}

.page-hero-sm .hero-title{

    margin-top:18px;

    font-size:3rem;

    line-height:1.15;

}

@media(max-width:991px){

    .page-hero-sm{

        min-height:40vh;

    }

    .page-hero-sm .hero-title{

        font-size:2.2rem;

    }

}

/* ==========================================
   FEATURE BOX
========================================== */

.feature-box{

    text-align:center;
    padding:40px 30px;
    border-radius:16px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
    transition: all 0.3s ease;
    height:100%;

}

.feature-box:hover{

    transform:translateY(-6px);
    border-color: rgba(253, 94, 2, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,.06);

}

.feature-box i{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:70px;
    margin-bottom:25px;
    border-radius:50%;
    font-size:2rem;
    color:var(--orange);
    background:rgba(253,94,2,0.08);
    transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;

}

.feature-box:hover i{
    background:var(--orange);
    color:#ffffff !important;
    transform: rotateY(360deg);
}

.feature-box h4{

    margin-bottom:12px;
    font-size:1.25rem;
    font-weight:700;
    color:var(--navy);

}

.feature-box p{

    margin-bottom:0;
    line-height:1.65;
    color:var(--text);
    font-size:0.95rem;

}

/* ==========================================
   BUTTON - OUTLINE NAVY
========================================== */

.btn-outline-navy{

    border:2px solid var(--navy);

    color:var(--navy);

    background:transparent;

    transition:.3s;

}

.btn-outline-navy:hover{

    background:var(--orange);

    color:#F8FAFC !important;

    border-color:var(--orange);

}

/* ==========================================
   ADDITIONAL BUSINESS SERVICES
========================================== */

.additional-services{

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

.additional-services-intro{

    max-width:760px;
    color:#64748b;

}


/* SERVICE CARD */

.additional-service-card{

    height:100%;

    display:flex;
    align-items:flex-start;

    gap:20px;

    padding:28px;

    background:var(--white);

    border:
    1px solid rgba(15,23,42,.08);

    border-radius:18px;

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

}

.additional-service-card:hover{

    transform:translateY(-5px);

    border-color:
    rgba(201,162,39,.55);

    box-shadow:
    0 18px 45px rgba(15,23,42,.08);

}


/* ICON */

.additional-service-icon{

    width:56px;
    height:56px;

    min-width:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
    rgba(201,162,39,.10);

    color:var(--gold);

    transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;

}

.additional-service-icon i{

    font-size:1.55rem;
    transition: transform 0.4s ease;

}

.additional-service-card:hover
.additional-service-icon{

    background:var(--gold);

    color:#F8FAFC;

    transform:rotate(-4deg);

}

.additional-service-card:hover .additional-service-icon i{
    transform: rotateY(360deg);
}


/* CONTENT */

.additional-service-content h4{

    margin-bottom:10px;

    color:var(--navy);

    font-size:1.08rem;

    font-weight:700;

    line-height:1.4;

}

.additional-service-content p{

    margin:0;

    color:#64748b;

    font-size:.94rem;

    line-height:1.7;

}


/* BOTTOM CTA */

.additional-services-cta{

    margin-top:55px;

    padding:35px 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    background:var(--navy);

    border-radius:20px;

    box-shadow:
    0 18px 45px rgba(15,23,42,.12);

}

.additional-services-cta h3{

    margin-bottom:8px;

    color:var(--white);

    font-size:1.5rem;

    font-weight:700;

}

.additional-services-cta p{

    margin:0;

    color:#cbd5e1;

}


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

@media (max-width:991.98px){

    .additional-services-cta{

        padding:32px;

    }

}


@media (max-width:767.98px){

    .additional-service-card{

        padding:24px;

        gap:16px;

    }

    .additional-service-icon{

        width:50px;
        height:50px;

        min-width:50px;

    }

    .additional-service-icon i{

        font-size:1.35rem;

    }

    .additional-services-cta{

        margin-top:40px;

        padding:30px 24px;

        flex-direction:column;

        align-items:flex-start;

    }

    .additional-services-cta .btn{

        width:100%;

    }

}


@media (max-width:575.98px){

    .additional-service-card{

        border-radius:15px;

    }

    .additional-service-content h4{

        font-size:1rem;

    }

    .additional-service-content p{

        font-size:.9rem;

    }

}

/* ==========================================
   PRIMARY SERVICE ICONS
========================================== */

.service-box-icon{

    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    border-radius:16px;

    background:
    rgba(201,162,39,.10);

    color:var(--gold);

    transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;

}

.service-box-icon i{

    font-size:1.75rem;

    color:inherit;
    transition: transform 0.4s ease;

}

.service-box:hover
.service-box-icon{

    background:var(--gold);

    color:#F8FAFC;

    transform:rotate(-4deg);

}

.service-box:hover .service-box-icon i{
    transform: rotateY(360deg);
}


/* ==========================================
   GLOBAL SPACING SYSTEM
========================================== */

.section-padding{
    padding-top:100px;
    padding-bottom:100px;
}

.section-padding-sm{
    padding-top:70px;
    padding-bottom:70px;
}

.section-padding-lg{
    padding-top:120px;
    padding-bottom:120px;
}

@media(max-width:991px){

    .section-padding{
        padding-top:60px;
        padding-bottom:60px;
    }

    .section-padding-sm{
        padding-top:40px;
        padding-bottom:40px;
    }

    .section-padding-lg{
        padding-top:80px;
        padding-bottom:80px;
    }

}





html, body {
    overflow-x: hidden;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--bg);
    padding-top:85px;

}

h1,h2,h3,h4,h5,h6{

    font-family:'Montserrat',sans-serif;
    color:var(--title-color);

}

/* GLASS NAVBAR */

.glass-navbar{

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

/* NAVIGATION */

.nav-link{

    font-weight:600;
    color:var(--navy) !important;
    margin:0 10px;

}

.nav-link:hover{

    color:var(--hover-color) !important;

}

.btn-gold{

    background:var(--orange);
    color:#F8FAFC !important;
    font-weight:600;
    padding:12px 24px;

}

.btn-gold:hover{

    background:var(--hover-color) !important;
    color:#020202 !important;

}

.btn-gold:disabled{

    background:#e2e8f0 !important;
    color:#475569 !important;
    cursor:not-allowed;
    opacity:1 !important;

}

/* MEGA MENU */

.mega-menu{

    width:1050px;
    max-width:95vw;

    left:50% !important;
    transform:translateX(-50%) !important;

    padding:30px 25px 25px;
    border:none;
    border-radius:16px;

}

.mega-card{

    padding:20px;
    border:1px solid #e2e8f0;
    border-radius:12px;
    background: #ffffff;
    text-align: center;
    transition:.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;

}

.mega-card:hover{

    transform:translateY(-5px);
    border-color: rgba(253, 94, 2, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,.05);

}

.mega-card i{

    font-size:32px;
    color:var(--orange);
    margin-bottom:12px;
    transition: transform 0.4s ease;
    display: inline-block;

}

.mega-card:hover i{
    transform: rotateY(360deg);
}

.mega-card h6{
    font-size:0.95rem;
    font-weight:600;
    margin:0;
    color:var(--navy);
    line-height:1.4;
}

.service-link{

    text-decoration:none;
    color:inherit;

}

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

.footer-section{

    background:var(--navy);

    color:#CBD5E1;

    padding:80px 0 30px;

}

/* Logo */

.footer-logo{

    height:90px;

    width:auto;

    margin-bottom:24px;

}

/* About */

.footer-about{

    color:#CBD5E1;

    line-height:1.9;

    margin:0;

    max-width:340px;

}

/* Footer Social Links */
.footer-social-links {
    margin-top: 1.5rem;
}
.footer-social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #CBD5E1;
    border-radius: 50%;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}
.footer-social-links .social-icon:not(:last-child) {
    margin-right: 10px;
}
.footer-social-links .social-icon:hover {
    background: var(--gold);
    color: var(--white, #ffffff);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(253, 94, 2, 0.35);
}

/* Section Titles */

.footer-title{

    color:var(--white);

    font-size:1.05rem;

    font-weight:600;

    margin-bottom:24px;

    position:relative;

    padding-bottom:12px;

}

.footer-title::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:45px;

    height:2px;

    background:var(--gold);

    border-radius:5px;

}

/* Links */

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--hover-color);

    padding-left:6px;

}

/* Contact */

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

}

.footer-contact li:first-child{

    align-items:flex-start;

}

.footer-contact i{

    color:var(--gold);

    font-size:1.1rem;

    flex-shrink:0;

}

.footer-contact li:first-child i{

    margin-top:4px;

}

.footer-contact span{

    color:#CBD5E1;

    line-height:1.7;

}

.footer-contact a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s;

}

.footer-contact a:hover{

    color:var(--hover-color);

}

/* Divider */

.footer-divider{

    border:0;

    border-top:1px solid rgba(255,255,255,.10);

    margin:55px 0 25px;

}

/* Bottom */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    color:#94A3B8;

    font-size:.92rem;

}

.footer-bottom a{

    color:var(--gold);

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:var(--white);

}

/* Responsive */

@media(max-width:991px){

    .footer-about{

        max-width:100%;

    }

    .footer-section{

        padding:60px 0 25px;

    }

    .footer-title{

        margin-top:15px;

    }


    .footer-logo{

        height:82px;

    }

    .footer-about{

        margin:0 auto;

    }

    .footer-title::after{

        left:0;

    }

    .footer-contact li{

        display:grid;

        grid-template-columns:22px 1fr;

        column-gap:14px;

        align-items:flex-start;

        margin-bottom:18px;

    }

    .footer-contact i{

        color:var(--gold);

        font-size:1rem;

        margin-top:4px;

    }

    .footer-contact span,

    .footer-contact a{

        color:#CBD5E1;

        line-height:1.8;

        text-decoration:none;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

        gap:8px;

    }

}

.footer-section{

    position:relative;

    background:var(--navy);

    color:#CBD5E1;

    padding:80px 0 30px;

}

.footer-section::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:var(--gold);

}

/* MOBILE */

@media (min-width: 992px) {

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}


@media(max-width:991px){

    body {
        padding-top: 70px !important;
    }

    .glass-navbar .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-brand img {
        height: 48px !important;
        width: 199px !important;
    }

    .dropdown-toggle::after {
        display: none !important;
    }

    .mega-menu{

        width:100%;
        left:0 !important;
        transform:none !important;

    }

    .navbar-cta{

        width:100%;

        margin-top:20px;
        margin-bottom:20px;

    }

    .cta-section-home{
        padding:55px 0;
    }

    .navbar-cta .btn{

        width:100%;

    }

}

.hero-section{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

.hero-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    90deg,
    rgba(15,23,42,.90),
    rgba(15,23,42,.65)
    );
}

.hero-title{
    font-size:4rem;
    color:white;
    margin:25px 0;
}

.hero-title span{
    color:var(--gold);
}

.hero-description{
    color:#dbe4f0;
    max-width:650px;
    font-size:1.1rem;
}

.hero-badge{
    display:inline-block;
    color:var(--gold);
    font-weight:600;
    letter-spacing:1px;
}

.hero-actions{
    margin-top:30px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

.stats-section{
    background:var(--navy);
    color:white;
    padding:70px 0;
}

.stats-section h3{
    color:var(--gold);
}

.section-header{
    margin-bottom:40px;
}

@media(max-width:991px){

    .section-header{
        margin-bottom:30px;
    }

}

.section-tag{
    color:var(--subtitle-color);
    font-weight:600;
}

.section-title{
    margin:15px 0 25px;
}

.services-home{
    background:var(--bg-warm);
}

.bg-light {
    background-color: var(--bg-warm) !important;
}

.service-box{
    background:white;
    border-radius:16px;
    padding:35px;
    height:100%;
    transition:.3s;
    display:flex;
    flex-direction:column;
}
.service-box .btn{

    margin-top:auto;

}

.service-box .btn{

    margin-top:24px;

    align-self:flex-start;

}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-box > i{


    align-self:center;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:80px;

    height:80px;

    margin-bottom:24px;

    border-radius:50%;

    font-size:2.4rem;

    color:var(--gold);

    background:rgba(249,160,27,.12);

}

.service-box h5{

    margin-bottom:15px;

}

.service-box p{

    margin-bottom:0;

    line-height:1.7;

}

.process-card{
    text-align:center;
    padding:30px;
}

.process-card span{
    font-size:40px;
    color:var(--gold);
    font-weight:700;
}



@media(max-width:991px){

    .hero-title{
        font-size: 2.2rem;
        line-height: 1.25;
        text-wrap: balance;
    }

}

/* CONSULTATION SECTION */

.consultation-section{
    background:#ffffff;
}

.consultation-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}

.consultation-list{

    list-style:none;
    padding:0;
    margin-top:30px;

}

.consultation-list li{

    margin-bottom:15px;
    padding-left:30px;
    position:relative;

}

.consultation-list li::before{

    content:'✓';

    position:absolute;
    left:0;

    color:var(--gold);
    font-weight:bold;

}

.container{
    max-width:1280px;
}

/* FAQ SECTION */

.accordion-item{
    border:none;
    border-radius:16px !important;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.accordion-button{
    padding:22px 25px;
    font-weight:600;
    color:var(--navy);
    background:#fff;
}

.accordion-button:not(.collapsed){
    background: linear-gradient(135deg, #2a2a2e, #131315) !important;
    color:var(--blue) !important;
    box-shadow:none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FD5E02'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}



.accordion-body{
    padding:20px 25px;
    line-height:1.8;
    color:var(--text);
}

/* ======================================================
   FORMS
====================================================== */

.form-label{
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569 !important;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control,
.form-select{
    height:58px;
    border:1px solid #e2e8f0;
    border-radius:12px;
    background:#fff;
    font-size:15px;
    transition:.25s ease;
    box-shadow:none;
}

textarea.form-control{

    min-height:160px;

    padding-top:18px;

    resize:vertical;

}

.form-control:focus,
.form-select:focus{
    border-color:var(--orange);
    box-shadow: 0 0 0 4px rgba(253, 94, 2, 0.12);
}

/* CONTACT PAGE */

/* CONTACT PAGE FORM */

.contact-info-card,
.contact-form-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    height:100%;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

}

.contact-item{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

.contact-item i{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(11,94,215,.1);

    color:var(--primary);

    font-size:18px;

    flex-shrink:0;

}

.contact-item strong{

    display:block;

    margin-bottom:4px;

}

.contact-item p{

    color:#64748b;

}

/* contact ne*/



.contact-card:hover{

    transform:translateY(-6px);

}

.contact-card i{

    font-size:35px;

    color:var(--blue);

    margin-bottom:15px;
    transition: transform 0.4s ease;
    display: inline-block;

}

.contact-card:hover i{
    transform: rotateY(360deg);
}

.office-card{

    background:#fff;

    padding:40px;

    border-radius:16px;

    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

/* SERVICE PAGE */

.service-hero{
    padding:120px 0 80px;
    background:#fff;
}

.min-vh-70{
    min-height:70vh;
}

.service-hero-title{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.2;
    margin:20px 0;
}

.service-hero-description{
    font-size:1.1rem;
    color:var(--text);
    max-width:600px;
}

@media(max-width:991px){

    .service-hero{
        padding:80px 0 60px;
    }

    .service-hero-title{
        font-size:2.4rem;
    }

}

/* OVERVIEW SECTION */

.overview-image img{

    width:100%;
    object-fit:cover;

}

.overview-point{

    display:flex;
    align-items:center;
    gap:10px;

    font-weight:600;

    color:var(--navy);

}

.overview-point i{

    color:var(--gold);
    font-size:18px;

}

/* BENEFITS SECTION */

.benefit-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    height:100%;

    transition:all .3s ease;

    border:1px solid #eef2f7;

}

.benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

.benefit-card i{

    font-size:34px;

    color:var(--blue);

    margin-bottom:20px;

    display:block;
    transition: transform 0.4s ease;

}

.benefit-card:hover i{
    transform: rotateY(360deg);
}

.benefit-card h5{

    margin-bottom:15px;

    font-weight:700;

}

.benefit-card p{

    margin-bottom:0;

    color:#64748b;

}

/* MODERN TIMELINE */

.timeline-modern{

    max-width:850px;
    margin:auto;
    position:relative;

}

.timeline-modern::before{

    content:'';

    position:absolute;

    left:24px;
    top:0;
    bottom:0;

    width:2px;

    background: linear-gradient(to bottom, var(--orange) 0%, var(--hover-color) 60%, #e2e8f0 100%);

}

.timeline-step{

    display:flex;

    gap:30px;

    position:relative;

    margin-bottom:45px;

}

.timeline-step:last-child{

    margin-bottom:0;

}

.timeline-marker{

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--orange);

    color:#ffffff !important;

    font-weight:700;
    font-size:1.1rem;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    position:relative;
    z-index:2;
    box-shadow: 0 0 0 6px rgba(253, 94, 2, 0.12);
    transition: all 0.3s ease;

}

.timeline-step:hover .timeline-marker {
    transform: scale(1.1);
    background: var(--hover-color);
    box-shadow: 0 0 0 8px rgba(253, 94, 2, 0.2);
}

.timeline-content{

    background:#ffffff;

    padding:25px 30px;

    border-radius:16px;
    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 30px rgba(0,0,0,.03);

    width:100%;
    transition: all 0.3s ease;

}

.timeline-step:hover .timeline-content {
    transform: translateX(6px);
    border-color: rgba(253, 94, 2, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

.timeline-content h3,
.timeline-content h4{

    margin-bottom:8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);

}

.timeline-content p{

    margin-bottom:0;

    color:var(--text);
    font-size: 0.95rem;
    line-height: 1.65;

}

/* DOCUMENTS SECTION */

.documents-card{

    background: linear-gradient(135deg, #020202 0%, #151515 100%);
    border-radius:20px;
    padding:30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border: 1px solid rgba(253, 94, 2, 0.2) !important;

}

.document-item{

    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 20px;
    background:#161618;
    border-radius:12px;
    border:1px solid #2e2e32;
    color: #ffffff;
    transition:.3s;
    height: 100%;

}

.document-item:hover{

    transform:translateY(-3px);
    border-color:var(--orange) !important;

}

.document-item i{

    font-size:1.3rem;
    color:var(--orange) !important;
    flex-shrink:0;

}

.document-item small{

    display:block;
    color:#cbd5e1;
    margin-top:2px;

}


.document-item:last-child{

    border-bottom: 1px solid #2e2e32;

}

.document-help-card{

    background: linear-gradient(135deg, #020202 0%, #151515 100%);

    border-radius:20px;

    padding:35px;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    border:1px solid rgba(253, 94, 2, 0.2) !important;

}

.document-help-card h4{
    color: #ffffff !important;
}

.document-help-card p{
    color: #e2e8f0 !important;
}

.document-help-card .btn{
    border-color: var(--orange) !important;
    color: var(--orange) !important;
}

.document-help-card .btn:hover{
    background-color: var(--orange) !important;
    color: #ffffff !important;
}

.document-help-card i{

    font-size:48px;

    color:var(--orange);

    margin-bottom:20px;

}

/* COST ESTIMATOR */

.calculator-card{
    background:#020202;
    padding:40px;
    border-radius:24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(253,94,2,0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
}

.calculator-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.calculator-header h3{
    margin:0;
    font-weight:700;
    color: #ffffff !important;
}

.calculator-header span{
    font-size:14px;
    color:#94a3b8;
}

.calculator-card .form-label {
    color: #e2e8f0 !important;
    font-weight: 500;
}

.calculator-card .form-select,
.calculator-card .form-control {
    background-color: #161618 !important;
    border: 1px solid #2e2e32 !important;
    color: #ffffff !important;
    border-radius: 12px;
}

.calculator-card .form-select:focus,
.calculator-card .form-control:focus {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 2px rgba(253,94,2,0.2) !important;
}

.calculator-card .form-check-input {
    background-color: #161618;
    border-color: #2e2e32;
}

.calculator-card .form-check-input:checked {
    background-color: var(--orange) !important;
    border-color: var(--orange) !important;
}

.calculator-card .form-check-label {
    color: #e2e8f0 !important;
}

#formProgress {
    background-color: var(--orange);
}

.calculator-card .progress {
    background-color: #1a1a1c !important;
}

/* Custom range slider styling */
.calculator-card input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #1e1e20 !important;
    border-radius: 3px;
    outline: none;
}

.calculator-card input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange) !important;
    cursor: pointer;
    transition: transform 0.1s;
}

.calculator-card input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calculator-card input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange) !important;
    cursor: pointer;
    transition: transform 0.1s;
    border: none;
}

/* ==========================================
INQUIRY FORM SECTION
========================================== */

.inquiry-form-wrapper{
background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:
0 20px 50px rgba(0,0,0,.08);
}

.inquiry-image img{
width:100%;
height:100%;
object-fit:cover;
min-height:600px;
}

.inquiry-form-content{

padding:50px;

}

.inquiry-form-content .btn{

min-width:220px;

}

@media(max-width:991px){

.inquiry-image img{

    min-height:300px;

}

.inquiry-form-content{

    padding:30px;

}

}

/* ======================================================
   INTL TEL INPUT
====================================================== */

.iti{

    width:100%;

}

.iti input{
    width:100% !important;
    height:58px !important;
    border:1px solid #e2e8f0 !important;
    border-radius:12px !important;
    padding-left:92px !important;
    font-size:15px;
    transition:.25s ease;
}

.iti input:focus{
    border-color:var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(253, 94, 2, 0.12) !important;
}

.iti__country-container{

    padding-left:12px;

}

.iti__selected-country{

    border-radius:16px 0 0 16px;

    background:transparent;

}

.iti__selected-country:hover{

    background: #f1f5f9;

}

.calculator-card .iti__selected-country:hover,
.consultation-container .iti__selected-country:hover{

    background: #161618 !important;

}

/* International Telephone Input (iti) Dark Mode Overrides */
.calculator-card .iti__country-list,
.consultation-container .iti__country-list {
    background-color: #161618 !important;
    border: 1px solid #2e2e32 !important;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    max-width: 320px;
}

.calculator-card .iti__search-input,
.consultation-container .iti__search-input {
    background-color: #020202 !important;
    border: 1px solid #2e2e32 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    outline: none !important;
}

.calculator-card .iti__search-input:focus,
.consultation-container .iti__search-input:focus {
    border-color: var(--orange) !important;
}

.calculator-card .iti__country,
.consultation-container .iti__country {
    background-color: #161618 !important;
    color: #e2e8f0 !important;
    padding: 8px 12px !important;
    transition: background-color 0.2s ease;
}

.calculator-card .iti__country:hover,
.calculator-card .iti__country.iti__highlight,
.consultation-container .iti__country:hover,
.consultation-container .iti__country.iti__highlight {
    background-color: #2e2e32 !important;
    color: #ffffff !important;
}

.calculator-card .iti__country-name,
.consultation-container .iti__country-name {
    color: #e2e8f0 !important;
}

.calculator-card .iti__dial-code,
.consultation-container .iti__dial-code {
    color: #94a3b8 !important;
}

/* Custom styling for standard input placeholders inside the dark card */
.calculator-card input::placeholder,
.calculator-card .form-control::placeholder {
    color: #94a3b8 !important;
    opacity: 0.8 !important;
}

/*
|--------------------------------------------------------------------------
| WhatsApp Widget
|--------------------------------------------------------------------------
*/

.whatsapp-widget{

position:fixed;

bottom:60px;

z-index:9999;

display:flex;

align-items:center;

overflow:hidden;

width:60px;

height:60px;

border-radius:999px;

background:#25D366;

color:#fff;

text-decoration:none;

box-shadow:0 12px 30px rgba(0,0,0,.18);

transition:all .35s ease;

}

.whatsapp-left{

left:25px;

}

.whatsapp-right{

right:25px;

}

.whatsapp-icon{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

flex-shrink:0;

}

.whatsapp-content{

opacity:0;

width:0;

white-space:nowrap;

overflow:hidden;

transition:all .3s ease;

}

.whatsapp-title{

display:block;

font-weight:700;

font-size:15px;

}

.whatsapp-subtitle{

display:block;

font-size:12px;

opacity:.9;

}

@media (hover:hover){

.whatsapp-widget:hover{

width:220px;

}

.whatsapp-widget:hover .whatsapp-content{

opacity:1;

width:140px;

padding-right:20px;

}

}

@media(max-width:768px){

.whatsapp-widget{

width:60px;

height:60px;

bottom:70px;

}

.whatsapp-content{

display:none;

}

.whatsapp-left{

left:20px;

}

.whatsapp-right{

right:20px;

}

}

/* ==========================================
   Consultation Modal
========================================== */

.consultation-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    visibility:hidden;

    opacity:0;

    transition:.3s ease;

    z-index:9999;

    padding:20px;

}

.consultation-modal.active{

    visibility:visible;

    opacity:1;

}


.consultation-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

    z-index:1;

}

.consultation-container{

    position:relative;

    width:100%;

    max-width:760px;

    max-height:90vh;

    overflow-y:auto;

    background: radial-gradient(circle at 0% 100%, rgba(253, 94, 2, 0.15), transparent 45%), radial-gradient(circle at 100% 0%, rgba(253, 94, 2, 0.15), transparent 45%), #0c0c0e;

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

    border-radius:20px;

    padding:34px 38px;

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

    transform:scale(.92);

    transition:.3s ease;

    z-index:2;

}

.consultation-modal.active .consultation-container{

    transform:scale(1);

}

.consultation-close{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

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

    border-radius:50%;

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

    color:#cbd5e1;

    font-size:18px;

    cursor:pointer;

    transition:.2s;

}

.consultation-close:hover{

    background:var(--orange);

    color:#fff;

}

.consultation-header{

    text-align:center;

    margin-bottom:22px;

}

.consultation-header h2{

    font-size:2rem;

    font-weight:700;

    margin-bottom:8px;

    color: var(--orange);

}

.consultation-header p{

    color:#94a3b8;

    margin-bottom:0;

}

.consultation-container .form-label{
    color: #cbd5e1 !important;
}

.consultation-container .form-control,
.consultation-container .form-select,
.consultation-container .iti input{
    background-color: rgba(22, 22, 24, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 12px;
}

.consultation-container .form-control:focus,
.consultation-container .form-select:focus,
.consultation-container .iti input:focus{
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(253, 94, 2, 0.15) !important;
    background-color: #161618 !important;
}

.consultation-container ::placeholder{
    color: #94a3b8 !important;
    opacity: 1 !important;
}

.consultation-container .btn-gold{

    width:100%;

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

    .consultation-container{

        padding:24px;

        border-radius:18px;

        max-height:95vh;

    }

    .consultation-header h2{

        font-size:1.45rem;

    }

    .consultation-close{

        width:38px;

        height:38px;

        top:14px;

        right:14px;

    }

}

/* Mobile submenu chevron button */
.mobile-chevron-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    margin-left: 8px;
    color: var(--navy) !important;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}
.mobile-chevron-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}
.mobile-chevron-btn[aria-expanded="true"] {
    background: rgba(0, 0, 0, 0.1);
}
.mobile-chevron-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.mobile-chevron-btn i {
    transition: transform 0.25s ease-in-out;
    display: inline-block;
    font-size: 0.8rem;
    line-height: 1;
}

/* ======================================================
   WHY CHOOSE US SECTION
   ====================================================== */
.why-choose-us {
    background: #ffffff;
}

.why-choose-us .max-width-700 {
    max-width: 700px;
    margin: 0 auto 50px;
}

.why-card {
    background: var(--bg-warm);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-color: rgba(253, 94, 2, 0.1);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(253, 94, 2, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-icon-box i {
    font-size: 24px;
    color: var(--orange);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon-box {
    background: var(--orange);
}

.why-card:hover .why-icon-box i {
    color: #ffffff;
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ======================================================
   404 ERROR PAGE
   ====================================================== */
.error-container {
    padding: 20px;
    z-index: 2;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--orange);
    text-shadow: 0 10px 30px rgba(253, 94, 2, 0.15);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
}

.error-glowing-glow {
    position: relative;
    display: inline-block;
}

.error-glowing-glow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(253,94,2,0.12) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

@media(max-width:767px) {
    .error-code {
        font-size: 6rem;
    }
}

/* ======================================================
   DARK THEME FOR PROCESS SECTION
   ====================================================== */
.process-section {
    background: radial-gradient(circle at 20% 30%, rgba(253, 94, 2, 0.08), transparent 45%), 
                linear-gradient(135deg, #020202, #0d0d0f, #020202);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-section .section-title {
    color: #ffffff !important;
}

.process-section p.section-description,
.process-section .section-header p {
    color: #94a3b8 !important;
}

.process-section .timeline-modern::before {
    background: linear-gradient(to bottom, var(--orange) 0%, var(--hover-color) 60%, #2e2e32 100%);
}

.process-section .timeline-content {
    background: #161618;
    border: 1px solid #2e2e32;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-section .timeline-step:hover .timeline-content {
    background: #1c1c1f;
    border-color: rgba(253, 94, 2, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.process-section .timeline-content h3,
.process-section .timeline-content h4 {
    color: var(--orange) !important;
}

.process-section .timeline-content p {
    color: #cbd5e1 !important;
}

/* Global placeholder styling */
input::placeholder,
textarea::placeholder,
.form-control::placeholder,
::placeholder {
    color: #94a3b8 !important;
    opacity: 0.55 !important;
}

select:invalid {
    color: #94a3b8 !important;
    opacity: 0.75 !important;
}
select option {
    color: #0f172a !important;
}

/* Custom Brand Accented Outline Button */
.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange) !important;
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: #F8FAFC !important;
    border-color: var(--orange);
}

/* Mobile Responsive Layout and Padding Refinements */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto !important;
        margin-top: -70px !important;
        padding-top: 150px !important;
        padding-bottom: 80px !important;
    }
    
    .hero-section .min-vh-100 {
        min-height: auto !important;
    }
    
    .page-hero,
    .page-hero-sm {
        min-height: auto !important;
        height: auto !important;
        padding-top: 45px !important;
        padding-bottom: 50px !important;
    }
}