
.banner-quote-form {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    padding: 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.banner-form-header {
    margin-bottom: 20px;
}

.banner-form-badge {
    display: inline-block;
    padding: 5px 11px;
    margin-bottom: 8px;
    border-radius: 30px;
    background: #f3f3f3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.banner-form-header h3 {
    margin: 0 0 6px;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
}

.banner-form-header p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.banner-form-group {
    margin-bottom: 14px;
}

.banner-form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
}

.banner-form-group label i {
    margin-right: 5px;
}

.banner-input {
    width: 100%;
    height: 45px;
    padding: 0 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    background: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.banner-input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.banner-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.banner-select-wrapper {
    position: relative;
}

.banner-select-wrapper .banner-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.banner-select-wrapper > i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    pointer-events: none;
}

.banner-submit-wrap {
    margin-top: 5px;
}

.banner-submit-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.banner-submit-btn:hover {
    transform: translateY(-2px);
}


/* TABLET */
@media (max-width: 991px) {

    .banner-quote-form {
        max-width: 100%;
        margin: 30px auto 0;
    }

}


/* MOBILE */
@media (max-width: 575px) {

    .banner-quote-form {
        padding: 20px;
        border-radius: 14px;
    }

    .banner-form-header h3 {
        font-size: 21px;
    }

    .banner-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
/* =========================================
   HERO + QUOTE FORM
========================================= */

.hero-main-row {
    min-height: 620px;
    padding-top: 55px;
    padding-bottom: 55px;
}


/* LEFT CONTENT */

.hero-content-box {
    /* max-width: 700px; */
}

.hero-main-title {
    max-width: 680px !important;
    margin: 0 0 25px !important;

    font-size: 52px !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;

    letter-spacing: -1px;
}

.hero-main-title span {
    display: inline !important;
}


/* DESCRIPTION */

.hero-customer-box {
    /* max-width: 620px; */
}
.hero-customer-content p {
    /* max-width: 610px; */
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 26px;
}


/* CALL BUTTON */

.hero-btn {
    display: inline-block;
    margin-right: 10px;
}

.hero-btn a.btn-default {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}


/* =========================================
   QUOTE FORM
========================================= */

.hero-quote-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.banner-quote-form {
    width: 100%;
    max-width: 480px;

    padding: 25px;

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.20);

    position: relative;
    z-index: 10;
}


.banner-form-header {
    margin-bottom: 18px;
}


.banner-form-badge {
    display: inline-block;

    padding: 5px 10px;

    margin-bottom: 8px;

    border-radius: 30px;

    background: #f2f2f2;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


.banner-form-header h3 {
    margin: 0 0 5px;

    font-size: 24px !important;
    line-height: 1.25 !important;

    font-weight: 700;
}


.banner-form-header p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: #777;
}


/* FORM GROUP */

.banner-form-group {
    margin-bottom: 13px;
}


.banner-form-group label {
    display: block;

    margin-bottom: 5px;

    font-size: 12px;

    font-weight: 600;
}


.banner-form-group label i {
    margin-right: 5px;
}


/* INPUT */

.banner-input {
    width: 100%;

    height: 44px;

    padding: 0 13px;

    border: 1px solid #ddd;

    border-radius: 7px;

    background: #fff;

    font-size: 13px;

    outline: none;

    transition: 0.3s ease;
}


.banner-input:focus {
    border-color: #ed1c24;

    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.08);
}


/* FROM TO */

.banner-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


/* SELECT */

.banner-select-wrapper {
    position: relative;
}


.banner-select-wrapper .banner-select {
    appearance: none;
    -webkit-appearance: none;

    padding-right: 40px;

    cursor: pointer;
}


.banner-select-wrapper > i {
    position: absolute;

    right: 13px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 11px;

    pointer-events: none;
}


/* SUBMIT */

.banner-submit-btn {
    width: 100%;

    height: 48px;

    border: 0;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #ed1c24;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


.banner-submit-btn:hover {
    background: #c9151c;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .hero-main-title {
        font-size: 44px !important;
    }

    .hero-main-row {
        min-height: 600px;
    }

    .banner-quote-form {
        max-width: 450px;
        padding: 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .hero-main-row {
        min-height: auto;

        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-main-title {
        font-size: 42px !important;

        line-height: 1.12 !important;
    }

    .hero-quote-wrapper {
        justify-content: center;

        margin-top: 30px;
    }

    .banner-quote-form {
        max-width: 600px;
    }

}


@media (max-width: 575px) {

    .hero-main-title {
        font-size: 34px !important;

        line-height: 1.15 !important;

        letter-spacing: -0.5px;
    }

    .hero-customer-content p {
        font-size: 14px;

        line-height: 1.6;
    }

    .banner-quote-form {
        padding: 20px;

        border-radius: 12px;
    }

    .banner-form-header h3 {
        font-size: 21px !important;
    }

    .banner-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}
.field-error {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}
/* =========================================
   RELOCATION EXPERIENCE SECTION
========================================= */

.relocation-experience-section {
    padding: 40px 0;
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.relocation-experience-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.relocation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 6px;
    border-radius: 50px;
    background: rgb(255 158 158 / 10%);
    color: #e62222;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.relocation-badge i {
    font-size: 14px;
}

/* Heading */

.relocation-experience-content h2 {
    max-width: 850px;
    margin: 0 auto;
    color: #171717;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}

/* Divider */
.relocation-divider {
    width: 70px;
    height: 3px;
    margin: 6px auto 6px;
    background: #f12929;
    border-radius: 5px;
}

/* Intro */

.relocation-intro {
    max-width: 900px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.relocation-intro strong {
    color: #222;
    font-weight: 700;
}

/* Stats */

.relocation-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.relocation-stat {
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.relocation-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(230 53 34 / 10%);
    color: #e63936;
    font-size: 18px;
}
.relocation-stat strong {
    display: block;
    color: #1c1c1c;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.relocation-stat span {
    color: #777;
    font-size: 13px;
}

/* Highlights */

.relocation-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.relocation-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 17px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.relocation-highlight i {
    color: #e3340e;
    font-size: 13px;
}

/* Bottom Text */

.relocation-bottom-text {
    max-width: 850px;
    margin: 10px auto 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* ==========================================
   WHY CHOOSE GRAND PACKERS
========================================== */

.why-choose-features {
    margin-top: 10px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #eeeeee;
}

.why-choose-item:last-child {
    border-bottom: 0;
}
.why-choose-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(241 96 87 / 10%);
    color: #aa0b38;
    font-size: 16px;
}

.why-choose-content {
    flex: 1;
}

.why-choose-content h4 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
}

.why-choose-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}

.why-choose-content strong {
    color: #ffffff;
}


/* Mobile */

@media (max-width: 575px) {

    .why-choose-item {
        gap: 12px;
        padding: 15px 0;
    }

    .why-choose-icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .why-choose-content h4 {
        font-size: 16px;
    }

    .why-choose-content p {
        font-size: 13px;
    }
}
/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .relocation-experience-section {
        padding: 30px 0;
    }

    .relocation-experience-content h2 {
        font-size: 25px;
    }

    .relocation-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 575px) {

    .relocation-experience-section {
        padding: 20px 0px;
    }

    .relocation-experience-content h2 {
        font-size: 22px;
    }

    .relocation-intro {
        font-size: 14px;
        line-height: 1.7;
    }

    .relocation-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 30px;
    }

    .relocation-stat {
        padding: 10px 10px;
    }

    .relocation-stat strong {
        font-size: 17px;
    }

    .relocation-stat span {
        font-size: 11px;
    }

    .relocation-highlights {
        flex-direction: column;
        align-items: center;
    }

    .relocation-highlight {
        width: 100%;
        justify-content: center;
    }

    .relocation-bottom-text {
        font-size: 14px;
    }
}
/* ==========================================
   RELOCATION PROCESS SECTION
========================================== */

.relocation-process-section {
    position: relative;
    padding: 30px 0;
    background: #f7f8fa;
    overflow: hidden;
}


/* Heading */

.relocation-process-heading {
    max-width: 850px;
    margin: 0 auto 5px;
}

.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    color: #ea1919;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.relocation-process-heading h2 {
    margin: 0 0 7px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #171717;
}

.relocation-process-heading h2 span {
    color: #ea1919;
}

.relocation-process-heading p {
    max-width: 780px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   TIMELINE
========================================== */

.relocation-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}


/* Vertical Line */

.relocation-process-timeline::before {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 50%;
    width: 2px;
    background: #e5e5e5;
    transform: translateX(-50%);
}


/* Step */

.relocation-process-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 25px;
    min-height: 145px;
}


/* Alternate Layout */

.relocation-process-step:nth-child(even) .process-step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.relocation-process-step:nth-child(even) .process-step-number {
    grid-column: 2;
    grid-row: 1;
}

.relocation-process-step:nth-child(even) .process-step-icon {
    grid-column: 3;
    grid-row: 1;
}


/* Number */
.process-step-number {
    grid-column: 2;
    grid-row: 1;
    width: 62px;
    height: 62px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f31717;
    color: #cc2a19;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    z-index: 2;
}


/* Icon */
.process-step-icon {
    grid-column: 1;
    grid-row: 1;
    width: 50px;
    height: 50px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    color: #f62d18;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
    transition: all .3s ease;
}

/* Content */

.process-step-content {
    grid-column: 3;
    grid-row: 1;
}

.process-step-content > span {
    display: block;
    margin-bottom: 5px;

    color: #eb1b18;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.process-step-content h3 {
    margin: 0 0 7px;

    color: #202020;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.process-step-content p {
    max-width: 390px;
    margin: 0;

    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* Hover */

.relocation-process-step:hover .process-step-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.relocation-process-step:hover .process-step-number {
    background: #f9222d;
    color: #fff;
}


/* ==========================================
   CTA
========================================== */

.relocation-process-cta {
    margin-top: 60px;
}

.relocation-process-cta p {
    margin-bottom: 18px;
    color: #555;
    font-size: 15px;
}

.relocation-process-cta .btn-default {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .relocation-process-section {
        padding: 75px 0;
    }

    .relocation-process-heading h2 {
        font-size: 35px;
    }

    .relocation-process-step {
        grid-template-columns: 1fr 70px 1fr;
        gap: 18px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .relocation-process-section {
        padding: 60px 15px;
    }

    .relocation-process-heading {
        margin-bottom: 40px;
    }

    .relocation-process-heading h2 {
        font-size: 29px;
    }

    .relocation-process-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Mobile Timeline */

    .relocation-process-timeline::before {
        left: 28px;
        transform: none;
    }

    .relocation-process-step,
    .relocation-process-step:nth-child(even) {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: 15px;
        min-height: auto;
        margin-bottom: 28px;
    }

    .process-step-number,
    .relocation-process-step:nth-child(even) .process-step-number {
        grid-column: 1;
        grid-row: 1;
        width: 56px;
        height: 56px;
        font-size: 14px;
    }

    .process-step-icon,
    .relocation-process-step:nth-child(even) .process-step-icon {
        display: none;
    }

    .process-step-content,
    .relocation-process-step:nth-child(even) .process-step-content {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }

    .process-step-content h3 {
        font-size: 17px;
    }

    .process-step-content p {
        font-size: 13px;
    }

    .relocation-process-cta {
        margin-top: 35px;
    }
}
/* ==========================================
   PATNA SERVICE AREAS SECTION
========================================== */
.patna-service-area-section {
    position: relative;
    padding: 40px 0;
    background: #eeeaeaad;
    overflow: hidden;
}


/* Heading */

.patna-area-heading {
    max-width: 850px;
    margin: 0 auto 20px;
}
.patna-area-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 4px;
    border-radius: 50px;
    background: rgb(255 252 252);
    color: #ff1818;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}
.patna-area-heading h2 {
    margin: 0 0 5px;
    color: #202020;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
}

.patna-area-heading h2 span {
    display: block;
    color: #ea0c0c;
}

.patna-area-heading p {
    margin: 0 auto;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   MAIN WRAPPER
========================================== */

.patna-area-wrapper {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 45px;
    align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.patna-area-content {
    padding: 22px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.patna-area-intro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.patna-area-icon {
    flex: 0 0 52px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fdf5ed;
    color: #e31414;
    font-size: 21px;
}

.patna-area-intro p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.patna-area-intro strong {
    color: #222;
}


/* ==========================================
   LOCATION GRID
========================================== */

.patna-area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.patna-area-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 15px;

    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 10px;

    transition: all .3s ease;
}

.patna-area-item > span {
    min-width: 25px;

    color: #aaa;
    font-size: 11px;
    font-weight: 700;
}

.patna-area-item i {
    color: #de1010;
    font-size: 14px;
}

.patna-area-item strong {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.patna-area-item:hover {
    background: #fff;
    border-color: #e7c6a8;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .06);
}


/* ==========================================
   RIGHT INFORMATION CARD
========================================== */
.patna-area-info-card {
    position: relative;
    padding: 15px 18px;
    background: #0d184f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.patna-area-info-card::after {
    content: "";
    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    border: 25px solid rgba(230, 126, 34, .10);
}

.patna-info-card-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: rgba(230, 126, 34, .15);
    color: #f09a50;

    font-size: 21px;
}
.patna-area-info-card h3 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.patna-area-info-card p {
    margin: 0 0 6px;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.8;
}

.patna-area-info-card p strong {
    color: #fff;
}


/* Information Points */

.patna-info-points {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.patna-info-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ddd;
    font-size: 13px;
}

.patna-info-points i {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(230, 126, 34, .15);
    color: #f09a50;

    font-size: 10px;
}


/* CTA */

.patna-area-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .patna-service-area-section {
        padding: 30px 0;
    }

    .patna-area-heading h2 {
        font-size: 28px;
    }

    .patna-area-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .patna-area-info-card {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .patna-service-area-section {
        padding: 25px 0px;
    }

    .patna-area-heading {
        margin-bottom: 15px;
    }

    .patna-area-heading h2 {
        font-size: 24px;
    }

    .patna-area-heading p {
        font-size: 14px;
    }

    .patna-area-content {
        padding: 10px 14px;
    }

    .patna-area-intro {
        align-items: flex-start;
    }

    .patna-area-intro p {
        font-size: 13px;
    }

    .patna-area-list {
        grid-template-columns: 1fr;
    }

    .patna-area-info-card {
        padding: 12px 22px;
    }

    .patna-area-info-card h3 {
        font-size: 22px;
    }
}
/* ==========================================
   PAN INDIA RELOCATION ROUTES
========================================== */

.pan-india-routes-section {
    padding: 30px 0;
    background: #f5f6f8;
}

.pan-india-routes-box {
    background: #fff;
    border: 2px solid #d3deea;
    border-radius: 20px;
    overflow: hidden;
}


/* ==========================================
   HEADER
========================================== */
.pan-routes-header {
    min-height: 80px;
    padding: 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d3deea;
}

.pan-routes-heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pan-routes-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #fff0f0;
    color: #f12430;

    font-size: 22px;
}

.pan-routes-heading h2 {
    margin: 0 0 5px;

    color: #172a46;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 750;
}

.pan-routes-heading p {
    margin: 0;

    color: #405777;
    font-size: 15px;
}


/* Header Right */

.pan-routes-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pan-routes-count {
    padding: 10px 18px;

    border: 1px solid #cbdbea;
    border-radius: 50px;

    background: #f2f6fa;

    color: #172a46;

    font-size: 14px;
    font-weight: 700;
}

.pan-routes-toggle {
    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 50%;

    background: #edf3f8;
    color: #25486e;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   INTRO
========================================== */
.pan-routes-intro {
    /* max-width: 1050px; */
    margin: 0 auto;
    padding: 8px 31px 5px;
}

.pan-routes-intro p {
    margin: 0 0 5px;
    color: #5f6874;
    font-size: 15px;
    line-height: 1.8;
}

.pan-routes-intro strong {
    color: #26364d;
}


/* ==========================================
   POPULAR ROUTES HEADING
========================================== */

.popular-route-heading {
    padding: 10px 35px 0;
}

.popular-route-heading span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 6px;

    color: #f12430;

    font-size: 11px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: .7px;
}

.popular-route-heading h3 {
    margin: 0;

    color: #172a46;

    font-size: 25px;
    font-weight: 750;
}

.popular-route-description {
    padding: 8px 30px 8px;
    color: #69727e;
    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================
   ROUTE GRID
========================================== */

.pan-routes-grid {
    padding: 0 30px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


/* Route Card */
.pan-route-card {
    min-height: 50px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #f8fafc;
    border: 1px solid #cfdbfa;
    border-radius: 12px;
    text-decoration: none;
    transition: all .25s ease;
}
.pan-route-card:hover {
    border-color: #f12430;
    background: #fffafa;

    transform: translateY(-2px);

    box-shadow: 0 7px 20px rgba(181, 18, 27, .08);
}


/* Location */

.pan-route-location {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #172a46;

    font-size: 15px;
}

.pan-route-location strong {
    font-weight: 750;
}


/* Arrow */

.pan-route-arrow {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffe2e2;
    color: #f12430;

    font-size: 13px;

    transition: all .25s ease;
}

.pan-route-card:hover .pan-route-arrow {
    background: #f12430;
    color: #fff;
}


/* Route Link */

.pan-route-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #758397;

    font-size: 11px;
    font-weight: 650;

    white-space: nowrap;
}

.pan-route-link i {
    font-size: 9px;
}

.pan-route-card:hover .pan-route-link {
    color: #f12430;
}


/* ==========================================
   VIEW ALL
========================================== */

.pan-routes-view-all {
    padding: 28px 30px 30px;

    text-align: center;
}

.pan-routes-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 23px;

    border-radius: 50px;

    background: #f12430;
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}

.pan-routes-view-all a:hover {
    background: #8f0e15;
    color: #fff;

    transform: translateY(-2px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .pan-india-routes-section {
        padding: 25px 0;
    }

    .pan-routes-header {
        padding: 20px;
    }

    .pan-routes-heading h2 {
        font-size: 20px;
    }

    .pan-routes-intro {
        padding-left: 25px;
        padding-right: 25px;
    }

    .popular-route-heading {
        padding-left: 25px;
        padding-right: 25px;
    }

    .popular-route-description {
        padding-left: 25px;
        padding-right: 25px;
    }

    .pan-routes-grid {
        padding: 0 22px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .pan-india-routes-section {
        padding: 20px 0px;
    }

    .pan-india-routes-box {
        border-radius: 15px;
    }

    .pan-routes-header {
        padding: 18px;
        align-items: flex-start;
    }

    .pan-routes-heading {
        gap: 11px;
    }

    .pan-routes-icon {
        width: 45px;
        height: 45px;
        flex: 0 0 45px;
        font-size: 20px;
    }

    .pan-routes-heading h2 {
        font-size: 17px;
    }

    .pan-routes-heading p {
        font-size: 13px;
    }

    .pan-routes-count {
        display: none;
    }

    .pan-routes-toggle {
        width: 38px;
        height: 38px;
    }


    .pan-routes-intro {
        padding: 22px 18px 5px;
    }

    .pan-routes-intro p {
        font-size: 13px;
        line-height: 1.7;
    }


    .popular-route-heading {
        padding: 20px 18px 0;
    }

    .popular-route-heading h3 {
        font-size: 21px;
    }

    .popular-route-description {
        padding: 8px 18px 20px;
        font-size: 13px;
    }


    .pan-routes-grid {
        padding: 0 18px;

        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pan-route-card {
        min-height: 64px;
        padding: 10px 13px;
    }

    .pan-route-location {
        gap: 8px;
        font-size: 14px;
    }

    .pan-route-arrow {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .pan-route-link {
        font-size: 10px;
    }


    .pan-routes-view-all {
        padding: 22px 18px 25px;
    }

    .pan-routes-view-all a {
        width: 100%;
        justify-content: center;
    }

}
/* ==========================================
   RELOCATION COST SECTION
========================================== */

.relocation-cost-section {
    padding: 40px 0;
    background: #f7f8fa;
}

.relocation-cost-wrapper {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: center;
}

.relocation-cost-eyebrow,
.goods-safety-eyebrow,
.specialized-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 17px;
    margin-bottom: 7px;

    border-radius: 50px;

    background: #fff0f0;
    color: #f12430;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.relocation-cost-content h2,
.goods-safety-content h2,
.specialized-relocation-heading h2 {
    margin: 0 0 20px;

    color: #172a46;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 600;
}

.relocation-cost-content h2 span,
.goods-safety-content h2 span,
.specialized-relocation-heading h2 span {
    color: #f12430;
}

.relocation-cost-content p {
    margin: 0 0 14px;

    color: #626b77;
    font-size: 15px;
    line-height: 1.8;
}

.relocation-cost-content strong {
    color: #27374e;
}

/* Cost Card */

.relocation-cost-card {
    padding: 20px;

    background: #fff;

    border: 1px solid #d8e1eb;
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(22, 42, 70, .07);
}

.cost-card-header {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 10px;
    margin-bottom: 10px;

    border-bottom: 1px solid #eeeeee;
}

.cost-card-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #fff0f0;
    color: #f12430;

    font-size: 20px;
}

.cost-card-header span {
    display: block;

    color: #f12430;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.cost-card-header h3 {
    margin: 3px 0 0;

    color: #172a46;
    font-size: 18px;
    font-weight: 700;
}

.cost-factor-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cost-factor {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px;

    background: #f7f9fb;
    border-radius: 8px;

    color: #394b61;
    font-size: 12px;
    font-weight: 600;
}

.cost-factor i {
    color: #f12430;
    font-size: 13px;
}

.cost-quote-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 22px;
    padding: 13px 20px;

    border: 0;
    border-radius: 50px;

    background: #f12430;
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    transition: all .25s ease;
}

.cost-quote-btn:hover {
    background: #8f0e15;
    transform: translateY(-2px);
}


/* ==========================================
   GOODS SAFETY
========================================== */

.goods-safety-section {
    padding: 40px 0;
    background: #fff;
}

.goods-safety-wrapper {
    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 45px;
    align-items: center;

    padding: 25px;

    border-radius: 20px;

    background: #f8fafc;
    border: 1px solid #e0e6ed;
}

.goods-safety-visual {
    text-align: center;
}

.safety-icon-circle {
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    border-radius: 50%;

    background: #fff0f0;
    color: #f12430;

    font-size: 40px;
}

.safety-line {
    display: block;

    width: 2px;
    height: 35px;

    margin: 12px auto;

    background: #e0a5a8;
}

.safety-mini-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.safety-mini-icons span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff;
    border: 1px solid #e3e8ee;

    color: #f12430;

    font-size: 14px;
}

.goods-safety-content h2 {
    font-size: 32px;
}

.goods-safety-content p {
    max-width: 800px;

    margin: 0 0 23px;

    color: #626b77;
    font-size: 15px;
    line-height: 1.8;
}

.goods-safety-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #f12430;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.goods-safety-link:hover {
    color: #8f0e15;
}


/* ==========================================
   SPECIALIZED SERVICES
========================================== */

.specialized-relocation-section {
    padding: 40px 0;
    background: #f7f8fa;
}

.specialized-relocation-heading {
    max-width: 750px;
    margin: 0 auto 20px;
}

.specialized-relocation-heading h2 {
    margin-bottom: 0;
}
/* Grid */

.specialized-relocation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Card */

.specialized-relocation-card {
    padding: 24px;

    background: #fff;

    border: 1px solid #e0e5eb;
    border-radius: 16px;

    box-shadow: 0 8px 28px rgba(0, 0, 0, .04);

    transition: all .3s ease;
}

.specialized-relocation-card:hover {
    transform: translateY(-6px);

    border-color: #e3b5b7;

    box-shadow: 0 15px 35px rgba(181, 18, 27, .08);
}


/* Card Top */

.specialized-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.specialized-card-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #fff0f0;
    color: #f12430;

    font-size: 21px;
}

.specialized-card-number {
    color: #d6dce3;

    font-size: 27px;
    font-weight: 800;
}


/* Content */

.specialized-card-content h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.35;
}

.specialized-card-content h3 a {
    color: #172a46;
    text-decoration: none;
}

.specialized-card-content h3 a:hover {
    color: #f12430;
}

.specialized-card-content p {
    margin: 0 0 22px;

    color: #66717e;

    font-size: 14px;
    line-height: 1.75;
}

.specialized-card-content strong {
    color: #27374e;
}


/* Link */

.specialized-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #f12430;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.specialized-card-link:hover {
    color: #8f0e15;
}

.specialized-card-link i {
    transition: transform .25s ease;
}

.specialized-card-link:hover i {
    transform: translateX(4px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .relocation-cost-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .relocation-cost-card {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .specialized-relocation-grid {
        grid-template-columns: 1fr 1fr;
    }

    .goods-safety-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .goods-safety-content p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .relocation-cost-section,
    .specialized-relocation-section {
        padding: 25px 05px;
    }

    .goods-safety-section {
        padding: 25px 0px;
    }

    .relocation-cost-content h2,
    .goods-safety-content h2,
    .specialized-relocation-heading h2 {
        font-size: 26px;
    }

    .relocation-cost-content p,
    .goods-safety-content p {
        font-size: 14px;
    }

    .relocation-cost-card {
        padding: 20px;
    }

    .cost-factor-list {
        grid-template-columns: 1fr;
    }

    .goods-safety-wrapper {
        padding: 28px 20px;
    }

    .safety-icon-circle {
        width: 85px;
        height: 85px;
        font-size: 32px;
    }

    .specialized-relocation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .specialized-relocation-card {
        padding: 23px;
    }

}
/* ==========================================
   HELPFUL MOVING TIPS SECTION
========================================== */
.moving-hiring-tips-section {
    padding: 40px 0;
    background: #ffffff;
}


/* Main Wrapper */

.moving-tips-wrapper {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 55px;
    align-items: start;
}


/* ==========================================
   LEFT INTRO
========================================== */

.moving-tips-intro {
    position: sticky;
    top: 100px;
}

.moving-tips-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 17px;
    margin-bottom: 18px;

    border-radius: 50px;

    background: #fff0f0;
    color: #f12430;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .6px;
}
.moving-tips-intro h2 {
    margin: 0 0 13px;
    color: #172a46;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.moving-tips-intro h2 span {
    color: #f12430;
}

.moving-tips-intro > p {
    margin: 0;

    color: #626b77;

    font-size: 16px;
    line-height: 1.8;
}


/* Badge */

.moving-tips-badge {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
    padding: 15px 17px;

    background: #fff;

    border: 1px solid #e1e6ec;
    border-radius: 12px;
}

.moving-tips-badge > i {
    color: #f12430;
    font-size: 22px;
}

.moving-tips-badge strong {
    display: block;

    margin-bottom: 2px;

    color: #26374e;
    font-size: 13px;
}

.moving-tips-badge span {
    display: block;

    color: #7a8490;
    font-size: 11px;
}


/* ==========================================
   TIPS LIST
========================================== */

.moving-tips-list {
    display: grid;
    gap: 11px;
}
.moving-tip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 50px;
    padding: 9px 12px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    transition: all .3s ease;
}
.moving-tip-item:hover {
    border-color: #e0b8ba;

    transform: translateX(4px);

    box-shadow: 0 8px 24px rgba(181, 18, 27, .07);
}


/* Number */

.moving-tip-number {
    min-width: 27px;

    color: #bfc6ce;

    font-size: 11px;
    font-weight: 800;

    text-align: center;
}


/* Icon */
.moving-tip-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff0f0;
    color: #f12430;
    font-size: 15px;
    transition: all .3s ease;
}

.moving-tip-item:hover .moving-tip-icon {
    background: #f12430;
    color: #fff;
}


/* Text */

.moving-tip-item p {
    margin: 0;

    color: #414d5c;

    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}


/* ==========================================
   BOTTOM NOTE
========================================== */
.moving-tips-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 946px;
    margin: 20px auto 0;
    padding: 12px 22px;
    background: #f31212;
    border-left: 3px solid #f12430;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
}

.moving-tips-bottom > i {
    color: #f12430;
    font-size: 18px;
}

.moving-tips-bottom p {
    margin: 0;

    color: #f6f8fb;

    font-size: 13px;
    line-height: 1.7;
}

.moving-tips-bottom strong {
    color: #293a50;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .moving-hiring-tips-section {
        padding: 30px 0;
    }

    .moving-tips-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .moving-tips-intro {
        position: static;
        max-width: 750px;
    }

    .moving-tips-intro h2 {
        font-size: 30px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575px) {

    .moving-hiring-tips-section {
        padding: 20px 0;
    }

    .moving-tips-intro h2 {
        font-size: 29px;
    }

    .moving-tips-intro > p {
        font-size: 14px;
    }

    .moving-tip-item {
        gap: 10px;
        padding: 10px 11px;
    }

    .moving-tip-number {
        min-width: 22px;
        font-size: 9px;
    }

    .moving-tip-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 13px;
    }

    .moving-tip-item p {
        font-size: 12px;
    }

    .moving-tips-bottom {
        align-items: flex-start;
        padding: 15px;
    }

    .moving-tips-bottom p {
        font-size: 12px;
    }

}
/* =========================================
   Planning a Move Section
========================================= */
.planning-move-section {
    padding: 35px 0;
    background: #f3e7e74f;
    position: relative;
}

.planning-move-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.planning-move-subtitle {
    display: inline-block;
    color: #b5121b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.planning-move-content h2 {
    margin: 0 auto 20px;
    color: #172a46;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
}

.planning-move-content > p {
    max-width: 900px;
    margin: 0 auto 15px;
    color: #626b78;
    font-size: 16px;
    line-height: 1.8;
}

.planning-move-content > p strong {
    color: #172a46;
}

/* CTA */

.planning-move-btn {
    margin: 30px 0 40px;
}

.planning-move-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: #ea0a15;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all .3s ease;
}

.planning-move-btn a i {
    transition: transform .3s ease;
}

.planning-move-btn a:hover {
    background: #172a46;
    color: #fff;
    transform: translateY(-2px);
}

.planning-move-btn a:hover i {
    transform: translateX(5px);
}

/* Contact Information */

.planning-contact-info {
    max-width: 1110px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;

    display: grid;
    grid-template-columns: 1.1fr 1fr 1.4fr;
    gap: 20px;
    text-align: left;
}

.planning-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.planning-contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #fff0f0;
    color: #b5121b;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.planning-contact-item span {
    display: block;
    margin-bottom: 4px;
    color: #172a46;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.planning-contact-item p {
    margin: 0;
    color: #626b78;
    font-size: 14px;
    line-height: 1.6;
}

.planning-contact-item a {
    color: #626b78;
    text-decoration: none;
    transition: color .3s ease;
}

.planning-contact-item a:hover {
    color: #b5121b;
}

.phone-separator {
    display: inline !important;
    margin: 0 4px;
    color: #aaa !important;
    font-weight: 400 !important;
}

/* Responsive */

@media (max-width: 991px) {

    .planning-move-section {
        padding: 30px 0;
    }

    .planning-move-content h2 {
        font-size: 30px;
    }

    .planning-contact-info {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .planning-contact-item {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 575px) {

    .planning-move-section {
        padding: 50px 15px;
    }

    .planning-move-content h2 {
        font-size: 27px;
    }

    .planning-move-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .planning-move-btn {
        margin: 25px 0 30px;
    }

    .planning-move-btn a {
        width: 100%;
        max-width: 260px;
    }

    .planning-contact-info {
        padding-top: 25px;
        gap: 18px;
    }

    .planning-contact-item {
        justify-content: flex-start;
    }

    .planning-contact-item p {
        font-size: 13px;
    }

    .phone-separator {
        display: none !important;
    }

    .planning-contact-item p a {
        display: block;
        margin-bottom: 3px;
    }
}