:root {
    --orange: #f97316;
    --bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #111111;
    --text-mid: #444444;
    --text-light: #888888;
    --card-border: #e8e8e8;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 40px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
}

.navbar--menu--wraper {
    display: block;
    margin-inline: auto;
}

.navbar--menu {
    display: flex;
    align-items: center;
    padding: 0;
}

/* Dropdown */
.dropdown {
    position: relative;
}

a.dropbtn {
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s ease;
}

a.dropbtn:hover {
    color: #005eff;
    font-weight: 700;
}

.dropdown button:hover {
    background: white !important;
    color: #005eff;
}

.dropbtn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 10;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.dropdown-content a:hover {
    background: #f2f2f2;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.partner-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.partner-btn:hover {
    background: #e5640f;
}

.call-text h4 {
    margin: 0;
    color: #f97316;
    font-weight: 700;
}

/* Burger Menu */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-right {
        gap: 15px;
    }

    .partner-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .call-text p {
        font-size: 12px;
    }

    .call-text h4 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .navbar--menu {
        display: none;
    }

    .nav-right>*:not(.burger) {
        display: none;
    }

    .burger {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0b4cb4, #06347a);
    color: white;
    padding: 20px 5%;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.hero-content .quote-form .form-group input {
    border: 1px solid #ddd !important;
}

.hero-left {
    flex: 1 1 45%;
}

.hero-left h1 {
    font-size: 36px;
    margin: 16px 4px 2px 1px;
    line-height: 45px;
}

.hero-left h1 span {
    font-size: 18px;
    line-height: normal;
}

.hero-left h1 b {
    font-size: 31px;
    color: #ffc107;
}

.hero-left p {
    font-size: 16px;
    margin-bottom: 20px;
}

.tag {
    background: white;
    color: #0b4cb4;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.quote-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: "Poppins", sans-serif;
}

.banner-review {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 10px;
}

.happy-customer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-shiled img {
    width: 100px;
    height: auto;
}

.blue-tick img {
    width: 70px;
    height: auto;
}

.happy-customerimg img {
    width: 90px;
    height: auto;
}

.happy-customerstar img {
    width: 108px;
    height: auto;
    margin-bottom: 3px;
}

.form-shiled {
    position: relative;
}



.happy-customerstar p {
    color: white !important;
    font-size: 18px;
    line-height: normal !important;
    margin: 0 !important;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    /*margin-bottom: 6px;*/
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2b73f8;
    box-shadow: 0 0 4px rgba(43, 115, 248, 0.3);
    outline: none;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-checkbox {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.date-checkbox input {
    margin-right: 8px;
    transform: scale(1.1);
}

button[type="submit"] {
    background-color: #f97316;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #e5640f;
}

/* Responsive */
@media (max-width: 768px) {
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    button[type="submit"] {
        width: 100%;
    }
}

/* Hero right images */
.hero-right {
    flex: 1 1 38%;
}

.hero-right a {
    text-decoration: none;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.img-card {
    background: white;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: max-content;
    position: relative;
}

.img-card img {
    width: 100%;
    height: 246px;
    object-fit: cover;
    overflow: hidden;
    transform: scale(1.1);
    transition: all .5s;
}

.img-card img:hover {
    transform: scale(1);
}

.img-card p {
    margin: 10px 0;
    font-weight: 600;
}

.img-card.up {
    /* transform: translateY(-15px); */
    border: 5px solid white;
}

.img-card.down {
    border: 5px solid white;
}

/* ===== Top Features ===== */
.parent-threecard {
    display: block !important;
    text-align: center;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 20px 5%;
    border-bottom: 1px solid #e5e7eb;
    gap: 20px;
}

.features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #111827;
    font-weight: 500;
    flex: 1 1 30%;
    min-width: 250px;
}

.three-cardicon i {
    font-size: 25px;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    color: white;
    border-radius: 36px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.three-cardicon {
    display: flex;
    justify-content: center
}

.tick {
    color: #22c55e;
    font-size: 18px;
}

/* ===== Base Section (Grey Background) ===== */
.compare-wrapper {
    background: #f3f4f6;
    /* soft grey */
    padding: 160px 5% 100px;
    /* space for the white box overlap */
    position: relative;
    z-index: 1;
}

/* ===== White Overlapping Box ===== */
.compare-box {
    background: #fff;
    border-radius: 40px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 90px 38px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    position: relative;

    /* overlap upward (half visible on grey) */
    /* margin-top: -160px; */

    /* center the content visually */
    box-sizing: border-box;
}

/* ===== Text Column ===== */
.compare-content {
    flex: 1;
    z-index: 3;
}

.compare-content h2 {
    font-size: 38px;
    color: #111827;
    font-weight: 800;
    margin-bottom: 12px;
}

.compare-content .subtitle {
    font-size: 18px;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 25px;
}

.compare-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-content li {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ===== Image Column ===== */
.compare-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.compare-image img {
    width: 500px;
    height: auto;
    border-radius: 30px;

    /* pop-out illusion */
    position: absolute;
    bottom: 0;
    /* touches bottom of white box */
    /* transform: translateY(-30%); */
    /* makes part of it come out from top */
    z-index: 2;
}

/* ===== Responsiveness ===== */
@media (max-width: 992px) {
    .compare-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .compare-content {
        margin-bottom: 40px;
    }

    .compare-image img {
        position: static;
        transform: translateY(-15%);
        width: 280px;
    }
}

@media (max-width: 600px) {
    .compare-wrapper {
        padding: 140px 5% 80px;
    }

    .compare-content h2 {
        font-size: 28px;
    }

    .compare-image img {
        width: 230px;
        transform: translateY(-10%);
    }
}

/* ===== Steps Section ===== */

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .compare-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .compare-content h2 {
        font-size: 30px;
    }

    .compare-image img {
        width: 280px;
        margin-top: 25px;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .compare-content h2 {
        font-size: 26px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .compare-image img {
        width: 240px;
    }
}

/* Services Section */
.services {
    padding: 40px 5%;
    background: #f5f4f4;
    text-align: center;
}

.left-info .services-header h2 {
    color: #ffffff;
}
.header-getprice{
    display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #0b4cb4, #06347a);
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0px 4px rgb(8 64 151 / 78%);
}
/* Hover effect */
.header-getprice:hover {
    transform: translateY(0px) scale(1.01);
    box-shadow: 0 5px 11px rgba(255, 61, 0, 0.4);
    background: linear-gradient(135deg, #f97316, #ff7a18);
}

.services-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 0;
}


.services-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* === Card Container === */
.service-card {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    /* Makes child elements stack vertically */
    height: 100%;
    /* Ensures equal height across grid */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* === Image === */
.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

/* === Content === */
.service-content {
    flex: 1;
    /* Makes content area fill remaining space evenly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Keeps button at bottom */
    padding: 25px;
    text-align: left;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allows paragraph to take flexible space */
}

/* === Button === */
.service-btn {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: auto;
    /* Ensures button stays at bottom */
}

.service-btn.orange {
    background: #ff6b00;
}

.service-btn.blue {
    background: #0b4cb4;
}

.service-btn.gray {
    background: #333;
}

.service-btn:hover {
    opacity: 0.9;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        text-align: center;
    }

    .service-btn {
        width: auto;
        padding: 12px 24px;
        align-self: center;
    }

    .service-img {
        height: 220px;
    }
}

/* Why Choose Us */
.why-choose {
    background-color: #fff !important;
}

.why-choose .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
}

.why-left {
    flex: 1;
    min-width: 300px;
}

.why-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-left ul {
    list-style: none;
    padding: 0;
}

.why-left li {
    margin-bottom: 10px;
}

.why-left li i {
    color: green;
    margin-right: 10px;
}

.why-right {
    flex: 1;
    position: relative;
}

.why-img {
    width: 100%;
    border-radius: 10px;
}

.why-box {
    position: absolute;
    bottom: -40px;
    right: 40px;
    background: #005eff;
    color: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 280px;
}

.why-box h3,
.why-box p {
    color: #000;
    line-height: 24px;
}

h2.section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #111;
}

h5.section-subtitle {
    color: #888;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to right, #0b4cb4, #06347a);
    text-align: center;
    padding: 70px 5%;
    position: relative;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.testimonials-header p {
    font-size: 16px;
    color: #dbdbdb;
    margin-top: 10px;
}

/* Outer slider wrapper */
.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

/* Track that moves left-right */
.slider-track {
    display: flex;
    gap: 30px;
    /* space between cards */
    transition: transform 0.4s ease;
    will-change: transform;
}

/* Card basic styling */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    width: 100%;
    transition: transform 0.3s ease;
}

/* Desktop: 3 cards per view */
.slider-track .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
    .slider-track .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Mobile: 1 card */
@media (max-width: 600px) {
    .slider-track .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.t-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.position {
    color: #777;
    font-size: 15px;
    margin-bottom: 10px;
}

.stars {
    color: #f2b01e;
    margin-bottom: 5px;
    margin-top: 15px;
}

.review {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 100px 5%;
}

.faq-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-left {
    flex: 1;
    min-width: 320px;
}

.faq-right {
    flex: 1;
    position: relative;
}

.faq-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.img-credit {
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Accordion */
.accordion {
    margin-top: 25px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.accordion-header {
    background: none;
    border: none;
    font-size: 16px;
    color: #222;
    font-weight: 500;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 12px 0;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #0077cc;
}

.accordion-content {
    display: none;
    color: #555;
    font-size: 15px;
    padding-bottom: 10px;
}

/* Active accordion (JS toggle) */
.accordion-item.active .accordion-content {
    display: block;
}

/* FOOTER */
.footer {
    background: #0b0c10;
    color: #ddd;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 5% 10px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-left p {
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.socials i {
    color: #fff;
}

.socials a {
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    width: 34px;
    height: 34px;
    transition: all 1.6s cubic-bezier(0.2, 0.95, 0.4, 1.1);
    text-decoration: none;
}

.socials a:hover {
    background-color: white;
    color: black;
}

.socials a:hover i {
    color: black;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .why-choose,
    .faq {
        flex-direction: column;
        text-align: center;
    }

    .why-box {
        position: static;
        margin-top: 20px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.quote-form {
    background: #fff;
    padding: 8px 14px 14px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* width: 100%; */
    max-width: 600px;
    border: 6px solid #e2ba64;
}

 .quote-form select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    background: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    appearance: none;
  }

  /* focus state */
  .quote-form select:focus {
    outline: none;
    border: 1px solid #e0e0e0;
  }

  /* remove browser default arrow style */
  .quote-form select::-ms-expand {
    display: none;
  }


  .quote-form .property-dropdown {
    position: relative;
    width: 100%;
    /* use full width of the form-group */
    box-sizing: border-box;
    /* ensure padding/border included in width */
  }

  .quote-form .dropdown-input {
    width: 100%;
    padding: 14px;


    box-sizing: border-box;
  }

  .quote-form .dropdown-input:focus {
    outline: none;
    border-color: #007bff;
  }

  .quote-form .dropdown-content {
    display: none;
    position: absolute;
    width: 400px;
    background: #fff;
    border: 1px solid #cfe3ff;
    border-radius: 10px;
    padding: 20px;
    top: 50px;
    left: -39px;
    z-index: 20;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    display: none;
    flex-wrap: nowrap;
  }

  @media (max-width: 480px) {
    .quote-form .dropdown-content {
      width: 308px !important;
      /* optional: adjust position for mobile */
    }
  }



  .quote-form .dropdown-column {
    width: 33%;
    padding: 0 10px;
  }



.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

input,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    /* width: 100%; */
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .form-footer button{
    background-color: #e2ba64 !important;
} */

.date-checkbox {
    font-size: 16px;
    color: #333;
}

button {
    background: #f97316;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: #e5640f;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.hero-section {
    position: relative;
    padding: 100px 0;
    background: #f5f5f5;
    /* grey top area */
    overflow: hidden;
}

/* Grey background only top half */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: #e9e9e9;
    z-index: 1;
}

.hero-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Text side */
.hero-content {
    flex: 1;
    /* padding-right: 40px; */
}

.hero-content h2 {
    font-size: 42px;
    color: #0b4cb4;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
    margin-top: 10px;
}

.hero-content p span {
    color: #ffc107;
}

.banner-boxheading {
    color: #08429b !important;
    margin: 0 !important;
    padding: 10px 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffffbf;
}

.cta-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e5640f;
}

/* Mobile preview image */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 640px;
    max-width: 100%;
    height: auto;
    position: absolute;
    top: -370px;
    right: 10%;
    z-index: 3;
    transition: all 0.3s ease;
}

/* For tablets */
@media (max-width: 992px) {
    .hero-image img {
        width: 420px;
        position: relative;
        top: -120px;
        /* slight pop-out look */
        right: 0;
        margin: 0 auto;
        display: block;
    }
}

/* For mobile phones */
@media (max-width: 600px) {
    .hero-image img {
        width: 300px;
        position: relative;
        top: -80px;
        /* still slightly out but not too high */
        right: 0;
    }
}

/* === Section Wrapper === */
/* === Section Wrapper === */
/* === Grey Background === */
.compare-section {
    background-color: #f2f3f5;
    padding-top: 130px;
    /* padding-bottom: 100px; */
    position: relative;
    overflow: hidden;
}

/* === White Curved Box (half overlaps grey) === */
.compare-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    display: flex;
    align-items: flex-end;
    /* aligns image bottom edge perfectly */
    justify-content: space-between;
    padding: 0px 80px 0 80px;
    /* remove bottom padding so image can sit flush */
    position: relative;
    z-index: 2;
    transform: translateY(-60px);
    /* white box overlaps grey background */
    overflow: visible;
}

/* === Left Text (6-column width) === */
.compare-text {
    flex: 0 0 50%;
    padding-bottom: 60px;
    /* add padding for visual balance */
    padding-right: 40px;
}

.compare-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0b4cb4;
    margin-bottom: 15px;
}

.compare-text .subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.compare-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-text ul li {
    font-size: 16px;
    color: #444;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === Right Image (6-column width) === */
.compare-image {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

/* === Pop-out Effect === */
.compare-image img {
    width: 90%;
    max-width: 600px;
    position: relative;
    bottom: 0;
    /* transform: translateY(40px); */
    /* ensures image touches bottom edge */
    margin-bottom: -40px;
    /* pulls image edge exactly flush with container bottom */
    border-radius: 20px;
    box-shadow: none;
    /* no shadow */
    z-index: 3;
}

/* make image top part pop out */
.compare-image img {
    top: -40px;
    /* makes it pop out above white box */
}

/* === Responsive Adjustments === */
@media (max-width: 992px) {
    .compare-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 60px 40px 0 40px;
        transform: translateY(-40px);
    }

    .compare-text {
        flex: 0 0 100%;
        padding-right: 0;
        padding-bottom: 40px;
    }

    .compare-image {
        flex: 0 0 100%;
        justify-content: center;
    }

    .compare-image img {
        top: 0;
        transform: translateY(0);
        margin-bottom: 0;
        width: 80%;
    }

    .compare-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .compare-container {
        padding: 40px 20px 0;
    }

    .compare-text h2 {
        font-size: 26px;
    }

    .compare-image img {
        width: 100%;
        top: 0;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    background-color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.faq-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: right;
    flex-wrap: wrap;
}

/* Background image (bigger and behind box) */
.faq-image {
    position: relative;
    width: 59%;
    z-index: 1;
}

.faq-image img {
    width: auto;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* White floating FAQ box */
.faq-box {
    position: absolute;
    left: 0%;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 20px 50px;
    width: 45%;
    z-index: 2;
}

/* Titles */
.faq-subtitle {
    color: #f15a29;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

/* Accordion */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 10px 5px;
}

.faq-accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    /* important for click feel */
    padding: 17px 0px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
    padding-bottom: 0px;
}

.faq-icon {
    transition: transform 0.6s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    color: #555555d0;
    font-size: 15px;
    padding: 0px 0px;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .faq-image {
        width: 100%;
    }

    .faq-box {
        position: relative;
        width: 90%;
        left: 0;
        top: -60px;
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 26px;
    }

    .faq-box {
        padding: 30px 25px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.about-hero {
    position: relative;
    padding: 130px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #0b1f4b 0%, #0f3c8c 50%, #3f8cff 100%);
    overflow: hidden;
}

/* Subtle animated glow circles */
.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.about-hero::before {
    width: 350px;
    height: 350px;
    background: #3f8cff;
    top: -80px;
    left: -80px;
}

.about-hero::after {
    width: 300px;
    height: 300px;
    background: #0f3c8c;
    bottom: -100px;
    right: -80px;
}

.about-hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    color: #f1f1f1;
}

/* ------------------------------
   ABOUT SECTION
--------------------------------*/
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 5%;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.about-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-highlights li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   WHY CHOOSE SECTION
--------------------------------*/
/* SECTION */
.why-section {
    padding: 100px 8%;
    background: #f6f9ff;
}

/* WRAPPER FLEX */
.why-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: auto;
}

/* LEFT HEADING */
.why-heading {
    flex: 1;
}

.why-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0b1f4b;
    margin-bottom: 20px;
}

.why-heading p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* RIGHT CARDS GRID */
.why-cards {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD STYLE */
.why-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient top border */
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0f3c8c, #3f8cff);
}

/* Hover effect */
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0b1f4b;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* ------------------------------
   CTA SECTION
--------------------------------*/
.cta-section {
    text-align: center;
    padding: 70px 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #f97316;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #eb6a0d;
}

/* ------------------------------
   RESPONSIVE MOBILE
--------------------------------*/

@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 90%;
        margin: auto;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   HERO (Matches About Page)
--------------------------------*/
.contact-hero {
    background: url("../images/img/contact-us-bg.jpg") center/cover no-repeat;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
}

.contact-hero .hero-container {
    position: relative;
    z-index: 2;
}

.contact-hero .hero-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.contact-hero .hero-container p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* ------------------------------
   CONTACT INFO SECTION
   (Same Grid As About Page)
--------------------------------*/
.contact-clean {
    padding: 100px 5%;
    background: #f4f7fb;
    font-family: "Poppins", sans-serif;
}

.container-contact {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT SIDE */

.contact-left h2 {
    font-size: 40px;
    margin: 15px 0;
    color: #0f172a;
}

.contact-left a {
    color: #464646;
    text-decoration: none;
}

.contact-left a:hover {
    color: #2563eb;
}

.contact-left p {
    color: #64748b;
    line-height: 1.7;
    max-width: 450px;
}

.contact-tag {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.contact-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* RIGHT SIDE FORM */

.contact-right {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form {
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.3s;
}

.contact-form textarea {
    resize: none;
    min-height: 140px;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.contact-form h2 {
    margin-top: 0;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .container-contact {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-left h2 {
        font-size: 28px;
    }
}

/* ------------------------------
   FORM SECTION
--------------------------------*/

/* ------------------------------
   MAP SECTION
--------------------------------*/
.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/

@media (max-width: 600px) {
    .contact-hero .hero-container h1 {
        font-size: 32px;
    }
}

/* Improved Contact Section */
.improved-contact {
    max-width: 750px;
    margin: auto;
    /*text-align: center;*/
    padding: 20px 0 40px;
}

.improved-contact h2 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.contact-subtext {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 45px;
}

/* Info Box */
.contact-info-box {
    display: grid;
    gap: 25px;
}

/* Individual Item */
.contact-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 25px 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

/* Icon Box */
.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 20px;
    color: #f97316;
    /* Brand highlight */
}

/* Text */
.contact-item h4 {
    margin: 0 0 2px;
    font-size: 19px;
    color: #222;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-item {
        padding: 20px;
        gap: 12px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }
}

/****************************************************
 GLOBAL BUTTONS
****************************************************/
.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    display: inline-block;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #f97316;
    color: #fff;
    margin-top: 10px;
}

.btn-secondary {
    background: #fff;
    color: #1e73be;
    border: 2px solid #1e73be;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary:hover {
    background: #1e73be;
    color: #fff;
}

/****************************************************
 HERO SECTION
****************************************************/

.domestic-hero .hero-container {
    position: relative;
    z-index: 2;
    /* keeps text above overlay */
}

.domestic-hero .hero-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
}

.domestic-hero .hero-container p {
    font-size: 18px;
    color: #ffffff;
    max-width: 700px;
    margin: auto;
    line-height: 1.5;
    margin-bottom: 20px;
}

/****************************************************
 INTRO SECTION
****************************************************/
.domestic-intro {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.di-left {
    flex: 1;
}

.di-right {
    flex: 1;
}

.di-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.di-left p {
    line-height: 1.7;
    margin: 5px 0px !important;
}

.points li {
    margin-bottom: 8px;
    font-size: 16px;
}

.di-right img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/****************************************************
 HIGHLIGHT CARDS
****************************************************/
.service-highlights {
    padding: 40px 20px;
    background: #f9f9f9;
}

.service-highlights h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.service-highlights p {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.3;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.h-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
}

.h-card:hover {
    transform: translateY(-3px);
}

.h-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/****************************************************
 MOVING PROCESS
****************************************************/
.moving-process {
    padding: 40px 20px;
}

.moving-process h2 {
    text-align: center;
    margin-bottom: 45px;
}

.process-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}

/*.step span {*/
/*    font-size: 34px;*/
/*    font-weight: 700;*/
/*    color: #dd620c;*/
/*    display: block;*/
/*    margin-bottom: 10px;*/
/*}*/

.center-btn {
    text-align: center;
    margin-top: 35px;
}

/****************************************************
 WHY CHOOSE US
****************************************************/

.why-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-4px);
}

/****************************************************
 100% MOBILE RESPONSIVE MEDIA QUERIES
****************************************************/

/* Tablets & Smaller Laptops */
@media (max-width: 991px) {
    .values-section .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .domestic-hero h1 {
        font-size: 36px;
    }

    .domestic-hero p {
        font-size: 16px;
    }

    .domestic-intro {
        flex-direction: column;
        text-align: center;
    }

    .di-left h2 {
        font-size: 28px;
    }
}

/* Mobile Phones */
@media (max-width: 600px) {
    .domestic-hero {
        padding: 110px 20px;
    }

    .domestic-hero h1 {
        font-size: 30px;
    }

    .domestic-hero p {
        font-size: 15px;
    }

    .domestic-intro {
        padding: 50px 20px;
    }

    .di-left h2 {
        font-size: 24px;
    }

    .di-left p,
    .points li {
        font-size: 14.5px;
    }

    .h-card img {
        height: 130px;
    }

    .service-highlights h2,
    .moving-process h2,
    .why-choose h2 {
        font-size: 26px;
    }

    .step {
        padding: 20px;
    }

    .why-box {
        padding: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Extra Small Screens */
@media (max-width: 380px) {
    .domestic-hero h1 {
        font-size: 26px;
    }

    .di-left h2 {
        font-size: 22px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

.is-invalid {
    border: 1px solid #ff0000c7 !important;
}

/****************************************************
 form modal css 
****************************************************/
/* ========== Vendor Modal Styles ========== */
/* Modal top-down smooth entrance (≈380ms) */

/* new code of modal */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 320ms ease;
    will-change: opacity;
}

.modal.active .modal-overlay {
    opacity: 1;
}

.modal-panel {
    position: relative;
    width: 95%;
    max-width: 520px;
    margin: 15vh auto;
    /* centers vertically with room on top/bottom */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
    max-height: 80vh;
    /* modal height limit */
    overflow-y: auto;
    scroll-behavior: smooth;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.modal.active .modal-panel {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.modal-nav-item {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    /*gap: 6px;*/
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-group label {
    font-size: large;
    font-weight: 600;
    color: #333;
}

.form-group input {
    border: 1px solid gray;
    padding: 15px;
    outline: none;
    border-radius: 10px;
}

.signup {
    font-family: sans-serif;
    color: blue;
    text-decoration: underline;
}

.signup:hover {
    cursor: pointer;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.modal-nav-item button.active {
    background: #0b63d6;
    color: #fff;
}

.hidden {
    display: none !important;
}

.stepform {
    display: none;
}

.stepform.active {
    display: block;
}

.signup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 5px;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #d0d0d0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.progress-step.active {
    background: #0b63d6;
}

.progress-line {
    width: 60px;
    height: 4px;
    background: #d0d0d0;
    margin: 0 10px;
}

.progress-line.active {
    background: #0b63d6;
}

@media (max-width: 650px) {
    .modal-panel {
        position: relative;
        width: 65%;
        max-width: 300px;
        margin: 10vh auto;
        /* centers vertically with room on top/bottom */
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 5;
        max-height: 80vh;
        /* modal height limit */
        overflow-y: auto;
        scroll-behavior: smooth;
    }
}

.account_register .auth-footer {
    text-align: center;
    font-size: 14px;
}

.account_register .auth-footer a {
    color: #f97316;
}

.partner-btn {
    position: relative;
}

.partner-btn::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    left: calc(50% - 0.75em);
    top: calc(50% - 0.75em);
    border: 0.15em solid transparent;
    border-right-color: white;
    border-radius: 50%;
    animation: button-anim 0.7s linear infinite;
    opacity: 0;
}

@keyframes button-anim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.partner-btn.loading {
    color: transparent;
}

.partner-btn.loading::after {
    opacity: 1;
}

.ani-btn {
    position: relative;
}

.ani-btn::after {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    left: calc(50% - 0.75em);
    top: calc(50% - 0.75em);
    border: 0.15em solid transparent;
    border-right-color: white;
    border-radius: 50%;
    animation: button-anim 0.7s linear infinite;
    opacity: 0;
}

.ani-btn.loading {
    color: transparent;
}

.ani-btn.loading::after {
    opacity: 1;
}

.loader-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #1e1e1e54;
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #3a7bff 0deg,
            #70d7ff 270deg,
            rgba(180, 254, 221, 0) 320deg,
            rgba(180, 254, 221, 0) 360deg);

    -webkit-mask: radial-gradient(farthest-side,
            transparent calc(100% - 5px),
            #000 calc(100% - 5px));
    mask: radial-gradient(farthest-side,
            transparent calc(100% - 5px),
            #000 calc(100% - 5px));
    animation: spin 1s linear infinite;
}

/* Rotation keyframes */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#pickupExtraFields .form-group select {
    border: 1px solid gray;
    padding: 15px;
    outline: none;
    border-radius: 50px;
}

#pickupExtraFields .form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

#deliveryExtraFields .form-group select {
    border: 1px solid gray;
    padding: 15px;
    outline: none;
    border-radius: 50px;
}

#deliveryExtraFields .form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* ===== MODAL OVERLAY ===== */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    /* dark semi-transparent bg */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.flip-front {
    height: 100%;
}

/* When we add this class, modal becomes visible */
.quote-modal-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ===== MODAL BOX ===== */
.quote-modal {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    padding: 20px 20px 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    position: relative;

    transform: translateY(20px) scale(0.96);
    opacity: 0;
    animation: quoteModalIn 0.35s ease forwards;
}

.quote-modal {
    max-height: auto;
    /* choose your height */
    overflow-y: auto;
    /* scroll inside if content is long */
}

.query {
    margin: 0px;
}

/* Entry animation */
@keyframes quoteModalIn {
    0% {
        transform: translateY(20px) scale(0.96);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* ===== CLOSE BUTTON (X) ===== */
.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: #3c3e3f;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-close:hover {
    background: #e19317;
}

/* ===== TITLES ===== */
.quote-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin: 4px 32px 4px 4px;
    /* extra right space for close btn */
}

.quote-modal-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 16px;
}

/* ===== FORM ELEMENTS ===== */
.quote-modal-form {
    display: flex;
    flex-direction: column;
}

.quote-modal .form-group {
    display: flex;
    flex-direction: column;
}

.quote-modal .form-group label {
    font-size: 0.85rem;
    font-weight: 550;
    color: #0f172a;
}

.quote-modal .form-group input,
.quote-modal .form-group select,
.quote-modal .form-group textarea {
    font-size: 0.9rem;
    padding: 9px 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.quote-modal .form-group input::placeholder,
.quote-modal .form-group textarea::placeholder {
    color: #94a3b8;
}

.quote-modal .form-group textarea {
    resize: vertical;
    /*min-height: 80px;*/
}

/* Focus styles */
.quote-modal .form-group input:focus,
.quote-modal .form-group select:focus,
.quote-modal .form-group textarea:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.35);
}

/* ===== SUBMIT BUTTON ===== */
.quote-modal-submit {
    margin-top: 4px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;

    background: #fb923c;
    /* orange like your screenshot */
    color: #ffffff;
    transition:
        background 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease;
}

.quote-modal-submit:hover {
    background: #f97316;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

/* ===== FOOTER TEXT ===== */
.quote-modal-footer-text {
    margin-top: 8px;
    font-size: 0.75rem;
    text-align: center;
    color: #94a3b8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .quote-modal {
        max-width: 100%;
        padding: 20px 16px 16px;
    }

    .quote-modal-title {
        font-size: 1.25rem;
    }
}

.quote-modal .error,
.hm-enquiry-box .error {
    font-size: 12px;
    color: #df0606;
    display: none;
}

.quote-modal #formStatus,
.hm-enquiry-box #formStatus {
    padding-top: 5px;
    text-align: center;
}

.domestic-intro .btn-secondary.open-quote-modal {
    background: #1e73be;
    color: #fff;
    border: 2px solid #1e73be;
}

.domestic-intro .btn-secondary.open-quote-modal:hover {
    background: #fff;
    color: #1e73be;
    border: 2px solid #1e73be;
}

.domestic-intro .di-left ul {
    padding: 0;
}

.domestic-intro a.btn-secondary {
    background: #1e73be;
    color: #fff;
    border: 2px solid #1e73be;
}

.domestic-intro a.btn-secondary:hover {
    background: #fff;
    color: #1e73be;
    border: 2px solid #1e73be;
}

.services {
    padding: 70px 5%;
    background: #f8f9fc;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
}

.services-header p {
    font-size: 16px;
    color: #6c757d;
    margin-top: 10px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.service-img-wrap {
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.services-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ICON */
.service-icon {
    position: absolute;
    bottom: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.service-icon.blue {
    background: #0d5ef4;
}

.service-icon.orange {
    background: #f57c00;
}

/* CONTENT */
.service-content {
    padding: 35px 20px 25px;
}

.service-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1f44;
}

.rating {
    font-size: 14px;
    color: #f6a623;
}

.rating b {
    color: #0a1f44;
    font-weight: 600;
    margin-left: 4px;
}

.service-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 15px 0;
}

/* LINK */
.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #f57c00;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .values-section .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 26px !important;
    }
}

.service-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #0b3b8c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.service-icon img {
    width: 40px;
}

.quote-btn.loading {
    pointer-events: none;
    opacity: 0.75;
}

.price-section-title {
    font-weight: 600;
    margin: 12px 0 6px;
    color: #0f172a;
}

.price-hint {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
}

.total-highlight {
    font-size: 16px;
}

/* VIDEO SECTION */
.move-video-frame {
    position: relative;
    max-width: 700px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.move-video-thumb {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.move-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.move-play-btn:hover {
    background: #1e40af;
    transform: translate(-50%, -50%) scale(1.1);
}

.move-video-section {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.move-video-wrap {
    padding: 0px 5%;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.move-video-tag {
    display: inline-block;
    background: #e7f0ff;
    color: #0b4db8;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 50px;
}

.move-video-content h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.move-video-content h2 span {
    color: #0b4db8;
}

.move-video-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5b70;
    margin-bottom: 18px;
    max-width: 560px;
}

.move-video-points {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.move-video-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #223a5a;
    font-weight: 600;
}

.move-video-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #17c964;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.move-video-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.mv-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #0b4db8;
    color: #0b4db8;
    background-color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
}

.mv-outline:hover {
    background: #0b4db8;
    color: #fff;
    transform: translateY(-2px);
}

.move-video-box {
    width: 100%;
}

.move-video-frame {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    background: #0b4db8;
}

.move-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.1);
}

.move-video-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.mv-mini {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8eef9;
    text-align: center;
}

.mv-mini h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: #0b1f3a;
}

.mv-mini p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #5b6d85;
    font-weight: 700;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover .learn-more {
    text-decoration: underline;
}

/* Why Choose us css */
/* WHY CHOOSE SECTION */
.why-choose {
    width: 100%;
    padding: 80px 0;
    background: #f7fbff;
}

.why-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    padding: 0px 5%;
    align-items: center;
}

.banner-getquote {
    margin: auto;
}

.custom-gridbtn:hover .banner-getquote {
    display: block;
    transform: translateY(0);
    opacity: 1;
    text-align: center;
}



.banner-btntext {
    margin: 0 !important;
    color: #08429b !important;
}


/* Left */
.why-left .why-badge {
    display: inline-block;
    background: #e8f1ff;
    color: #0b4db8;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.why-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5b70;
    margin: 0 0 18px 0;
    max-width: 560px;
}

/* List */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.why-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #223a5a;
    font-weight: 700;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #17c964;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.why-right {
    width: 100%;
}

.why-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.why-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* Overlay Card */
.why-box {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: min(360px, 86%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 18px 18px;
    border: 1px solid #e8eef9;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.why-box h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 900;
    color: #0b1f3a;
}

.why-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5b70;
    font-weight: 600;
}

/* why choose us CSS */

/* MOVERS FAQ (PREMIUM UI) */
.movers-faq {
    padding: 90px 0;
    background:
        radial-gradient(circle at 40% 30%,
            rgba(255, 90, 70, 0.1),
            transparent 60%),
        radial-gradient(circle at 70% 60%,
            rgba(20, 70, 255, 0.08),
            transparent 60%),
        #f7f7f9;
    font-family:
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
}

.movers-faq-container {
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    padding: 0px 5%;
    align-items: start;
}

.movers-faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff3b30;
    margin-bottom: 12px;
}

.movers-faq-left h2 {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 14px 0;
    color: #0b1f3a;
}

.movers-faq-left p {
    margin: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    color: #5a6a7f;
    max-width: 420px;
}

.movers-faq-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.movers-faq-card-top {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.movers-faq-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 59, 48, 0.2);
    flex-shrink: 0;
}

.movers-faq-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movers-faq-card-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #0b1f3a;
}

.movers-faq-card-title p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #667892;
    font-weight: 600;
}

.movers-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.movers-faq-item {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: 0.25s ease;
}

.movers-faq-q {
    width: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
}

.movers-faq-q span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #0b1f3a;
}

.movers-faq-toggle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(11, 31, 58, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #0b1f3a;
    flex-shrink: 0;
    transition: 0.25s ease;
}

.movers-faq button:hover {
    background-color: #f9731621;
}

.movers-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 20px;
}

.movers-faq-a p {
    margin: 0;
    padding: 0 0 18px 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
}

.movers-faq-item.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 59, 48, 0.22);
}

.movers-faq-item.active .movers-faq-toggle {
    background: rgba(255, 59, 48, 0.12);
    color: #ff3b30;
}

.movers-faq-item.active .movers-faq-a {
    max-height: 200px;
}

/* MOVERS FAQ (PREMIUM UI) */

/* CTA section */
/* ==========================
   CREATIVE CTA SECTION
   ========================== */

.cta-creative {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    /* Background Image */
    background: url("../images/img/cta-bg.jpg") center/cover no-repeat;
}

/* Gradient overlay */
.cta-creative .cta-overlay {
    position: absolute;
    inset: 0;

    /* Blue Gradient */
    background: linear-gradient(120deg,
            rgba(10, 45, 120, 0.92),
            rgba(0, 95, 255, 0.78),
            rgba(0, 170, 255, 0.65));

    z-index: 1;
}

/* Optional dotted pattern */
.cta-creative::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px,
            transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 18px;
    max-width: 850px;
    margin: auto;
}

.cta-container h2 {
    margin: 0 0 12px 0;
    font-size: 46px;
    line-height: 1.15;
    color: #fff;
}

.cta-container p {
    margin: 0 0 28px 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
    .movers-faq-container {
        grid-template-columns: 1fr;
    }

    .movers-faq-left h2 {
        font-size: 38px;
    }

    .movers-faq-left p {
        max-width: 100%;
    }

    .why-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-left h2 {
        font-size: 34px;
    }

    .why-img {
        height: 360px;
    }

    .why-box {
        left: 16px;
        bottom: 16px;
    }

    .move-video-wrap {
        grid-template-columns: 1fr;
    }

    .move-video-content h2 {
        font-size: 36px;
    }

    .move-video-frame {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .cta-creative {
        padding: 50px 0;
        border-radius: 0px;
    }

    .cta-container h2 {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .movers-faq {
        padding: 50px 0;
    }

    .movers-faq-left h2 {
        font-size: 26px;
    }

    .movers-faq-q span:first-child {
        font-size: 15px;
    }

    .why-choose {
        padding: 50px 0;
    }

    .why-left h2 {
        font-size: 26px;
        margin-top: 5px;
    }

    .why-img {
        height: 280px;
    }

    .btn-red {
        width: 100%;
    }

    .move-video-section {
        padding: 55px 0;
    }

    .move-video-content h2 {
        font-size: 26px;
    }

    .move-video-frame {
        height: 250px;
        border-radius: 16px;
    }

    .move-play-btn {
        width: 68px;
        height: 68px;
        font-size: 22px;
    }

    .move-video-mini-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cta-container h2 {
        font-size: 26px;
    }

    .cta-container p {
        font-size: 14.5px;
    }
}

.domestic-hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg,
            rgb(11, 31, 75) 0%,
            rgb(15, 60, 140) 50%,
            rgb(63, 140, 255) 100%) !important;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

.domestic-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 8%;
}

.domestic-intro-bg {
    background: #f8fbff;
}

.domestic-intro ol {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.di-left {
    flex: 1;
}

.di-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0b1f4b;
}

.di-left p {
    color: #555;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(135deg, #0f3c8c, #3f8cff);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

.di-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-highlights {
    padding: 80px 8%;
    background: #ffffff;
    text-align: center;
}

.service-highlights h2 {
    font-size: 34px;
    margin-bottom: 60px;
    color: #0b1f4b;
}

.S-card {
    padding: 10px;
    border-radius: 20px;
    background: #f4f8ff;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.S-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #0f3c8c, #3f8cff);
    color: #fff;
}

.S-card img {
    width: 100%;
    border-radius: 10px;
}

.S-card h3 {
    margin-bottom: 0px;
    font-size: 20px;
}

.moving-process-2 {
    padding: 80px 8%;
    background: #f0f5ff;
    text-align: center;
    position: relative;
}

.moving-process-2 h2 {
    font-size: 34px;
    margin-bottom: 70px;
    color: #0b1f4b;
}

.moving-process-2 .process-grid-2 {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
}

.moving-process-2 .step-2 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.moving-process-2 .step-2 span {
    display: inline-block;
    background: linear-gradient(135deg, #0f3c8c, #3f8cff);
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-weight: bold;
}

.moving-process-2 .step-2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.moving-process-2 .step-2 h4 {
    font-size: 20px;
    margin-bottom: 0;
}

.moving-process-2 .step-2 p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.3;
}

/* SECTION BACKGROUND */
.steps-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #f9fbff 0%, #eef3ff 100%);
}

/* WRAPPER */
.steps-wrapper {
    max-width: 1300px;
    margin: auto;
}

/* HEADING */
.steps-heading {
    text-align: center;
    margin-bottom: 70px;
}

.steps-heading h2 {
    font-size: 38px;
    color: #0b1f4b;
    margin-bottom: 15px;
}

.steps-heading p {
    font-size: 18px;
    color: #666;
}

/* GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.step-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
}

/* Elegant Number */
.step-number {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f3c8c, #3f8cff);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(63, 140, 255, 0.3);
}

/* Text */
.step-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0b1f4b;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Hover */
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* Tablet */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .steps-section {
        padding: 50px 16px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-heading h2 {
        font-size: 26px;
        margin-top: 4px;
    }

    .steps-heading p {
        font-size: 16px;
    }

    .step-card {
        padding: 30px 20px;
    }
}

/* ---------------------------------------------------------------------------- */
/* ── Section ── */
.values-section {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 70px 5%;
}

/* ── Main content ── */

/* ── Left panel ── */
.values-section .left-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 16px;
}

.values-section .heading-block h2 {
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 0;
}

.values-section .heading-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5b70;
    margin-bottom: 18px;
    max-width: 560px;
}

.values-section .footer-copy {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 48px;
}

/* ── Right panel: 2×2 grid ── */
.values-section .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.values-section .value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--card-border);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.values-section .value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.values-section .value-card.featured {
    background: var(--orange);
    border-color: var(--orange);
}

.values-section .value-card.featured:hover {
    box-shadow: 0 12px 32px rgba(244, 82, 30, 0.3);
}

.values-section .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 36px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.values-section .value-card.featured .card-icon {
    color: var(--white);
}

.values-section .card-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-mid);
    flex: 1;
    margin-bottom: 0;
}

.values-section .value-card.featured .card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.values-section .card-divider {
    height: 1.5px;
    background: var(--card-border);
    margin-top: 14px;
    border-radius: 2px;
}

.values-section .value-card.featured .card-divider {
    background: rgba(255, 255, 255, 0.4);
}

.values-section .card-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text-dark);
}

.values-section .value-card.featured .card-label {
    color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .values-section .values-section {
        padding: 24px 32px 28px;
    }

    .values-section .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-section .left-panel {
        padding-right: 0;
    }

    .values-section .heading-block h2 {
        font-size: 56px;
    }

    .values-section .heading-block p {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .values-section .values-section {
        padding: 20px 20px 24px;
    }

    .values-section .heading-block h2 {
        font-size: 26px;
    }

    .values-section .values-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .values-section .value-card {
        padding: 24px 20px 20px;
    }

    .values-section .card-icon {
        margin-bottom: 24px;
    }
}

/* -------------------------------------------------------- */
:root {
    --form-ink: hsl(0, 0%, 20%);
    --form-blue: #0b4db8;
    --form-blue-light: #2567d1;
    --form-white: #ffffff;
    --form-muted: #6b6b7a;
    --form-border: #e2ddd6;
    --form-req-color: hsl(0, 100%, 60%);
    --form-accent: #2a5c8f;
    --form-radius: 12px;
    --form-shadow: 0 8px 40px rgba(26, 26, 46, 0.1);
}

/* ── Section ── */
.booking-section {
    background: #f6f9ff;
    padding: 70px 5%;
    position: relative;
}

/*.booking-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -120px;*/
/*    right: -120px;*/
/*    width: 420px;*/
/*    height: 420px;*/
/*    border-radius: 50%;*/
/*    background: radial-gradient(circle,*/
/*            rgba(201, 169, 110, 0.12) 0%,*/
/*            transparent 70%);*/
/*    pointer-events: none;*/
/*}*/

.booking-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(42, 92, 143, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
}

.booking-section .booking-inner {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.booking-section .booking-header {
    text-align: center;
    margin-bottom: 44px;
}

.booking-section .booking-header .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--form-blue);
    border: 1px solid var(--form-blue-light);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.booking-section .booking-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--form-ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.booking-section .booking-header h2 span {
    color: var(--form-blue);
}

.booking-section .booking-header p {
    margin-top: 10px;
    color: var(--form-muted);
    font-size: 0.97rem;
    max-width: 520px;
    margin-inline: auto;
}

/* ── Two-Column Layout ── */
.booking-section .booking-columns {
    display: grid;
    grid-template-columns: 3fr 1.1fr;
    gap: 32px;
    align-items: start;
}

/* ── Left Panel ── */
.booking-section .booking-left {
      position: sticky !important;
    top: 1px;
    position: relative;
    height: 575px;
    display: flex;
    align-items: center;
}

.booking-section .left-image {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg,
            var(--form-ink) 0%,
            var(--form-accent) 100%);
    position: relative;
    overflow: hidden;
}

.booking-section .left-info {
    position: absolute;
    left: 0;
    right: 0;
    /* width: 100%; */
    height: -webkit-fill-available;
    background: linear-gradient(to right, #0b4cb4c9, #06347a9c);
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
    padding: 30px 16px;
    border-radius: 14px;
    color: white;
}

.contact-leftimg {
    width: 100%;
    height: stretch;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 14px;
}

.booking-section .left-info h3 {
    font-size: 36px;
    line-height: 1.2;
    color: #0b1f3a;
    margin-bottom: 14px;
}

.booking-section .left-info h3 span {
    color: var(--form-blue);
}

.booking-section .left-info p {
    font-size: 0.92rem;
    color: white;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* .booking-section .trust-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}
.booking-section .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.booking-section .trust-item .t-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: hsl(217, 89%, 96%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.booking-section .trust-item .t-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--form-ink);
    margin-bottom: 2px;
}
.booking-section .trust-item .t-text span {
    font-size: 0.8rem;
    color: var(--form-muted);
} */

/* ── Card ── */
.booking-section .booking-card {
    background: var(--form-white);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid var(--form-border);
}

/* ── Form Grid ── */
.booking-section .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.booking-section .form-group.full {
    grid-column: 1 / -1;
}

.booking-section label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--form-ink);
    letter-spacing: 0.03em;
}

.booking-section label .req {
    color: var(--form-req-color);
    margin-left: 2px;
}

.booking-section input[type="text"],
.booking-section input[type="email"],
.booking-section input[type="date"],
.booking-section .time-fields,
.booking-section .radio-group,
.booking-section input[type="tel"] {
    height: 46px;
    padding: 0 16px;
    border: 1.5px solid var(--form-border);
    border-radius: var(--form-radius);

    font-size: 0.95rem;
    color: var(--form-ink);
    background: #fdfcfa;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    outline: none;
    /* width: 100%; */
}

.booking-section input:focus {
    border-color: var(--form-blue);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.booking-section input::placeholder {
    color: #b0acaa;
}

.radio-group {
    display: flex;
    gap: 20px;
    align-items: stretch;
    /* border: none !important; */
    padding-inline: 0 !important;
}

.radio-option {
    display: flex;
    flex: 1 1;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding-inline: 16px;
    margin-bottom: 0 !important;
}

.radio-option input {
    margin: 0;
}

.booking-section .time-fields {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-inline: 10px;
}

.booking-section .time-fields input {
    flex: 1;
    padding: 4px;
    border: none;
    font-size: 14px;
    background: transparent;
}

.booking-section .time-separator {
    font-weight: 600;
    color: #555;
}

@media (max-width: 600px) {
    .booking-section .time-separator {
        text-align: center;
    }
}

/* ── Divider ── */
.booking-section .section-divider {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 4px 0;
}

.booking-section .section-divider::before,
.booking-section .section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--form-border);
}

.booking-section .section-divider span {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--form-muted);
    white-space: nowrap;
}

/* ── Appointment Type Toggle ── */
.booking-section .type-toggle {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-section .type-option {
    position: relative;
}

.booking-section .type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.booking-section .type-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--form-border);
    border-radius: var(--form-radius);
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s,
        box-shadow 0.2s;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--form-muted);
}

.booking-section .type-option label:hover {
    border-color: var(--form-blue-light);
    background: hsl(217, 89%, 96%);
}

.booking-section .type-option input:checked+label {
    border-color: var(--form-blue);
    background: hsl(217, 89%, 96%);
    color: var(--form-ink);
    font-weight: 500;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.booking-section .type-option label .icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--form-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.booking-section .type-option input:checked+label .icon {
    background: hsl(217, 89%, 90%);
}

.booking-section .type-option label .label-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-section .type-option label .label-sub {
    font-size: 0.74rem;
    color: var(--form-muted);
    font-weight: 300;
}

/* ── Date & Time Dropdown Panel ── */
.booking-section .datetime-panel {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease,
        margin 0.4s ease;
    margin-top: 0;
}

.booking-section .datetime-panel.open {
    max-height: 900px;
    opacity: 1;
    margin-top: 4px;
}

.booking-section .datetime-inner {
    border: 1.5px solid var(--form-blue-light);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-section .dt-section-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--form-blue);
    margin-bottom: 10px;
}

/* ── Calendar ── */
.booking-section .cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.booking-section .cal-nav button {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--form-border);
    border-radius: 8px;
    background: var(--form-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--form-ink);
    transition:
        border-color 0.2s,
        background 0.2s;
    font-size: 1rem;
}

.booking-section .cal-nav button:hover {
    border-color: var(--form-blue);
    background: #fdf8ef;
}

.booking-section .cal-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--form-ink);
}

.booking-section .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-section .cal-day-name {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--form-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 0;
}

.booking-section .cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.15s;
    color: var(--form-ink);
    user-select: none;
    background: var(--form-white);
}

.booking-section .cal-day:hover:not(.disabled):not(.empty) {
    border-color: var(--form-blue-light);
    background: hsl(217, 89%, 96%);
}

.booking-section .cal-day.selected {
    background: var(--form-blue);
    color: var(--form-white);
    font-weight: 600;
    border-color: var(--form-blue);
}

.booking-section .cal-day.today:not(.selected) {
    border-color: var(--form-accent);
    color: var(--form-accent);
    font-weight: 600;
}

.booking-section .cal-day.disabled {
    color: hsl(0, 0%, 20%);
    cursor: not-allowed;
    background: transparent;
}

.booking-section .cal-day.empty {
    cursor: default;
    background: transparent;
    border: none;
}

/* ── Time Slots ── */
.booking-section .slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 7px;
}

.booking-section .slot-btn {
    padding: 8px 4px;
    border: 1.5px solid var(--form-border);
    border-radius: 9px;
    background: var(--form-white);

    font-size: 0.8rem;
    color: var(--form-muted);
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}

.booking-section .slot-btn:hover {
    border-color: var(--form-blue-light);
    color: var(--form-ink);
    background: #fdf8ef;
}

.booking-section .slot-btn.active {
    background: var(--form-ink);
    border-color: var(--form-ink);
    color: var(--form-white);
    font-weight: 500;
}

/* ── Submit ── */
.booking-section .submit-row {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.booking-section .btn-submit {
    width: 100%;
    height: 52px;
    color: var(--form-white);
    border: none;
    border-radius: var(--form-radius);

    font-size: 0.97rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.booking-section .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 169, 110, 0.5);
}

.booking-section .btn-submit:active {
    transform: translateY(0);
}

.booking-section .btn-submit svg {
    flex-shrink: 0;
}

.booking-section .form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 0.78rem;
    margin-bottom: 0;
    color: var(--form-muted);
}

/* ── Success State ── */
.booking-section .success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.booking-section .success-message .check {
    width: 64px;
    height: 64px;
    background: #edf8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
}

.booking-section .success-message h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--form-ink);
}

.booking-section .success-message p {
    color: var(--form-muted);
    margin-top: 8px;
    font-size: 0.95rem;
}

/* -------------------- */
.booking-section .services-header {
    text-align: start;
}

.booking-section .services-header h2 span {
    display: block;
    color: white;
}


/* new--updated css for card section--v */
.fourstep-cards-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: stretch;
    position: relative;
    z-index: -99;
}

.fourstep-card:first-child::after {
    width: 200%;
    height: 200%;
    bottom: -50%;
    right: -50%;
    border-radius: 28px;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    opacity: 1;
}

.fourstep-card:first-child .fourstep-card-title,
.fourstep-card:first-child .fourstep-card-description,
.fourstep-card:first-child .fourstep-card-footnote {
    color: white;
}



/* Jab kisi bhi card pe hover ho, first card normal ho jaye */
.fourstep-cards-grid:hover .fourstep-card:first-child::after {
    width: 85px;
    height: 85px;
    bottom: -30px;
    right: -30px;
    border-radius: 50%;
    opacity: 0.85;
}

.fourstep-cards-grid:hover .fourstep-card:first-child .fourstep-card-title {
    color: #111827;
}

.fourstep-cards-grid:hover .fourstep-card:first-child .fourstep-card-description {
    color: #2c3e4e;
}

.fourstep-cards-grid:hover .fourstep-card:first-child .fourstep-card-footnote {
    color: #4b5563;
}

/* ===== CARD ===== */
.fourstep-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 28px;
    width: 100%;
    min-height: 380px;
    /* padding: 1.8rem 1.5rem; */
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

/* CIRCLE EFFECT */
.fourstep-card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    opacity: 0.85;
    z-index: 1;
    transition: all 1.6s cubic-bezier(0.2, 0.95, 0.4, 1.1);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.fourstep-card:hover::after {
    width: 200%;
    height: 200%;
    bottom: -50%;
    right: -50%;
    border-radius: 28px;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    opacity: 1;
    box-shadow: none;
}

/* ===== CONTENT ===== */
.fourstep-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    gap: 1rem;
    padding: 1.8rem 1.5rem;
}

.fourstep-card:first-child:hover .fourstep-step-badge {
    background: #f97316;
    color: #ffffff;
}

/* STEP BADGE */
/* .fourstep-card:first-child .fourstep-step-badge {
     background: rgba(255, 255, 255, 0.25);
} */
/* .fourstep-step-badge:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    width: 48px;
    height: 48px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 8px 14px -8px rgba(0,0,0,0.1);
    transition: all 0.25s;
    font-family: monospace;
} */
.fourstep-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f97316;
    width: 48px;
    height: 48px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 8px 14px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.25s;
    font-family: monospace;
}

.fourstep-card:hover .fourstep-step-badge {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    color: #ffffff;
}

#iq_congestion {
    width: auto !important;
}

/* TITLE */
.fourstep-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #111827;
    margin-top: 0.25rem;
    transition: color 0.25s, text-shadow 0.2s;
    line-height: 1.3;
}

.fourstep-card:hover .fourstep-card-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* DESCRIPTION */
.fourstep-card-description {
    color: #2c3e4e;
    line-height: 1.45;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.25s;
}

.fourstep-card:hover .fourstep-card-description {
    color: #fff8ed;
}

/* DIVIDER */
.fourstep-divider {
    height: 2px;
    width: 40px;
    background-color: #0b4db8;
    margin: 0.5rem 0 0.2rem;
    transition: background-color 0.3s, width 0.2s;
}

.fourstep-card:hover .fourstep-divider {
    background-color: #ffdd99;
    width: 65px;
}

/* FOOTER */
.fourstep-card-footnote {
    font-size: 0.8rem;
    margin-top: auto;
    font-weight: 500;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.fourstep-card:hover .fourstep-card-footnote {
    color: #fff3e0;
}

.fourstep-arrow-hint {
    font-size: 1.2rem;
    transition: transform 0.2s;
    display: inline-block;
}

.fourstep-card:hover .fourstep-arrow-hint {
    transform: translateX(4px);
}

/* HOVER */
.fourstep-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 40px -18px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .fourstep-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 640px) {
    .fourstep-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .header-getprice {
        display: inline-block;
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 600;
        color: #fff !important;
        background: linear-gradient(to right, #0b4cb4, #06347a);
        border-radius: 50px;
        text-decoration: none;
        margin-top: 11px;
        margin-bottom: 12px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0px 4px rgb(8 64 151 / 78%);
        width: max-content;
        margin-left: 16px;
}
}

/* SECTION */
.fourstep-cards-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    position: relative;
    z-index: 0;

}

/* end for new updated css--v */



/* quick form design css code start */

.fast-formnew {

    /* ===== CARD ===== */
    .quick-booking {
        width: 100%;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 30px 60px rgba(11, 76, 180, .15);
        overflow: hidden;
    }

    .container {
        padding: 2.5rem 2rem 2.5rem 2rem;
    }

    h2 {
        text-align: center;
        margin: 0px 0px 10px 0px;
        font-size: 2.1rem;
        font-weight: 700;
        background: linear-gradient(135deg, #0b4cb4, #06347a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .subtitle {
        text-align: center;
        font-size: .9rem;
        color: #64748b;
        margin: 7px 0px 36px 0px;
    }



    /* ===== FORM ===== */
    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: .9rem;
    }

    .form-grid.three {
        grid-template-columns: repeat(3, 1fr)
    }

    input,
    select {
        width: 100%;
        padding: .85rem 1rem !important;
        border-radius: .9rem !important;
        border: 1.5px solid #e2e8f0 !important;
        font-family: 'DM Sans', sans-serif !important;
        font-size: .93rem !important;
        color: #1e293b !important;
        background: #f8fafc !important;
        transition: border .2s !important;
        outline: none !important;
        max-width: -webkit-fill-available !important;
        height: auto !important;
    }

    input:focus,
    select:focus {
        border-color: #0b4cb4;
        background: #ffffff;
    }

    /* inventory button */
    .inv-main-btn {
        margin-top: 1.4rem;
        padding: .7rem 1.4rem;
        border-radius: 2rem;
        border: 1.5px solid #f97316;
        background: rgba(249, 115, 22, .12);
        color: #f97316;
        font-family: 'DM Sans', sans-serif;
        font-size: .9rem;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        transition: background .2s, transform .15s;
    }

    .inv-main-btn:hover {
        background: rgba(249, 115, 22, .22);
        transform: scale(1.02);
    }

    /* summary badge */
    #invSummary {
        display: none;
        margin-top: .8rem;
        font-size: .82rem;
        color: #64748b;
        padding: .4rem .9rem;
        background: #f1f5f9;
        border-radius: 2rem;
        width: fit-content;
    }

    /* submit */
    .submit-btn {
        margin-top: 1.8rem;
        width: 100%;
        padding: 1rem;
        border: none;
        border-radius: 2rem;
        background: linear-gradient(135deg, #0b4cb4, #06347a);
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: .04em;
        cursor: pointer;
        transition: opacity .2s, transform .15s, box-shadow .2s;
        /* box-shadow: 0 8px 20px rgba(11, 76, 180, .3); */
    }

    button:disabled{
            opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
    }

    .submit-btn:hover {
        opacity: .92;
        transform: translateY(-1px);
        box-shadow: 0 12px 28px rgba(11, 76, 180, .35);
    }

    /* ===== OVERLAY ===== */
    .inventory-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 999;
        padding: 1rem;
        backdrop-filter: blur(3px);
    }

    .inventory-modal.active {
        display: flex
    }

    /* ===== MODAL PANEL ===== */
    .inventory-modal-content {
        width: 100%;
        max-width: 860px;
        max-height: 88vh;
        background: #ffffff;
        border-radius: 1.5rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 40px 80px rgba(0, 0, 0, .25);
        padding-bottom: 26px;
    }

    /* modal header */
    .modal-header {
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
    }

    .modal-header h3 {

        font-weight: 700;
        font-size: 1.15rem;
        color: #06347a;
    }

    .close-modal {
        border: none;
        background: #fee2e2;
        color: #dc2626;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .2s;
        padding: 0 !important;
    }

    .close-modal:hover {
        background: #fecaca
    }

    /* modal body */
    .modal-body {
        display: flex;
        flex: 1;
        overflow: auto;
    }

    /* sidebar */
    .room-sidebar {
        width: 200px;
        flex-shrink: 0;
        border-right: 1px solid #e2e8f0;
        overflow-y: auto;
        padding: .75rem .5rem;
        background: #f8fafc;
    }

    .room-tab {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .65rem .85rem;
        border-radius: .75rem;
        cursor: pointer;
        font-size: .88rem;
        font-weight: 500;
        color: #64748b;
        transition: background .15s, color .15s;
        margin-bottom: .25rem;
        border: none;
        background: transparent;
        width: 100%;
        text-align: left;
    }

    .room-tab .tab-icon {
        font-size: 1.1rem
    }

    .room-tab .tab-count {
        margin-left: auto;
        font-size: .75rem;
        font-weight: 700;
        background: rgba(249, 115, 22, .12);
        color: #f97316;
        border-radius: 1rem;
        padding: .05rem .45rem;
        display: none;
    }

    .room-tab .tab-count.visible {
        display: inline-block
    }

    .room-tab:hover {
        background: #eff3fb;
        color: #0b4cb4;
    }

    .room-tab.active {
        background: linear-gradient(135deg, #dbeafe, #eff6ff);
        color: #0b4cb4;
        font-weight: 600;
    }

    /* content */
    .room-content {
        flex: 1;
        overflow-y: auto;
        padding: 1rem 1.2rem;
    }

    .room-panel {
        display: none
    }

    .room-panel.active {
        display: block
    }

    .room-panel h4 {

        font-size: 1rem;
        font-weight: 700;
        color: #06347a;
        margin-bottom: 1rem;
        padding-bottom: .5rem;
        border-bottom: 2px solid #f97316;
        display: inline-block;
    }

    /* items */
    .item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .5rem .6rem;
        border-radius: .65rem;
        margin-bottom: .3rem;
        transition: background .15s;
    }

    .item-row:hover {
        background: #f8fafc
    }

    .item-check-label {
        display: flex;
        align-items: center;
        gap: .6rem;
        font-size: .88rem;
        cursor: pointer;
        flex: 1;
    }

    .item-check-label input {
        width: 16px;
        height: 16px;
        accent-color: #0b4cb4;
    }

    .item-name {
        color: #1e293b
    }

    .item-cuft {
        font-size: .75rem;
        color: #64748b;
        margin-left: .3rem;
    }

    /* qty */
    .qty {
        display: flex;
        align-items: center;
        gap: .4rem;
        opacity: .3;
        pointer-events: none;
    }

    .qty.enabled {
        opacity: 1;
        pointer-events: all
    }

    .qty button {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1.5px solid #e2e8f0;
        background: #ffffff;
        color: #005eff;
        cursor: pointer;
        padding: 0;
        font-weight: 800;
    }

    .qty button:hover {
        border-color: #0b4cb4;
        background: #eff6ff;
    }

    .qty-val {
        min-width: 22px;
        text-align: center
    }

    /* footer */
    .modal-footer {
        padding: 1rem 1.5rem;
        border-top: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        background: #fafbfc;
    }

    .modal-footer .total-cuft {
        font-size: .85rem;
        color: #64748b
    }

    .modal-footer .total-cuft strong {
        color: #0b4cb4
    }

    .modal-save-btn {
        padding: .65rem 1.6rem;
        border: none;
        border-radius: 2rem;
        background: linear-gradient(135deg, #0b4cb4, #06347a);
        color: #fff;
        font-weight: 600;
        cursor: pointer;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:640px) {
        .form-grid {
            grid-template-columns: 1fr
        }

        .form-grid.three {
            grid-template-columns: 1fr
        }

        .container {
            padding: 1.5rem 1rem
        }

        h2 {
            font-size: 1.6rem
        }

        .modal-body {
            flex-direction: column
        }

        .room-sidebar {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            overflow-x: auto;
            gap: .4rem;
        }
    }

    @media(max-width:480px) {
        .inventory-modal-content {
            max-height: 95vh;
            border-radius: 1rem;
        }
    }
}

/* quick form design css code end */




/* banner form css  ---------------------------*/
mrf2-wrap {
    font-family: var(--font-sans);
    max-width: 560px;
    margin: 0 auto;
    padding: 1rem 0
}

.mrf2-card {
    background: var(--color-background-primary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem
}

.mrf2-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 1.25rem
}

.mrf2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.mrf2-group {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.mrf2-label {
    font-size: 12px;
    color: var(--color-text-secondary)
}

.mrf2-group input,
.mrf2-group select {
    height: 38px;
    padding: 0 12px;
    border: 0.5px solid var(--color-border-secondary);
    border-radius: var(--border-radius-md);
    background: var(--color-background-primary);
    color: var(--color-text-primary);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    width: 100%
}

.mrf2-group input:focus,
.mrf2-group select:focus {
    border-color: var(--color-border-primary);
    box-shadow: 0 0 0 2px rgba(120, 120, 255, 0.1)
}

.mrf2-group input[type=date] {
    color: var(--color-text-primary)
}

 .custom-formmt{
    margin-top: 16px;
 }


.mrf2-hidden {
    display: none !important
}

/* end banner css form  */
/* book survey css modal ----------------------*/
.survey-stepsform{
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    margin-top: 7px;
}
#packItemsSubtotal {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  display: contents;
}
.need-delivermodal{
  margin-bottom: 2px;
}
/* book survey css end modal ----------------------*/



/* ── Responsive ── */
@media (max-width: 860px) {
    .booking-section .booking-columns {
        grid-template-columns: 1fr;
    }

    .booking-section .booking-left {
        position: static;
    }

    .logo {
        height: 66px;
    }

    .moving-process-2 .process-grid-2 {
        display: grid;
        justify-content: space-between;
        position: relative;
        gap: 30px;
    }
}

@media (max-width: 580px) {
    .booking-section .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-section .form-group.full {
        grid-column: 1;
    }

    .booking-section .type-toggle {
        grid-template-columns: 1fr;
    }

    .booking-section .section-divider {
        grid-column: 1;
    }

    .booking-section .submit-row {
        grid-column: 1;
    }

    .booking-section .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .booking-section .booking-card {
        padding: 20px 16px;
    }

    .happy-customerstar p {
        font-size: 12px !important;
    }

    .happy-customer {
        display: block;
    }

    .form-shiled img {
        width: 80px;
        height: auto;
        position: relative;
        top: 0px;
    }

    .blue-tick {
        padding-left: 0px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .happy-customerimg img {
        width: 70px;
        height: auto;
    }

    .happy-customerstar img {
        width: 80px;
        height: auto;
        margin-bottom: 3px;
    }
}

.contact-services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b4db8;
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .hero-content {
        gap: 54px;
    }

    .tag {
        background: white;
        color: #0b4cb4;
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 12px;
    }

    #iq2_toggleInventory {
        font-size: 12px;
        padding: 8px 12px !important;
    }

    .fast-formnew {
        .room-tab {
            padding: 0px 16px;
        }
    }

    .hero {
        background: linear-gradient(to right, #0b4cb4, #06347a);
        color: white;
        padding: 30px 5%;
    }

    .img-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        overflow: hidden;
        transform: scale(1.1);
        transition: all .5s;
    }

    .banner-boxheading {
        line-height: normal !important;
    }

    .services {
        padding: 50px 14px;
        background: #f8f9fc;
    }

    .services-header p {
        font-size: 14px;
        color: #6c757d;
        margin-top: 10px;
    }

    .cta-btn {
        display: inline-block;
        padding: 15px 24px;
        background: #f97316;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        border-radius: 8px;
        transition: 0.3s ease;
        font-size: 14px;
    }

    .testimonials {
        background: linear-gradient(to right, #0b4cb4, #06347a);
        text-align: center;
        padding: 60px 20px;
        position: relative;
    }

    .testimonials-header h2 {
        font-size: 26px;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .testimonials-header p {
        font-size: 14px;
        color: #dbdbdb;
        margin-top: 10px;
    }

    .about-hero {
        position: relative;
        padding: 50px 20px;
        text-align: center;
        color: #fff;
        background: linear-gradient(135deg, #0b1f4b 0%, #0f3c8c 50%, #3f8cff 100%);
        overflow: hidden;
    }

    .why-wrapper {
        display: block;
    }

    .about-hero .hero-container h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .about-hero p {
        font-size: 15px;
        opacity: 0.9;
        line-height: normal;
        color: #f1f1f1;
        /* margin: 0px; */
    }

    .about-wrapper {
        padding: 50px 5%;
    }

    .about-content h2 {
        font-size: 28px;
        margin-top: 4px;
    }

    .about-content p {
        font-size: 15px;
    }

    .why-section {
        padding: 50px 4%;
        background: #f6f9ff;
    }

    .why-heading h2 {
        font-size: 28px;
        line-height: 1.2;
        color: #0b1f4b;
        margin-bottom: 12px;
        margin-top: 4px;
    }

    .why-heading p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .why-cards {
        gap: 14px;
    }

    .why-card {
        padding: 12px;
    }

    .why-card p {
        color: #666;
        line-height: 1.6;
        font-size: 14px;
    }

    .hm-approach-photo-sm,
    .hm-approach-photo-lg {

        aspect-ratio: 8 / 5 !important;
    }

    .hm-approach-badge-card {
        padding: 0px 18px !important;
        text-align: center;
    }

    .hm-approach-tag {
        margin-top: 12px !important;
    }

    .steps-heading {
        text-align: center;
        margin-bottom: 30px;
    }

    .domestic-hero .hero-container h1 {
        font-size: 26px;
        margin: 0;
    }

    .domestic-hero .hero-container p {
        font-size: 15px;
        margin-top: 12px;
    }

    .domestic-hero {
        position: relative;
        padding: 60px 14px;
        text-align: center;
        color: #fff;
        background: linear-gradient(135deg, rgb(11, 31, 75) 0%, rgb(15, 60, 140) 50%, rgb(63, 140, 255) 100%) !important;
        overflow: hidden;
    }

    .di-left h2 {
        font-size: 26px;
        margin: 0px 0px 17px 0px;
    }

    .domestic-intro {
        padding: 60px 5%;
        gap: 42px;
    }

    .service-highlights h2 {
        font-size: 26px;
        margin: 0px 0px 37px 0px;
        color: #0b1f4b;
    }

    .footer-left img {
        width: 100px;
        margin-bottom: 15px;
    }

    .service-highlights {
        padding: 50px 5%;
        background: #ffffff;
        text-align: center;
    }

    .moving-process-2 h2 {
        font-size: 26px;
        margin: 0px 0px 37px 0px;
        color: #0b1f4b;
    }

    .moving-process-2 {
        padding: 50px 5%;
    }

    .contact-clean {
        padding: 60px 5%;
        background: #f4f7fb;
        font-family: "Poppins", sans-serif;
    }

    .footer-links {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-bottom p {
        margin: 0px 0px 10px 0px;
    }

    .footer {
        background: #0b0c10;
        color: #ddd;
        padding-top: 40px;
    }
}

.summary-box {
    padding: 13px 15px;
    background: light-dark(rgba(245, 244, 237, 1), rgba(38, 38, 36, 1));
    border: 1.5px solid light-dark(rgba(245, 244, 237, 1), rgba(38, 38, 36, 1));
    border-radius: 12px;
    margin-top: 14px;
}

.summary-title {
    font-size: 13px;
    font-weight: 500;
    color: light-dark(rgba(20, 20, 19, 1), rgba(250, 249, 245, 1));
    margin-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 3px 0;
    color: light-dark(rgba(61, 61, 58, 1), rgba(194, 192, 182, 1));
}
.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 0.5px solid light-dark(rgba(31, 30, 29, 0.15), rgba(222, 220, 209, 0.15));
    margin-top: 8px;
}

.summary-total-label {
    font-size: 14px;
    font-weight: 500;
    color: light-dark(rgba(20, 20, 19, 1), rgba(250, 249, 245, 1));
}
.summary-total-val {
    font-size: 18px;
    font-weight: 500;
    color: #1e3a8a;
}
.ticker-label {
    font-size: 16px;
    color: #1e40af;
    font-weight: 500;
    text-align: start;
}
#packTickerAmt{
    font-size: 20px;
    font-weight: 500;
    color: #1e3a8a;
    transition: all 0.2s;
}
#packTickerSub{
    font-size: 13px;
    color: #3b82f6;
    margin-top: 2px;
}
#packPriceTicker{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    background: #eff6ff;
    margin-top: 14px;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    margin-bottom: 14px;
}


/* Instant Removal Price css  modal====================================== */
.mvs-trigger-btn {
  background: #1a1a2e;
  color: #fff;
  border: none;
     padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: inline-block;
 margin-bottom: 10px;
}
.mvs-trigger-btn:hover { background: #2a2a45; }
 
/* OVERLAY */
.mvs-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  overflow-y: auto;
  padding: 30px 16px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.mvs-overlay.mvs-visible {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
 
/* MODAL */
.mvs-modal {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: auto;
  box-sizing: border-box;
  animation: mvsPopIn 0.2s ease both;
  height: 90vh;
}
@keyframes mvsPopIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
 
/* HEADER */
.mvs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
  box-sizing: border-box;
}
.mvs-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mvs-header-icon {
  width: 36px;
  height: 36px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mvs-header-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
.mvs-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dddddd;
  background: #ffffff;
  cursor: pointer;
  font-size: 15px;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.12s;
}
.mvs-close-btn:hover { background: #f5f5f5; color: #111; }
 
/* BODY */
.mvs-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
 
/* SERVICE CARD */
.mvs-card {
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}
 
/* CARD HEADER */
.mvs-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  gap: 8px;
  box-sizing: border-box;
}
.mvs-card-header:hover { background: #fafafa; }
 
.mvs-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  flex: 1;
  min-width: 0;
}
.mvs-card-emoji {
  font-size: 16px;
  flex-shrink: 0;
}
 
/* CHEVRON ARROW */
.mvs-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.mvs-arrow.mvs-arrow-open {
  transform: rotate(180deg);
}
 
/* CARD CONTENT */
.mvs-card-content {
  background: #f9f9f9;
  border-top: 1px solid #efefef;
  padding: 16px;
  box-sizing: border-box;
}
.mvs-card-content.mvs-collapsed {
  display: none;
}
 
/* TWO COLUMN GRID — minmax(0) prevents overflow */
.mvs-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  box-sizing: border-box;
}
 
/* SINGLE COLUMN */
.mvs-grid-1 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
/* FIELD */
.mvs-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  box-sizing: border-box;
}
 
/* FIELD LABEL */
.mvs-field-label {
  font-size: 12px;
  font-weight: 500;
  color: #444444;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.mvs-field-label .mvs-price {
  color: #999999;
  font-weight: 400;
}
 
/* NUMBER STEPPER */
.mvs-stepper {
  display: flex;
  align-items: stretch;
  height: 44px;
  border: 1.5px solid #dddddd;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.14s;
}
.mvs-stepper:focus-within {
  border-color: #888888;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
 
.mvs-stepper-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: none;
  background: #f4f4f4;
  color: #222222;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: inherit;
  line-height: 1;
  transition: background 0.1s;
  padding: 0;
}
.mvs-stepper-btn:hover { background: #ebebeb; }
.mvs-stepper-btn:active { background: #dddddd; }
 
.mvs-stepper-input {
  flex: 1;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  outline: none;
  font-family: inherit;
  min-width: 0;
  width: 100%;
  -moz-appearance: textfield;
}
.mvs-stepper-input::-webkit-outer-spin-button,
.mvs-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
 
/* SELECT */
.mvs-select {
  width: 100%;
  height: 44px;
  padding: 0 38px 0 13px;
  border: 1.5px solid #dddddd;
  border-radius: 10px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23aaa' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  font-family: inherit;
  color: #111111;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.14s;
}
.mvs-select:focus {
  border-color: #888888;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.mvs-select.mvs-select-accent {
  border-color: #e6a500;
  box-shadow: 0 0 0 3px rgba(230, 165, 0, 0.12);
}
 
/* INFO NOTE */
.mvs-info-note {
  font-size: 12.5px;
  color: #888888;
  background: #efefef;
  border-radius: 8px;
  padding: 10px 13px;
  line-height: 1.6;
  box-sizing: border-box;
}
 
/* FOOTER */
.mvs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 20px;
  border-top: 1px solid #e8e8e8;
  gap: 12px;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.mvs-total-label {
  font-size: 12px;
  color: #999999;
  margin-bottom: 3px;
}
.mvs-total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
}
.mvs-confirm-btn {
  background: #1a1a2e;
  color: #ffffff;
  border: none;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.mvs-confirm-btn:hover { background: #2a2a45; }
.mvs-confirm-btn:active { transform: scale(0.97); }
 
 
/* RESPONSIVE */
@media (max-width: 560px) {
  .mvs-overlay { padding: 20px 12px; }
  .mvs-header { padding: 15px 14px; }
  .mvs-body { padding: 12px 14px; }
  .mvs-card-content { padding: 14px; }
  .mvs-grid-2 { grid-template-columns: minmax(0, 1fr); }
  .mvs-footer {
    padding: 14px 14px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .mvs-confirm-btn { text-align: center; width: 100%; }
}
 
 /* Instant Removal Price css end modal====================================== */
 
 #iq_pickup_lift{
        width: min-content !important;
 }
 #iq_delivery_lift{
     width: min-content !important;
 }
 .add-packingbtns{
    display: flex;
    gap: 14px;
    margin-top: 11px;
 }
 
   .appt-floating-main {
    bottom: 4px;
    position: absolute;
    left: 0;
    right: 0;
    padding: 30px;
 
   .appt-float-card {
  flex: 1;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
 
.appt-float-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.appt-card-quick::before  { background: #378ADD; }
 
 
/* Icon Box */
.appt-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.appt-card-quick   .appt-card-icon { background: #E6F1FB; }
 
 
.appt-card-icon svg {
  width: 18px;
  height: 18px;
}
.appt-card-quick   .appt-card-icon svg { stroke: #185FA5; }
 
 
/* Label */
.appt-card-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.appt-card-quick   .appt-card-label { 
    color: #185FA5;
        margin-bottom: 2px !important;
        font-size: 16px;
        font-weight: 600;
}
 
 
/* Title */
.appt-card-title {
  font-size: 14px !important;
        font-weight: 500;
        color: #1a1a1a !important;
        margin: 0;
        line-height: 1.3 !important;
        margin-bottom: 3px !important;
}
 
/* Description */
.appt-card-desc {
        font-size: 12px !important;
        color: #666 !important;
        margin: 0;
        line-height: 1.5 !important;
        margin-bottom: 3px !important;
}
 
/* Badge (Quick card) */
.appt-card-badge {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 20px;
  background: #E6F1FB;
  color: #185FA5;
}
 
/* Divider (Support card) */
.appt-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(0, 0, 0, 0.1);
  margin: 4px 0;
}
 
}



/* packing form css -----------------------------*/
  .custom-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 16px;
  }

  .custom-modal.active {
    display: flex;
    animation: fadeIn 0.25s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Modal Box */
  .modal-content {
    background: #fff;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes slideUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Modal Header */
  .modal-header {
    padding: 24px 28px 20px;
    border-bottom: 1px solid #f0ede8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    border-radius: 20px 20px 0 0;
  }

  .modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1a1a1a;
  }

  .close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0ede8;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #1a1a1a;
  }

  .close-btn:hover {
    background: #e0dbd4;
  }

  /* Progress Bar */
  .progress-bar {
    height: 3px;
    background: #f0ede8;
    position: relative;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    transition: width 0.4s ease;
  }

  /* Steps Container */
  .steps-wrapper {
    padding: 4px 10px 10px;
  }

  /* Step */
  .step {
    display: none;
    animation: stepIn 0.3s ease;
  }

  .step.active {
    display: block;
  }

  @keyframes stepIn {
    from {
      opacity: 0;
      transform: translateX(16px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .step-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
  }

  .step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: 10px;
  }

  .where-movingmb {
    margin-bottom: 20px;
  }

  /* Input Fields */
  .field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 4px;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
  }

  .field label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-align: start;
  }

  .field input[type="text"],
  .field input[type="tel"],
  .field input[type="email"] {
    border: 1.5px solid #e8e5e0;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #1a1a1a;
  }

  .field input:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
  }

  /* Yes/No Toggle Buttons */
  .yn-group {
    display: flex;
    gap: 12px;
    margin-bottom: 4px;
  }

  .yn-btn {
    flex: 1;
    padding: 8px;
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .yn-btn:hover {
    color: #ffffff;
    background: linear-gradient(to right, #0b4cb4, #06347a);
  }

  .yn-btn.selected-yes {
    background: linear-gradient(to right, #0b4cb4, #06347a);
    color: #fff;
  }

  .yn-btn.selected-no {

    background: #f5f3f0;
    color: #666;
  }

  /* Packing Items */
  .packing-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding: 16px;
    background: #f8f6f3;
    border-radius: 12px;
    border: 1.5px solid #ede9e3;
  }

  .pack-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .pack-item-name {
    font-size: 13px;
    color: #444;
    font-weight: 500;
  }

  .pack-item-price {
    font-size: 12px;
    color: #999;
    margin-top: 1px;
    text-align: start;
  }

  .qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    color: #000;
    font-weight: 600;
  }

  .qty-btn:hover {
    background: linear-gradient(to right, #0b4cb4, #06347a);
    color: #fff;
    border-color: #1a1a1a;
  }

  .qty-val {
    font-size: 14px !important;
    font-weight: 600 !important;
    min-width: 20px !important;
    text-align: center !important;
    color: #1a1a1a !important;
    margin: 0 !important;
  }

  /* Navigation */
  .step-nav {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }

  .btn-back {
    padding: 12px 20px;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
  }

  .btn-back:hover {
    background: #f5f3f0;
  }

  .btn-next {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }

  .btn-next:hover {
    background: linear-gradient(to right, #3968b5, #437fd9);
  }

  .btn-next:active {
    transform: scale(0.98);
  }

  .btn-next:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  /* Success */
  .success-view {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    text-align: center;
    gap: 16px;
  }

  .success-view.active {
    display: flex;
    animation: stepIn 0.4s ease;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
  }

  .success-view h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a1a1a;
  }

  .success-view p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
  }

  .btn-done {
    margin-top: 8px;
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #0b4cb4, #06347a);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }

  .hidden {
    display: none !important;
  }

  /* packing css end----------------------- */
  #iq2_formStep {
    width: 100%;
    padding: 5px 5% 32px 5%;

    h4 {
      margin: 0;
      margin-top: 14px;
    }

    h5 {
      margin: 17px 0px 9px 0px;
    }

    .summary-total {
      padding-bottom: 20px;
    }

    .form-group {
      margin-top: 16px;
    }
  }


/* index page css optimize here -----------------------*/
 .suggestion-list {
    display: none;
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 200px;
    top: 45px;
    left: 0px;
    padding: 7px 7px;
    list-style: none;
    background: #fff;
    box-shadow: 3px 3px 5px 1px #dedede;
    border: 1px solid #dedede;
    border-radius: 5px;
    overflow: auto;
  }

  .suggestion-list li {
    border-bottom: 1px solid #dedede;
    padding: 8px 0;
    line-height: 23px;
    cursor: pointer;
    color: linear-gradient(to right, #3968b5, #437fd9);
  }

  .quote-form .form-row {
    margin-bottom: 0;
  }

  #timeRange,
  #BookingDate {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    transition: all .25s ease;
  }

  #timeRange:focus,
  #BookingDate:focus {
    border-color: #f97316;
    outline: none;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
  }

  .error-text {
    color: #e11d48;
    font-size: 13px;
    margin-top: 4px;
    display: block;
  }

  .response {
    text-align: center;
    padding-top: 17px;
    color: #0d850d;
  }

  /* ── Route info badge ────────────────────────────────── */
  .iq-route-info {
    margin-top: 8px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #0369a1;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* ── Price Panel ─────────────────────────────────────── */
  .iq-price-panel {
    background: linear-gradient(135deg, #0f4fa8 0%, #1565c0 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 24px;
    color: #fff;
    animation: iqFadeIn .4s ease;
  }

  @keyframes iqFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px)
    }

    to {
      opacity: 1;
      transform: none
    }
  }

  .iq-price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .iq-price-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .iq-label {
    font-size: 13px;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .05em;
  }

  .iq-grand-total {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
  }

  .iq-discount-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    margin-top: 4px;
  }

  .iq-crew-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }

  .iq-crew-badge {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
    padding: 8px 14px;
    text-align: center;
    font-size: 13px;
  }

  .iq-crew-badge strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
  }

  .iq-breakdown {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 16px;
    display: grid;
    gap: 6px;
  }

  .iq-brow {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: .9;
  }

  .iq-brow.iq-total {
    font-weight: 700;
    font-size: 16px;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 8px;
    margin-top: 4px;
  }

  .iq-cta-row {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .iq-book-btn {
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: .2s;
    margin-bottom: 10px;
  }

  .iq-book-btn:hover {
    background: #e55a00;
    transform: scale(1.03);
    color: #fff;
  }

  .iq-note {
    font-size: 12px;
    opacity: .7;
    margin: 0;
  }

  /* ── Field helpers ───────────────────────────────────── */
  .iq-field-wrap {
    position: relative;
    width: 100%;
  }

  .iq-prop-wrap {
    position: relative;
  }

  .iq-prop-input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
  }

  .iq-prop-dropdown {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 420px;
    background: #fff;
    border: 1px solid #cfe3ff;
    border-radius: 10px;
    padding: 16px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    flex-wrap: nowrap;
  }

  .iq-prop-dropdown.open {
    display: flex;
  }

  .iq-dd-col {
    width: 33%;
    padding: 0 8px;
  }

  .iq-dd-title {
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .iq-dd-icon {
    width: 18px;
  }

  .iq-dd-item {
    padding: 10px 0;
    color: #555;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
  }

  .iq-dd-item:hover {
    color: #007bff;
  }

  .iq-select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
    appearance: none;
  }

  .iq-lift-label {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

  .iq-inv-summary {
    font-size: 13px;
    color: #007bff;
    font-weight: 600;
  }

  /* ── Spinner ─────────────────────────────────────────── */
  .iq-spinner {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 20px;
    color: #555;
  }

  .iq-spin-circle {
    width: 24px;
    height: 24px;
    border: 3px solid #ddd;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: iqSpin .8s linear infinite;
  }

  @keyframes iqSpin {
    to {
      transform: rotate(360deg)
    }
  }

  /* ── Error ───────────────────────────────────────────── */
  .iq-error {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #dc2626;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-top: 12px;
  }




  @media(max-width:600px) {
    .iq-prop-dropdown {
      width: 300px;
    }

    .iq-grand-total {
      font-size: 24px;
      margin: 10px 0px;
    }

    #iq2_formStep {
      width: auto;
      padding: 0px;
    }

    .iq-crew-badge {
      padding: 4px 12px;
      text-align: center;
      font-size: 10px;
    }


    .iq-price-panel {
      padding: 20px;
    }
  }

  

  /* ── IQ Payment Buttons ─────────────────────────────── */
  .iq-pay-row {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .iq-pay-btn {
    flex: 1;
    min-width: 160px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.2;
  }

  .iq-pay-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* Full payment — orange (matches existing iq-book-btn) */
  .iq-pay-btn.full {
    background: #ff6b00;
    color: #fff;
  }

  .iq-pay-btn.full:hover {
    background: #e55a00;
    transform: scale(1.02);
  }

  /* Deposit — white/glass (booking-confirmation ke btn-deposit jaisa) */
  .iq-pay-btn.deposit {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
  }

  .iq-pay-btn.deposit:hover {
    background: rgba(255, 255, 255, .25);
    transform: scale(1.02);
  }

  .iq-pay-btn small {
    font-size: 11px;
    font-weight: 400;
    opacity: .85;
  }

  /* Spinner inside button */
  .iq-pay-btn .iq-btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: iqSpin .7s linear infinite;
  }

  @keyframes iqSpin {
    to {
      transform: rotate(360deg);
    }
  }

  .iq-pay-btn.loading .iq-btn-text {
    display: none;
  }

  .iq-pay-btn.loading .iq-btn-spinner {
    display: block;
  }

  /* Payment divider — "or" text */
  .iq-pay-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    margin: 2px 0;
  }

  .iq-pay-divider::before,
  .iq-pay-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .25);
  }

  /* Error message inside price panel */
  .iq-pay-error {
    color: #fecaca;
    font-size: 13px;
    text-align: center;
    display: none;
    margin-top: 6px;
  }

  @media (max-width: 480px) {
    .iq-pay-row {
      flex-direction: column;
    }

    .iq-pay-btn {
      min-width: 100%;
    }
  }

  /* index page css end here =============================================*/
    .invetorytitle {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }

  .invetorytitle .icon {
    width: 22px;
    margin-right: 8px;
  }
.dropdown-column{
     .item {
    padding: 13px 0;
    color: #555;
    cursor: pointer;
    border-bottom: 1px solid #dedede8f;
  }

  .item:hover {
    color: #007bff;
  }
}
  .form-group {
    position: relative;
  }

/* SECTION BACKGROUND abhout page */
  .hm-approach {
    width: 100%;
    padding: 72px 24px;
    box-sizing: border-box;
    background: #0052cc;
    background-image: radial-gradient(circle at top left, #0f6cff 0, #0052cc 45%, #0043a3 100%);
    color: #ffffff;
    overflow: hidden;
  }

  /* MAIN FLEX CONTAINER (3 COLUMNS ON DESKTOP) */
  .hm-approach-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  /* GENERIC COLUMN */
  .hm-approach-col {
    display: flex;
    flex-direction: column;
  }

  /* LEFT COLUMN WIDTH */
  .hm-approach-left {
    flex: 0 0 22%;
  }

  /* MIDDLE COLUMN WIDTH */
  .hm-approach-center {
    flex: 0 0 26%;
  }

  /* RIGHT COLUMN WIDTH */
  .hm-approach-right {
    flex: 0 0 48%;
  }

  /* IMAGES */
  .hm-approach-photo {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }

  /* Small (left) image – almost square */
  .hm-approach-photo-sm {
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-bottom: 26px;
  }

  /* Tall (middle) image */
  .hm-approach-photo-lg {
    width: 100%;
    aspect-ratio: 3 / 5;
  }

  .hm-approach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ORANGE CARD UNDER LEFT IMAGE */
  .hm-approach-badge-card {
    background: #ff6b35;
    border-radius: 26px;
    padding: 18px 26px;
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.5;
    text-align: left;
    max-width: 260px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  /* RIGHT COLUMN TEXT STYLES */
  .hm-approach-tag {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .hm-approach-heading {
    margin: 0 0 18px;
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .hm-approach-desc {
    margin: 0 0 26px;
    max-width: 520px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  /* MISSION / VISION LIST */
  .hm-approach-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hm-approach-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  /* Circular icon (white circle like screenshot) */
  .hm-approach-bullet {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #d80e07;
  }

  .hm-approach-item-text h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
  }

  .hm-approach-item-text p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.95;
  }

    .response-msg {
    margin-top: 15px;
  }

  .response-msg .alert-success {
    color: #069533;
    font-size: 16px;
  }

  /* ========== RESPONSIVE ========== */

  @media (max-width: 1024px) {
    .hm-approach {
      padding: 56px 16px;
    }

    .hm-approach-inner {
      gap: 28px;
    }

    .hm-approach-heading {
      font-size: 2rem;
    }
  }

  @media (max-width: 900px) {
    .hm-approach-inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .hm-approach-left,
    .hm-approach-center,
    .hm-approach-right {
      flex: 1 1 100%;
      width: 100%;
    }

    .hm-approach-left,
    .hm-approach-center {
      flex-direction: column;
      align-items: flex-start;
    }

    .hm-approach-badge-card {
      max-width: 100%;
    }

    .hm-approach-photo-sm,
    .hm-approach-photo-lg {
      max-width: 340px;
    }
  }

  @media (max-width: 600px) {
    .hm-approach {
      padding: 40px 14px;
    }

    .hm-approach-heading {
      font-size: 1.7rem;
    }

    .hm-approach-photo-sm,
    .hm-approach-photo-lg {
      max-width: 100%;
      aspect-ratio: 4 / 5;
    }

    .hm-approach-badge-card {
      border-radius: 22px;
      padding: 14px 18px;
      font-size: 0.94rem;
      margin: auto;
    }
  }

  @media (min-width: 998px) and (max-width: 1260px) {
 .contact-info{
    display: none !important;
 }
}