/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#c1121f;
    --dark:#111111;
    --light:#f8f9fa;
    --gray:#666666;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#111;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff;
    padding:12px 0;
    box-shadow:0 2px 20px rgba(0,0,0,0.05);
    z-index:999;
}

.navbar-brand{
    padding:0;
    margin:0;
}

.logo{
    height:65px;
    width:auto;
    object-fit:contain;
}

.nav-link{
    color:#111 !important;
    font-weight:500;
    margin-left:18px;
    transition:0.3s;
    position:relative;
}

.nav-link:hover{
    color:var(--primary) !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* =========================
   BUTTONS
========================= */

.btn-main{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(193,18,31,0.2);
}

.btn-main:hover{
    background:#a60f1a;
    transform:translateY(-3px);
    color:#fff;
}

.btn-outline-custom{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
    background:#fff;
}

.btn-outline-custom:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    overflow:hidden;
    padding:80px 0 60px;
    background:#fff;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(193,18,31,0.05);
    border-radius:50%;
    top:-180px;
    left:-120px;
    z-index:0;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
    color:#111;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    font-size:18px;
    color:var(--gray);
    line-height:1.9;
    margin-bottom:35px;
    max-width:620px;
}

/* =========================
   HERO IMAGE + SLIDER
========================= */

.hero-image-wrapper{
    position:relative;
}

.hero-slider{
    position:relative;
}

.hero-slider .carousel-inner{
    border-radius:28px;
    overflow:hidden;
}

.hero-slider img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.hero-image{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* Smooth fade */

.carousel-item{
    transition:transform 1s ease-in-out;
}

/* =========================
   FLOATING CARD
========================= */

.floating-card{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#fff;
    padding:22px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    max-width:260px;
    z-index:20;
}

.floating-card h5{
    font-weight:700;
    margin-bottom:8px;
}

.floating-card p{
    font-size:14px;
    color:var(--gray);
    margin:0;
    line-height:1.6;
}

/* =========================
   HERO STATS
========================= */

.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:40px;
}

.hero-stats div{
    background:#fff;
    padding:14px 18px;
    border-radius:14px;
    box-shadow:0 5px 18px rgba(0,0,0,0.05);
    font-size:14px;
    font-weight:500;
}

.hero-stats i{
    color:var(--primary);
    margin-right:8px;
}

/* =========================
   SECTION DEFAULT
========================= */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:44px;
    font-weight:700;
    margin-bottom:15px;
}

.section-title p{
    color:var(--gray);
    max-width:720px;
    margin:auto;
    line-height:1.8;
}

/* =========================
   SERVICE CARDS
========================= */

.service-card{
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
    border:1px solid rgba(0,0,0,0.03);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.service-card i{
    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card h4{
    font-weight:600;
    margin-bottom:15px;
}

.service-card p{
    color:var(--gray);
    line-height:1.8;
}

/* =========================
   WHY SECTION
========================= */

.why-box{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:100%;
    transition:0.3s;
}

.why-box:hover{
    transform:translateY(-5px);
}

.why-box i{
    font-size:40px;
    color:var(--primary);
    margin-bottom:18px;
}

.why-box h4{
    margin-bottom:12px;
    font-weight:600;
}

.why-box p{
    color:var(--gray);
}

/* =========================
   STEPS
========================= */

.steps{
    text-align:center;
}

.step-number{
    width:75px;
    height:75px;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:28px;
    font-weight:700;
    margin:auto;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(193,18,31,0.2);
}

.steps h4{
    margin-bottom:15px;
    font-weight:600;
}

.steps p{
    color:var(--gray);
}

/* =========================
   BUSINESS SECTION
========================= */

.business-section{
    background:var(--dark);
    color:#fff;
    border-radius:30px;
    padding:70px 60px;
}

.business-section h2{
    font-size:44px;
    margin-bottom:20px;
    font-weight:700;
}

.business-section p{
    color:#ccc;
    line-height:1.9;
}

.industry-tags{
    margin-top:35px;
}

.industry-tags span{
    background:rgba(255,255,255,0.08);
    padding:12px 20px;
    border-radius:30px;
    display:inline-block;
    margin:8px;
    transition:0.3s;
}

.industry-tags span:hover{
    background:var(--primary);
}

/* =========================
   CTA SECTION
========================= */

.cta{
    background:linear-gradient(to right,#c1121f,#8f0d16);
    color:#fff;
    text-align:center;
    border-radius:30px;
    padding:80px 40px;
}

.cta h2{
    font-size:50px;
    margin-bottom:20px;
    font-weight:700;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
    line-height:1.9;
    color:rgba(255,255,255,0.9);
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:#fff;
    padding:80px 0 20px;
}

footer h5{
    margin-bottom:25px;
    font-weight:600;
}

footer p{
    color:#ccc;
}

footer ul{
    list-style:none;
    padding:0;
}

footer ul li{
    margin-bottom:12px;
    color:#ccc;
}

footer ul li a{
    color:#ccc;
    text-decoration:none;
    transition:0.3s;
}

footer ul li a:hover{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#999;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.08);
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar{
        padding:10px 0;
    }

    .hero{
        text-align:center;
        padding:70px 0;
    }

    .hero h1{
        font-size:48px;
    }

    .hero p{
        margin:auto;
        margin-bottom:35px;
    }

    .hero-image{
        height:420px;
        margin-top:50px;
    }

    .hero-slider img{
        height:420px;
    }

    .floating-card{
        left:20px;
        bottom:20px;
    }

    .hero-stats{
        justify-content:center;
    }

    .business-section{
        padding:50px 35px;
    }

    .cta h2{
        font-size:40px;
    }
}

@media(max-width:576px){

    .logo{
        height:55px;
    }

    .hero{
        padding:55px 0;
    }

    .hero h1{
        font-size:36px;
        line-height:1.2;
    }

    .hero p{
        font-size:16px;
    }

    .hero-image{
        height:320px;
        border-radius:22px;
    }

    .hero-slider img{
        height:320px;
    }

    .floating-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
        max-width:100%;
    }

    .hero-stats{
        gap:12px;
    }

    .hero-stats div{
        width:100%;
    }

    .section-title h2{
        font-size:34px;
    }

    .business-section h2{
        font-size:32px;
    }

    .cta{
        padding:60px 25px;
    }

    .cta h2{
        font-size:34px;
    }

    .whatsapp-btn{
        width:58px;
        height:58px;
        font-size:28px;
    }
}
.shopping-note{
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,0.08);

    font-size:15px;
    color:#555;
    line-height:1.8;
}

.shopping-note i{
    color:#c1121f;
    margin-right:10px;
}

.shopping-note strong{
    color:#111;
    font-weight:600;
}
.services-section{
    padding-top:20px;
}
/* =========================
   PAGE HERO
========================= */

.page-hero{
    padding:100px 0 70px;
    background:#f8f9fa;
    position:relative;
    overflow:hidden;
}

.page-hero::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(193,18,31,0.05);
    border-radius:50%;
    top:-150px;
    left:-100px;
}

.page-hero .container{
    position:relative;
    z-index:2;
}

.page-subtitle{
    display:inline-block;
    color:#c1121f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.page-hero h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}

.page-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* =========================
   CONTACT CARDS
========================= */

.contact-card{
    background:#fff;
    padding:35px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    height:100%;
    transition:0.3s;
    border:1px solid rgba(0,0,0,0.04);
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.contact-card i{
    font-size:42px;
    color:#c1121f;
    margin-bottom:20px;
}

.contact-card h4{
    font-weight:600;
    margin-bottom:12px;
}

.contact-card p{
    color:#666;
    margin-bottom:15px;
    line-height:1.7;
}

.contact-card a,
.contact-card span{
    color:#111;
    font-weight:600;
    text-decoration:none;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-wrapper{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.contact-info-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-info-list div{
    background:#f8f9fa;
    padding:16px 20px;
    border-radius:14px;
    font-weight:500;
}

.contact-info-list i{
    color:#c1121f;
    margin-right:10px;
}

.form-control{
    border:none;
    background:#f8f9fa;
    padding:16px 18px;
    border-radius:14px;
    font-size:15px;
    box-shadow:none !important;
}

.form-control:focus{
    background:#fff;
    border:1px solid rgba(193,18,31,0.2);
}

textarea.form-control{
    resize:none;
}

/* =========================
   RESPONSIVE CONTACT
========================= */

@media(max-width:991px){

    .page-hero{
        padding:80px 0 60px;
    }

    .page-hero h1{
        font-size:46px;
    }

    .contact-form-wrapper{
        padding:40px 30px;
    }
}

@media(max-width:576px){

    .page-hero h1{
        font-size:36px;
    }

    .page-hero p{
        font-size:16px;
    }

    .contact-form-wrapper{
        padding:30px 20px;
    }
}

/* =========================
   TRACKING PAGE
========================= */

.tracking-wrapper{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.tracking-features{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.tracking-features div{
    background:#f8f9fa;
    padding:16px 20px;
    border-radius:14px;
    font-weight:500;
}

.tracking-features i{
    color:#c1121f;
    margin-right:10px;
}

.tracking-card{
    background:#f8f9fa;
    padding:50px;
    border-radius:24px;
    text-align:center;
}

.tracking-icon{
    width:90px;
    height:90px;
    background:#c1121f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:auto;
    margin-bottom:25px;
}

.tracking-card h3{
    margin-bottom:12px;
    font-weight:700;
}

.tracking-card p{
    color:#666;
    margin-bottom:30px;
}

.tracking-form{
    display:flex;
    align-items:center;
    gap:15px;
}

.tracking-form .form-control{
    height:80px;
    border:none;
    background:#fff;
    border-radius:18px;
    padding:0 25px;
    font-size:16px;
    box-shadow:none;
}

.tracking-form .btn-main{
    height:80px;
    padding:0 35px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}

.status-card{
    background:#fff;
    padding:35px 25px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:100%;
}

.status-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto;
    margin-bottom:20px;
}

.status-card h5{
    margin-bottom:12px;
    font-weight:600;
}

.status-card p{
    color:#666;
    margin:0;
}

/* MOBILE */

@media(max-width:768px){

    .tracking-wrapper{
        padding:35px 25px;
    }

    .tracking-card{
        padding:35px 25px;
    }

    .tracking-form{
        flex-direction:column;
    }
}
@media(max-width:768px){

    .tracking-form{
        flex-direction:column;
    }

    .tracking-form .form-control,
    .tracking-form .btn-main{
        width:100%;
    }

}
/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff;
    padding:18px 0;
    transition:0.3s ease;
    box-shadow:0 2px 15px rgba(0,0,0,0.04);
}

.logo{
    height:65px;
    width:auto;
}

.navbar-nav{
    gap:10px;
}

.nav-link{
    color:#111 !important;
    font-weight:500;
    font-size:15px;
    transition:0.3s ease;
    position:relative;
}

.nav-link:hover{
    color:#c1121f !important;
}

/* ACTIVE LINE EFFECT */

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#c1121f;
    transition:0.3s ease;
}

.nav-link:hover::after{
    width:100%;
}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{
        background:#fff;
        padding:20px;
        border-radius:18px;
        margin-top:15px;
    }

    .navbar-nav{
        gap:5px;
    }

    .btn-main{
        width:100%;
        text-align:center;
    }

}
/* =========================
   PRICING
========================= */

.pricing-card{
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    height:100%;
    position:relative;
    transition:0.3s ease;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    border:1px solid #f1f1f1;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,0.08);
}

.featured-pricing{
    border:2px solid #c1121f;
}

.pricing-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#c1121f;
    color:#fff;
    padding:7px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.pricing-icon{
    width:75px;
    height:75px;
    background:#fff5f5;
    color:#c1121f;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.pricing-card h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
    color:#111;
}

.price{
    font-size:42px;
    font-weight:800;
    color:#c1121f;
    margin-bottom:20px;
}

.pricing-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.pricing-list{
    list-style:none;
    padding:0;
    margin:0;
}

.pricing-list li{
    padding:12px 0;
    border-bottom:1px solid #f1f1f1;
    color:#333;
    font-weight:500;
}

.pricing-list li:last-child{
    border-bottom:none;
}

/* SECTION TITLE */

.section-title{
    margin-bottom:60px;
    text-align:center;
}

.section-title h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
    max-width:700px;
    margin:auto;
}

/* MOBILE */

@media(max-width:768px){

    .pricing-card{
        padding:35px 25px;
    }

    .pricing-card h3{
        font-size:28px;
    }

    .price{
        font-size:34px;
    }

    .section-title h2{
        font-size:36px;
    }

}
/* =========================
   ADDITIONAL FEES
========================= */

.additional-fees{
    background:#fff8f8;
    border:1px solid rgba(193,18,31,0.08);
    border-radius:30px;
    padding:50px;
}

.fees-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.fee-item{
    background:#fff;
    border-radius:20px;
    padding:22px;
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.fee-icon{
    width:55px;
    height:55px;
    background:#fff5f5;
    color:#c1121f;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.fee-item h5{
    margin-bottom:8px;
    font-size:18px;
    font-weight:700;
}

.fee-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.fees-note{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,0.06);
    color:#777;
    line-height:1.8;
    font-size:15px;
}

/* MOBILE */

@media(max-width:768px){

    .additional-fees{
        padding:30px 20px;
    }

    .fees-grid{
        grid-template-columns:1fr;
    }

}
.quote-wrapper{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.quote-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.quote-info div{
    background:#f8f9fa;
    padding:18px 20px;
    border-radius:14px;
    font-weight:500;
}

.quote-info i{
    color:#c1121f;
    margin-right:10px;
}

.quote-card{
    background:#f8f9fa;
    border-radius:24px;
    padding:45px;
}

.quote-result{
    background:#fff;
    border-radius:22px;
    padding:35px;
    text-align:center;
}

.quote-price{
    font-size:52px;
    font-weight:800;
    color:#c1121f;
    margin-bottom:15px;
}

.quote-breakdown{
    display:flex;
    flex-direction:column;
    gap:15px;
    text-align:left;
    margin-top:30px;
}

.quote-breakdown div{
    display:flex;
    justify-content:space-between;
    padding-bottom:12px;
    border-bottom:1px solid #eee;
}

.btn-outline-red{
    background:transparent;
    border:2px solid #c1121f;
    color:#c1121f;
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s ease;
}

.btn-outline-red:hover{
    background:#c1121f;
    color:#fff;
}

@media(max-width:768px){

    .quote-wrapper{
        padding:35px 20px;
    }

    .quote-card{
        padding:30px 20px;
    }

    .quote-price{
        font-size:38px;
    }

}
.get-quote-link{
    color:#c1121f !important;
    font-weight:700;
}
.nav-link{
    padding:8px 12px !important;
}

