/* ==============================
   Pittie Logistics – Design System
   ============================== */

:root {

    /* Colors */
    --text-primary: #1A4174;
    --bg-primary: #FFFFFF;
    --bg-sections: #EAEEF4;
    /* --bg-danger: #E9292F; */
    --para-text: #4B5563;
    --bg-danger: #C81E1E;
    --bg-dark: #010169;
    --strong-black: #141415;
    --bg-light-blue: #0D4ABC;
    --bg-red-dark: #E9292F;

    /* ---------- Font Family ---------- */
    --font-primary: 'Poppins', sans-serif;


    /* ---------- Spacing Scale ---------- */
    --pm4: 4px;
    --pm8: 8px;
    --pm12: 12px;
    --pm16: 16px;
    --pm24: 24px;
    --pm32: 32px;
    --pm48: 48px;
    --pm64: 64px;

    /* ---------- Border Radius ---------- */
    --radius4: 4px;
    --radius8: 8px;
    --radius12: 12px;
    --radius16: 16px;
    --radius24: 24px;
    --radius999: 999px;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: inherit;
}

html {
    scroll-behavior: auto;
}


body {
    font-family: var(--font-primary);
    font-weight: 400;
    background-color: var(--bg-primary);
    line-height: 1.5;
    overscroll-behavior: smooth;
}

/* header skip part for seo */
.skip-link {
    position: fixed;
    top: -60px;
    left: 12px;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 6px;
    z-index: 99999;
}

.skip-link:focus {
    top: 12px;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

p {
    font-size: clamp(14px, 1.2vw, 16px);
    font-family: var(--font-primary);
    opacity: 0.9;
}

.bg-color-blue h1,
.bg-color-blue h2,
.bg-color-blue h3,
.bg-color-blue h4,
.bg-color-blue h5,
.bg-color-blue h6 {
    color: var(--text-primary);
}

.bg-color-white h1,
.bg-color-white h2,
.bg-color-white h3,
.bg-color-white h4,
.bg-color-white h5,
.bg-color-white h6 {
    color: var(--bg-primary);
}

p {
    color: var(--para-text);
}

/* ==============================
   Responsive Headings (clamp)
   ============================== */
.h1,
h1 {
    font-size: clamp(26px, 4vw, 48px);
    line-height: clamp(34px, 4.2vw, 58px);
    font-weight: 600;
}

.h2,
h2 {
    font-size: clamp(24px, 4vw, 42px);
    line-height: clamp(32px, 4vw, 52px);
    font-weight: 600;
}

.h3,
h3 {
    font-size: clamp(20px, 3.5vw, 28px);
    line-height: clamp(28px, 3.8vw, 42px);
    font-weight: 700;
}

.h4,
h4 {
    font-size: clamp(18px, 3vw, 24px);
    line-height: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
}

.h5,
h5 {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: clamp(24px, 3vw, 28px);
    font-weight: 600;
}

.h6,
h6 {
    font-size: clamp(14px, 2vw, 18px);
    line-height: clamp(22px, 2.6vw, 28px);
    font-weight: 600;
}


/* ==============================
   Header Styles
   ============================== */

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 6px;
    /* line ke liye space */
}

.navbar-brand {
    margin-left: 1rem;
    margin-right: 0;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: red;
    transition: width 0.3s ease;
}

/* ACTIVE link ke niche line */
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Optional: hover par bhi line aaye */
/* .navbar-nav .nav-link:hover::after {
    width: 100%;
} */

.navbar-nav .nav-link.active {
    color: var(--text-primary);
    font-weight: 700;

}

.navbar-nav a {
    color: var(--para-text);
}

.navbar-nav a:hover {
    color: var(--text-primary);
    font-weight: 700;
    transition: 0.5s ease;
}


/* ==============================
   Logistics CTA – Transport Services
   ============================== */

/* .logistics-cta-section {
    border-radius: var(--radius24);
    background: linear-gradient(90deg,
            #0B2E5F 0%,
            #1A4174 60%,
            #2C5FA6 100%);
    margin: 50px 10px;
} */

.cta-transport {
    border-radius: var(--radius24);
    margin: var(--pm48) 10px;

    /* Blue gradient exactly like image */
    background: linear-gradient(90deg,
            #0B2E5F 0%,
            #1A4174 60%,
            #2C5FA6 100%);
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bg-primary);
}

/* LEFT TEXT */
.cta-text {
    max-width: 650px;
}

.cta-text h4 {
    color: var(--bg-primary);
    margin-bottom: var(--pm8);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(14px, 1.2vw, 16px);
    margin-bottom: 0px;
}

/* BUTTON */
.cta-action .btn-primary {
    background-color: var(--bg-danger);
    /* box-shadow: 0 10px 24px rgba(233, 41, 47, 0.35); */
}

/* Arrow inside button */
.cta-arrow {
    font-size: 16px;
    margin-left: 4px;
    transform: translateY(-1px);
}

.cta-transport .container {
    padding: 40px 0;
}

.services-layout {
    padding: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-wrapper {
        flex-direction: column;
        gap: var(--pm24);
        text-align: center;
        padding: var(--pm32);
    }
}






/* ==============================
   Universal Button System
   ============================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--pm8);

    padding: 10px 28px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;

    border-radius: var(--radius12);
    border: none;
    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}

.btn-primary {
    background-color: var(--bg-danger);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background-color: var(--bg-red-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-danger);
    border: 1px solid var(--bg-danger);
}

.btn-outline:hover {
    background-color: var(--bg-danger);
    color: var(--bg-primary);
    transform: translateY(-2px);
}


a {
    text-decoration: none;
}

.btn-primary a {
    color: var(--bg-primary);
    gap: 10px;
    display: flex;
    align-items: center;
}

.btn-outline:hover a {
    color: var(--bg-primary);
}

.btn-outline a {
    color: var(--bg-danger);
    gap: 10px;
    display: flex;
    align-items: center;
}

button.btn-outline a svg {
    stroke: var(--bg-danger);
}

button.btn-outline:hover a svg {
    stroke: var(--bg-primary);
}

button.btn-primary a svg {
    stroke: var(--bg-primary);
}

button.btn-primary:hover a svg {
    stroke: var(--bg-primary);
}

button.btn-primary svg {
    stroke: var(--bg-primary);
}

button.btn-primary:hover svg {
    stroke: var(--bg-primary);
}

/* classes */
.container {
    width: 100%;
    max-width: 1150px;
    margin: auto;
}

.hero-section {
    margin: 0 10px;
}

/* sub heading */

.sub-heading {
    border: 1px solid var(--bg-danger);
    color: var(--bg-danger);
    padding: 6px 16px;
    border-radius: var(--radius999);
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 18px);
    font-family: var(--font-primary);
    width: fit-content;
}

.sub-heading-outline {
    display: inline-block;
    border: 1px solid var(--bg-primary);
    padding: 6px 16px;
    border-radius: var(--radius999);
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 18px);
    margin-bottom: var(--pm16);
    color: var(--bg-primary);
    width: fit-content;
}


.row {
    margin: 0;
    padding: 0;
}

.row .div-pm {
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {
    .row {
        flex-wrap: nowrap;
        display: flex;
    }

    .section {
        padding-block: var(--pm48);
    }

}

@media (max-width: 576px) {
    .row {
        flex-wrap: wrap;
        display: flex;
    }

    .section {
        padding: var(--pm48) 0;
    }

    .btn-primary a {
        font-size: 14px;
    }

    .page-banner {
        padding: 10px;
    }

}


/* Arrows */
.icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
    z-index: 2;
}

.icon-arrow:hover {
    color: var(--bg-primary);
    background-color: var(--bg-dark);
}








/* ==============================
   Footer
   ============================== */

.footer-section {
    background: var(--bg-primary);
    padding: 50px 0;
    border-top: 1px solid #e5e7eb;
    font-family: var(--font-primary);
    border-radius: 50px 50px 0 0;
    box-shadow: 0px 0px 40px -15px rgba(0, 76, 176, 0.5);
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Brand */
.footer-logo {
    /* max-width: 160px; */
    max-width: 102px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 18px;
    color: var(--strong-black);
    max-width: 260px;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: clamp(22px, 2.5vw, 26px);
    color: var(--strong-black);
    margin-bottom: 14px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 18px;
    color: var(--strong-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-danger);
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-contact i {
    color: var(--strong-black);
    font-size: 18px;
}

.footer-contact a {
    color: var(--strong-black);
    text-decoration: none;
    font-size: 18px;
}

.footer-contact a:hover {
    color: var(--bg-danger);
}

.mobile-get-in-touch {
    display: none;
}

.consumer-rights {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .sub-heading {
        margin: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }


}

@media (max-width: 576px) {
    .snap-section {
        min-height: 100% !important;
    }

    .footer-logo {
        max-width: 120px;
        margin-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-tagline {
        display: none;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 16px;
    }

    .footer-contact svg {
        width: 16px;
        height: 16px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    /* optional: hide existing footer contact column */
    .footer-grid .footer-col:last-child {
        display: none;
    }

    .mobile-get-in-touch {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .icon-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-get-in-touch .First {
        margin-bottom: 0px;
    }

    .mobile-get-in-touch .address {
        color: #141415;
        font-size: 16px;
        max-width: 320px;
    }

    .mobile-get-in-touch .divider {
        width: 50px;
        height: 2px;
        background: var(--bg-dark);
        display: block;
    }


    .mobile-get-in-touch .contact-row svg {
        width: 30px;
        height: 24px;
    }

    .mobile-get-in-touch h3 {
        font-size: calc(1.325rem + .9vw);
        font-weight: 500;
    }

    .mobile-get-in-touch .contact-row {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-get-in-touch .contact-row a {
        text-decoration: none;
        color: #141415
    }

    .footer-col-quicks {
        display: none;
    }

    .footer-col-services {
        display: none;
    }

    .consumer-rights p {
        font-size: 18px;
        color: #141415;

        padding: 50px 10px 0 10px;
    }

    .consumer-rights {
        display: contents;
    }

    .footer-section {
        padding: 0;
    }

}


/* Modal background */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal box */
.quote-modal-content {
    background: #fff;
    padding: 25px;
    width: 100%;
    max-width: 420px;
    border-radius: 10px;
    position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Form inputs */
.quote-modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .quote-modal-content {
        margin: 15px;
        padding: 20px;
    }
}