/* State New Hero Section Styles */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.mgm-hero-section {
    background: linear-gradient(rgb(18, 48, 91) 0%, rgb(23, 58, 108) 100%);
    color: rgb(255, 255, 255);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-hero-container {
    max-width: 1180px;
    margin: 0px auto;
    padding: 20px 0px 46px;
}

.mgm-hero-breadcrumb {
    font-size: 13px;
    color: rgb(159, 180, 210);
    margin-bottom: 22px;
}

.mgm-hero-breadcrumb a {
    color: rgb(159, 180, 210);
    text-decoration: none;
}

.mgm-hero-breadcrumb span {
    margin: 0px 6px;
}

.mgm-hero-breadcrumb-current {
    color: rgb(220, 230, 244);
}

.mgm-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: start;
}

.mgm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 111, 33, 0.16);
    border: 1px solid rgba(242, 111, 33, 0.45);
    color: rgb(255, 178, 122);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.mgm-hero-title {
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.2;
    font-weight: 800;
    margin: 0px 0px 14px;
    letter-spacing: -0.5px;
    font-family: 'Noto Serif', serif;
}

.mgm-hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: rgb(201, 215, 235) !important;
    margin: 0px 0px 22px;
    max-width: 620px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.mgm-hero-stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
}

.mgm-hero-stat-item strong {
    color: rgb(255, 178, 122);
}

.mgm-hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
}

.mgm-hero-trust h2 {
    margin: 0px 0px 10px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(220, 230, 244);
    font-family: 'Noto Serif', serif;
}

.mgm-hero-trust-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 13.5px;
}

.mgm-hero-trust-links a {
    color: rgb(201, 215, 235);
    text-decoration: none;
}

.mgm-hero-form {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    padding: 26px 26px 22px;
    box-shadow: rgba(4, 18, 42, 0.35) 0px 18px 44px;
    color: rgb(53, 72, 94);
}

.mgm-hero-form h2 {
    margin: 0px 0px 4px;
    font-size: 21px;
    color: rgb(18, 48, 91);
    font-weight: 700;
    font-family: 'Noto Serif', serif;
}

.mgm-hero-form p {
    
    font-size: 14.5px;
    color: rgb(106, 122, 142);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-hero-form-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mgm-hero-form-label {
    display: block;
}

.mgm-hero-form-label span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgb(18, 48, 91);
    margin-bottom: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-hero-form-input {
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    border: 1.5px solid rgb(203, 214, 226);
    border-radius: 10px;
    padding: 0px 14px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgb(18, 48, 91);
    outline: none;
}

.mgm-hero-form-input:focus {
    border-color: rgb(18, 48, 91);
}

.mgm-hero-form-button {
    height: 54px;
    border: none;
    border-radius: 10px;
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    margin-top: 2px;
    transition: background 0.2s;
}

.mgm-hero-form-button:hover {
    background: rgb(212, 94, 18);
}

.mgm-hero-form-footer {
    margin: 12px 0px 0px;
    text-align: center;
    font-size: 13px;
    color: rgb(106, 122, 142);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .mgm-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mgm-hero-container {
    max-width: 1180px;
    margin: 0px auto;
    padding: 20px 20px 46px;
}
}

@media (max-width: 768px) {
    .mgm-hero-container {
        padding: 20px 16px 40px;
    }

    .mgm-hero-stats {
        flex-direction: column;
    }

    .mgm-hero-trust-links {
        flex-direction: column;
        gap: 8px;
    }
}

/* Reviews Slider Active Dot */
.cc-reviews-dot--active {
    background: rgb(242, 111, 33) !important;
}

/* Details Panel Transition */
.mgm-details-panel {
    transition: all 0.3s ease;
}

/* MGM Company Card Styles */
.mgm-company-card {
    background: white;
    border: 1px solid rgb(226, 232, 240);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.mgm-badge-navy {
    background: rgb(18, 48, 91);
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

.mgm-badge-orange {
    background: rgb(253, 235, 221);
    color: rgb(192, 85, 18);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

.mgm-company-name a {
    color: rgb(18, 48, 91);
    text-decoration: none;
    font-size: 23px;
    font-weight: 700;
}

.mgm-company-name a:hover {
    text-decoration: underline;
}

.mgm-company-summary {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(53, 72, 94);
}

.mgm-stat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.mgm-chip-green {
    background: rgb(240, 247, 242);
    color: rgb(30, 138, 91);
    border: 1px solid rgb(211, 232, 219);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-chip-grey {
    background: rgb(245, 247, 250);
    color: rgb(53, 72, 94);
    border: 1px solid rgb(226, 232, 240);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-chip-red {
    background: rgb(254, 235, 235);
    color: rgb(220, 38, 38);
    border: 1px solid rgb(254, 215, 215);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-chip-blue {
    background: rgb(235, 244, 255);
    color: rgb(30, 100, 180);
    border: 1px solid rgb(200, 230, 255);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-btn-primary {
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mgm-btn-primary:hover {
    background: rgb(212, 94, 18);
}

.mgm-btn-outline {
    border: 1.5px solid rgb(203, 214, 226);
    color: rgb(18, 48, 91);
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 0px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mgm-btn-outline:hover {
    background: rgb(249, 250, 252);
}

.mgm-trust-note {
    text-align: center;
    font-size: 12.5px;
    color: rgb(106, 122, 142);
}

/* MGM Section Styles */
.mgm-section {
    padding: 44px 0px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
        max-width: 1180px !important;
    margin: auto;
}

.mgm-section h2 {
    font-size: 28px;
    line-height: 1.3;
    color: rgb(18, 48, 91);
    font-weight: 800;
    margin: 0px 0px 26px;
}

/* MGM Company Card Styles */
.mgm-company-card {
    background: white;
    border: 1px solid rgb(226, 232, 240);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-company-head {
    padding-bottom: 20px;
}

.mgm-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mgm-badge-navy {
    background: rgb(18, 48, 91);
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

.mgm-badge-orange {
    background: rgb(253, 235, 221);
    color: rgb(192, 85, 18);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

.mgm-company-logo {
    flex-shrink: 0;
    width: 110px;
    height: 78px;
    border: 1px solid rgb(238, 242, 247);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    padding: 8px;
    box-sizing: border-box;
    text-decoration: none;
}

.mgm-company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mgm-company-name {
    margin: 0px 0px 6px;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
}

.mgm-company-name a {
    color: rgb(18, 48, 91);
    text-decoration: none;
}

.mgm-company-name a:hover {
    text-decoration: underline;
}

.mgm-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.mgm-stars {
    font-size: 18px;
    line-height: 1;
    color: rgb(216, 222, 231);
    letter-spacing: 2px;
}

.mgm-rating-note {
    font-size: 15px;
    margin: 0;
}

.mgm-rating-note strong {
    color: rgb(18, 48, 91);
    font-size: 16px;
}

.mgm-company-summary {
    margin: 0px;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(53, 72, 94);
}

.mgm-company-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.mgm-btn-primary {
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-btn-primary:hover {
    background: rgb(212, 94, 18);
}

.mgm-btn-outline {
    border: 1.5px solid rgb(203, 214, 226);
    color: rgb(18, 48, 91);
    font-size: 14.5px;
    font-weight: 600;
    padding: 12px 0px;
    border-radius: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-btn-outline:hover {
    background: rgb(249, 250, 252);
}

.mgm-trust-note {
    text-align: center;
    font-size: 12.5px;
    color: rgb(106, 122, 142);
}

.mgm-stat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.mgm-chip-green {
    background: rgb(240, 247, 242);
    color: rgb(30, 138, 91);
    border: 1px solid rgb(211, 232, 219);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-chip-grey {
    background: rgb(245, 247, 250);
    color: rgb(53, 72, 94);
    border: 1px solid rgb(226, 232, 240);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-chip-red {
    background: rgb(254, 235, 235);
    color: rgb(220, 38, 38);
    border: 1px solid rgb(254, 215, 215);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

.mgm-chip-blue {
    background: rgb(235, 244, 255);
    color: rgb(30, 100, 180);
    border: 1px solid rgb(200, 230, 255);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
}

/* MGM Show More/Hide Buttons */
.mgm-show-more-btn-head,
.mgm-hide-more-btn {
 width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #12305B;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.mgm-show-more-btn-head {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #12305B;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.mgm-show-more-btn-head:hover,
.mgm-hide-more-btn:hover {
    background: rgb(249, 250, 252);
    border-color: rgb(18, 48, 91);
}

.mgm-show-more-btn-head:focus,
.mgm-hide-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(18, 48, 91, 0.1);
}

.mgm-chevron-icon {
    transition: transform 0.2s ease;
}

.mgm-show-more-btn-head:hover .mgm-chevron-icon {
    transform: translateY(2px);
}

.mgm-hide-more-btn:hover .mgm-chevron-icon {
    transform: translateY(-2px);
}

/* MGM Details Panel */
.mgm-details-panel {

    display: none;
}

.mgm-details-panel--open {
    display: block;
}

.mgm-detail-content {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(53, 72, 94);
}

/* MGM Review Cards */
.mgm-review-card {
    background: white;
    border: 1px solid rgb(226, 232, 240);
    border-radius: 12px;
    padding: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mgm-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mgm-review-avatar {
    width: 40px;
    height: 40px;
    background: rgb(242, 111, 33);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.mgm-review-name {
    font-weight: 600;
    color: rgb(18, 48, 91);
}

.mgm-review-meta {
    font-size: 13px;
    color: rgb(106, 122, 142);
}

.mgm-review-text {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgb(53, 72, 94);
}

.mgm-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mgm-chip-green-sm {
    background: rgb(240, 247, 242);
    color: rgb(30, 138, 91);
    border: 1px solid rgb(211, 232, 219);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.mgm-chip-blue-sm {
    background: rgb(235, 244, 255);
    color: rgb(30, 100, 180);
    border: 1px solid rgb(200, 230, 255);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

/* CC Reviews Slider */
.cc-reviews-slider-container {
    margin-top: 16px;
}

.cc-reviews-slider-wrapper {
    overflow: hidden;
}

.cc-reviews-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.cc-review-slide {
    min-width: 300px;
    flex: 0 0 auto;
}

.cc-reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.cc-reviews-nav-btn {
    background: white;
    border: 1px solid rgb(203, 214, 226);
    color: rgb(18, 48, 91);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cc-reviews-nav-btn:hover {
    background: rgb(249, 250, 252);
    border-color: rgb(18, 48, 91);
}

.cc-reviews-dots {
    display: flex;
    gap: 8px;
}

.cc-reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(203, 214, 226);
    cursor: pointer;
    transition: background 0.2s;
}

.cc-reviews-dot--active {
    background: rgb(242, 111, 33);
}

/* City Link Styles */
.scp3 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgb(18, 48, 91);
    min-height: 44px;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 0.2s ease;
}

.scp3:hover {
    background: rgb(249, 250, 252);
    border-color: rgb(18, 48, 91);
    color: rgb(18, 48, 91);
}

.scp3:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(18, 48, 91, 0.1);
}

.scp3 span {
    color: rgb(242, 111, 33);
}

/* Cost Section Button */
.scp2 {
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 14.5px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 10px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
}

.scp2:hover {
    background: rgb(212, 94, 18);
}

/* FAQ Section Styles */
#faqs details {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 12px;
    transition: all 0.2s ease;
}

#faqs details:hover {
    border-color: rgb(18, 48, 91);
    box-shadow: 0 2px 8px rgba(18, 48, 91, 0.1);
}

#faqs summary {
    cursor: pointer;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    box-sizing: border-box;
    list-style: none;
    position: relative;
}

#faqs summary::-webkit-details-marker {
    display: none;
}

#faqs summary h3 {
    margin: 0px;
    font-size: 16.5px;
    color: rgb(18, 48, 91);
    font-weight: 600;
    flex: 1 1 0%;
    line-height: 1.45;
}

#faqs summary span {
    color: rgb(242, 111, 33);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

#faqs details[open] summary span {
    transform: rotate(45deg);
}

#faqs details p {
    margin: 0px;
    padding: 0px 22px 18px;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgb(53, 72, 94);
}

#faqs details[open] {
    background: rgb(255, 255, 255);
    border-color: rgb(18, 48, 91);
}

/* Resource Links Styles */
.scp5 {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 10px;
    padding: 15px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgb(18, 48, 91);
    min-height: 44px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.scp5:hover {
    background: rgb(249, 250, 252);
    border-color: rgb(18, 48, 91);
    color: rgb(18, 48, 91);
}

.scp5:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(18, 48, 91, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .mgm-company-card {
        padding: 20px;
    }
    
    .mgm-badge-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mgm-company-actions {
        width: 100%;
    }
    
    .mgm-stat-chips {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mgm-section {
        padding: 30px 0px 10px;
    }
    
    .mgm-section h2 {
        font-size: 24px;
    }
    
    .mgm-company-card {
        padding: 16px;
    }
    
    .mgm-company-logo {
        width: 90px;
        height: 64px;
    }
    
    .mgm-company-name {
        font-size: 20px;
    }
    
    .cc-review-slide {
        min-width: 280px;
    }
}

/* Our Recommended Movers Section Styles */
.recommended-movers-section {
    padding: 44px 0px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.recommended-movers-title {
    margin: 0px 0px 6px;
    font-size: 28px;
    color: rgb(18, 48, 91);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.recommended-movers-description {
    margin: 0px 0px 26px;
    font-size: 15.5px;
    line-height: 1.6;
    color: rgb(106, 122, 142);
    max-width: 860px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.recommended-movers-description a {
    color: rgb(242, 111, 33);
    text-decoration: none;
}

.recommended-movers-description a:hover {
    text-decoration: underline;
}

.recommended-movers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.mover-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: rgba(18, 48, 91, 0.05) 0px 2px 10px;
    transition: box-shadow 0.3s ease;
}

.mover-card:hover {
    box-shadow: rgba(18, 48, 91, 0.1) 0px 4px 20px;
}

.mover-card.editor-choice {
    border: 2px solid rgb(242, 111, 33);
    box-shadow: rgba(242, 111, 33, 0.18) 0px 10px 28px;
}

.mover-card.editor-choice:hover {
    box-shadow: rgba(242, 111, 33, 0.25) 0px 12px 32px;
}

.editor-choice-badge {
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 2px;
}

.mover-category-badge {
    background: rgb(253, 235, 221);
    color: rgb(192, 85, 18);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.mover-logo-link {
    height: 62px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mover-logo {
    max-height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.mover-logo-fallback {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgb(18, 48, 91);
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mover-name {
    font-size: 18px;
    font-weight: 700;
    color: rgb(18, 48, 91);
}

.mover-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mover-stars {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 1;
    color: rgb(216, 222, 231);
    letter-spacing: 2px;
}

.mover-stars-fill {
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    white-space: nowrap;
    color: rgb(245, 166, 35);
}

.mover-rating-text {
    font-size: 14.5px;
    color: rgb(106, 122, 142);
}

.mover-rating-text strong {
    color: rgb(18, 48, 91);
}

.mover-cta-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 15.5px;
    padding: 14px 0px;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
    text-decoration: none;
    transition: background 0.2s;
}

.mover-cta-button:hover {
    background: rgb(212, 94, 18);
}

.mover-footer-text {
    font-size: 12.5px;
    color: rgb(106, 122, 142);
}

/* Our Recommended Movers Section Responsive Styles */
@media (max-width: 992px) {
    .recommended-movers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .recommended-movers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .recommended-movers-section {
        padding: 30px 0px 10px;
    }
    
    .recommended-movers-title {
        font-size: 24px;
    }
    
    .recommended-movers-description {
        font-size: 14px;
    }
}

/* Intro Section Styles */
.intro-section {
    padding: 44px 0px 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.intro-content {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 16.5px;
    line-height: 1.65;
    color: rgb(53, 72, 94);
}

.intro-content p {
    margin: 0px;
}

.info-box {
    max-width: 860px;
    margin-top: 26px;
    background: rgb(238, 243, 250);
    border-width: 1px 1px 1px 5px;
    border-style: solid;
    border-color: rgb(201, 215, 235) rgb(201, 215, 235) rgb(201, 215, 235) rgb(18, 48, 91);
    border-radius: 12px;
    padding: 22px 24px;
}

.info-box-title {
    margin: 0px 0px 8px;
    font-size: 18px;
    color: rgb(18, 48, 91);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.info-box-content {
    margin: 0px;
    font-size: 16px;
    line-height: 1.65;
    color: rgb(53, 72, 94);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Company Reviews Section Styles */
.company-reviews-section {
    padding: 44px 0px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: stretch;
}

.reviews-list-card {
    flex: 1.3 1 460px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 14px;
    padding: 28px;
    box-sizing: border-box;
}

.reviews-list-title {
    margin: 0px 0px 6px;
    font-size: 26px;
    line-height: 1.3;
    color: rgb(18, 48, 91);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.reviews-list-subtitle {
    margin: 0px 0px 18px;
    font-size: 15px;
    color: rgb(106, 122, 142);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.company-jump-list {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.company-jump-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 2px;
    border-bottom: 1px solid rgb(238, 242, 247);
    font-size: 16px;
    line-height: 1.5;
}

.company-jump-number {
    color: rgb(242, 111, 33);
    font-weight: 800;
    font-size: 15px;
    min-width: 24px;
}

.company-jump-link {
    font-weight: 600;
    color: rgb(18, 48, 91);
    text-decoration: none;
    transition: color 0.2s;
}

.company-jump-link:hover {
    color: rgb(242, 111, 33);
}

.company-jump-description {
    color: rgb(106, 122, 142);
}

.hiring-sidebar {
    flex: 1 1 320px;
    background: rgb(18, 48, 91);
    border-radius: 14px;
    padding: 28px;
    color: rgb(255, 255, 255);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.hiring-sidebar-title {
    margin: 0px 0px 16px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hiring-checklist {
    margin: 0px 0px 22px;
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 15.5px;
    line-height: 1.55;
}

.hiring-checklist-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hiring-checklist-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.hiring-checklist-text {
    color: rgb(220, 230, 244);
}

.hiring-cta-button {
    margin-top: auto;
    display: block;
    text-align: center;
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.hiring-cta-button:hover {
    background: rgb(212, 94, 18);
}

.hiring-footer-text {
    text-align: center;
    font-size: 12.5px;
    color: rgb(159, 180, 210);
    margin-top: 8px;
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {
    .reviews-container {
        flex-direction: column;
    }
    
    .reviews-list-card,
    .hiring-sidebar {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 30px 0px 8px;
    }
    
    .intro-content {
        font-size: 15px;
    }
    
    .company-reviews-section {
        padding: 30px 0px 10px;
    }
    
    .reviews-list-title {
        font-size: 22px;
    }
    
    .hiring-sidebar-title {
        font-size: 20px;
    }
}

/* Comparison Table Section Styles */
.comparison-section {
    padding: 44px 0px 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.comparison-title {
    margin: 0px 0px 6px;
    font-size: 28px;
    color: rgb(18, 48, 91);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.comparison-description {
    margin: 0px 0px 22px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 860px;
    color: rgb(53, 72, 94);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.comparison-table-wrapper {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    border-radius: 14px;
    overflow: hidden;
}

.comparison-table-scroll {
    overflow: auto;
    max-height: 640px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
    font-size: 15px;
    min-width: 860px;
}

.comparison-table thead th {
    position: sticky;
    top: 0px;
    z-index: 2;
    background: rgb(18, 48, 91);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 16px 14px;
    font-weight: 600;
}

.comparison-table thead th:first-child {
    text-align: left;
    padding: 14px 18px;
    width: 140px;
}

.comparison-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.comparison-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s;
    z-index: 10;
}

.comparison-close-btn:hover {
    background: rgba(242, 111, 33, 0.8);
}

.comparison-company-logo {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.comparison-company-logo img {
    max-height: 30px;
    max-width: 110px;
    object-fit: contain;
}

.comparison-company-logo-fallback {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: rgb(255, 178, 122);
    font-size: 18px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.comparison-company-link {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s;
}

.comparison-company-link:hover {
    color: rgb(255, 178, 122);
}

.comparison-table tbody th {
    text-align: left;
    padding: 14px 18px;
    border-top: 1px solid rgb(238, 242, 247);
    color: rgb(106, 122, 142);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.comparison-table tbody td {
    padding: 14px;
    border-top: 1px solid rgb(238, 242, 247);
    text-align: center;
}

.comparison-table tbody tr:nth-child(odd) {
    background: rgb(255, 255, 255);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgb(248, 250, 252);
}

.comparison-price {
    font-weight: 800;
    color: rgb(18, 48, 91);
    font-size: 16px;
}

.comparison-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.comparison-stars {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    color: rgb(216, 222, 231);
    letter-spacing: 2px;
}

.comparison-stars-fill {
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    white-space: nowrap;
    color: rgb(245, 166, 35);
}

.comparison-rating-value {
    font-size: 14px;
    font-weight: 700;
    color: rgb(18, 48, 91);
}

.comparison-badge {
    background: rgb(240, 247, 242);
    color: rgb(30, 138, 91);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
}

.comparison-quote-button {
    display: inline-block;
    background: rgb(242, 111, 33);
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s;
}

.comparison-quote-button:hover {
    background: rgb(212, 94, 18);
}

.comparison-feature {
    margin-top: 18px;
    background: rgb(255, 255, 255);
    border: 2px dashed rgb(203, 214, 226);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.comparison-feature-label {
    font-size: 15px;
    font-weight: 600;
    color: rgb(106, 122, 142);
}

.comparison-search-input {
    flex: 1 1 240px;
    max-width: 360px;
    height: 46px;
    border: 1.5px solid rgb(203, 214, 226);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: rgb(18, 48, 91);
    padding: 0px 14px;
    box-sizing: border-box;
    outline: none;
}

.comparison-search-input:focus {
    border-color: rgb(18, 48, 91);
}

.comparison-message {
    font-size: 13.5px;
    color: rgb(30, 138, 91);
    font-weight: 600;
}

/* Responsive Styles for Comparison Table */
@media (max-width: 768px) {
    .comparison-section {
        padding: 30px 0px 10px;
    }
    
    .comparison-title {
        font-size: 24px;
    }
    
    .comparison-description {
        font-size: 14px;
    }
    
    .comparison-feature {
        flex-direction: column;
        align-items: stretch;
    }
    
    .comparison-search-input {
        max-width: 100%;
    }
}
    :root {
            --mgm-navy: #12305B;
            --mgm-navy-deep: #0E2547;
            --mgm-orange: #F26F21;
            --mgm-orange-dark: #D95E12;
            --mgm-gold: #F5A623;
            --mgm-green: #1E8A5B;
            --mgm-red: #C43D3D;
            --mgm-text: #35485E;
            --mgm-muted: #6A7A8E;
            --mgm-border: #E2E8F0;
            --mgm-bg: #F5F7FA;
        }

        .mgm-section {
            max-width: 980px;
            margin: 0 auto;
            padding: 44px 0px 8px;
        }
.mgm-state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}
        .mgm-details {
            background: #ffffff;
            border: 1px solid #E2E8F0;
            border-radius: 14px;
         
        }

        .mgm-details > summary {
            cursor: pointer;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            list-style: none;
            min-height: 44px;
        }

        .mgm-details > summary::-webkit-details-marker {
            display: none;
        }

        .mgm-summary-title {
            flex: 1;
            margin: 0;
        }

        .mgm-summary-hint {
            color: #6A7A8E;
            font-size: 13.5px;
            white-space: nowrap;
        }

        .mgm-details-body {
            padding: 0 24px 22px;
        }

        .mgm-mini-mover {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 2px;
            border-top: 1px solid #EEF2F7;
            flex-wrap: wrap;
        }

        .mgm-mini-logo {
            width: 74px;
            height: 40px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .mgm-mini-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .mgm-mini-info {
            flex: 1 1 200px;
            min-width: 160px;
        }

        .mgm-mini-name {
            font-size: 15.5px;
            font-weight: 600;
            color: #12305B;
            text-decoration: none;
        }

        .mgm-rating-row {
            display: flex;
            align-items: center;
            gap: 0px;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: flex-start;
        }

        .mgm-stars {
            position: relative;
            display: inline-block;
            font-size: 24px;
            color: #D8DEE7;
            letter-spacing: 0px;
        }

        .mgm-rating-note-sm {
            font-size: 13px;
            color: #6A7A8E;
        }

        .mgm-btn-row {
            display: flex;
            gap: 10px;
        }

        .mgm-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid #CBD6E2;
            color: #12305B;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 16px;
            border-radius: 8px;
            text-decoration: none;
            min-height: 44px;
            background: #ffffff;
        }

        .mgm-btn-outline:hover {
            border-color: #12305B;
            color: #12305B;
        }

        .mgm-btn-soft {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #FDEBDD;
            color: #C05512;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 16px;
            border-radius: 8px;
            text-decoration: none;
            min-height: 44px;
        }

        .mgm-btn-soft:hover {
            background: #F8DCC4;
            color: #C05512;
        }

        .mgm-btn-sm {
            font-size: 13.5px;
            padding: 9px 14px;
        }

        .mgm-h2-sm {
            font-size: 24px;
            color: #12305B;
            margin: 0;
        }

        .mgm-pagination {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 16px;
            font-size: 14px;
        }

        .mgm-page-current {
            background: #12305B;
            color: #ffffff;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 600;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mgm-page-link {
            padding: 10px 16px;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            text-decoration: none;
            color: #12305B;
            font-weight: 500;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .mgm-page-link:hover {
            border-color: #F26F21;
            color: #F26F21;
        }

        .mgm-muted {
            color: #6A7A8E !important;
            font-size: 15px !important;
            margin: 0 0 6px;
            line-height: 22px !important;
        }

        .helpful_list li {
            padding: 5px 0px !important;
        }
        #OurPartner .top_cards {
            height: auto !important;
            background: #ffffff !important;
            border: 1px solid #e4eefb !important;
            border-radius: 20px !important;
        }
        #OurPartner .top_cards .card-footer a.btn,
        .btn-cta,
        a.btn.btn-primary.btn-sm.mb-2,
        .get_q_btn,
        .class_btns {
            display: block;
            text-align: center;
            background: #FF8C00;
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 500;
            margin-top: 10px;
            font-family: 'Noto Serif';
            border: none !important;
        }
        #OurPartner .top_cards .card-footer a.btn:hover {
            background: #1e75bb;
            border: 1px solid #1e75bb;
            color: white;
        }
        .info-wrapper {
            position: relative;
            display: inline-block;
        }
        .info-btn {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: none;
            background: #007bff;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            line-height: 1;
        }
        .custom-tooltip {
            position: absolute;
            top: 130%;
            right: 0;
            width: 320px;
            background: #222;
            color: #fff;
            padding: 12px 14px;
            border-radius: 8px;
            font-size: 13px;
            line-height: 1.5;
            visibility: hidden;
            opacity: 0;
            transition: 0.25s ease;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .custom-tooltip a {
            color: #4da3ff;
            text-decoration: underline;
        }
        .custom-tooltip.show-tooltip,
        .info-wrapper:hover .custom-tooltip {
            visibility: visible;
            opacity: 1;
            display: block;
        }
     
        .advertisement-header {
            margin-bottom: 50px;
        }
        .advertisement-section {
            background: #ffffff;
            padding: 60px 0;
        }
        .rating-stars-fa {
            font-size: 24px;
            color: var(--stars-color);
        }
        .company_average_reviews {
            font-family: var(--albersans-family);
            font-weight: 400;
            text-transform: capitalize;
            color: var(--secondary-color);
            font-size: 18px;
        }
        .badge-rating {
            font-family: 'Noto Serif';
            font-size: 26px;
            background-color: transparent;
            font-weight: 700;
            color: #1e75c1;
        }
        .advertisement-badge {
            background: #667eea;
            color: #fff;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
        }
        .advertisement-info i {
            font-size: 20px;
            color: #6b7280;
            cursor: pointer;
        }
        .advertisement-info {
            font-family: 'Noto Serif';
        }
        .advertisement-info i:hover {
            color: #667eea;
        }
        .custom-tooltip {
            position: absolute;
            top: 60%;
            left: 54%;
            transform: translateX(-50%);
            width: 300px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 16px;
            font-size: 13px;
            color: #374151;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: none;
            line-height: 1.5;
            margin-top: 8px;
        }
        .advertisement-info:hover .custom-tooltip {
            display: block;
        }
        .custom-tooltip a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        .custom-tooltip a:hover {
            text-decoration: underline;
        }
        .advertisement-card {
            position: relative;
            background: #ffffff;
            border: 1.5px solid #c0450036;
            border-radius: 12px;
            padding: 16px 20px;
            height: 100%;
        }
        .advertisement-card:hover {
            border-color: #667eea;
        }
        .advertisement-rank {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 38px;
            font-family: 'Noto Serif';
            height: 38px;
            border-radius: 50%;
            background: #1e75bc1c;
            color: #1e75bc;
            font-size: 18px;
            font-weight: 600;
            border: 1px solid #0000001f;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
        .advertisement-tag {
            display: inline-block;
            background: #f3dcce08;
            color: #000000ad;
            padding: 7px 14px;
            border-radius: 50px;
            font-weight: 600;
            font-family: 'Plus Jakarta Sans';
            font-size: 14px;
            margin-bottom: 16px;
            border: 1px solid #f3dcce;
        }
        .advertisement-company {
            text-align: center;
            margin-top: 25px;
            margin-bottom: 30px;
            font-size: 34px;
            font-weight: 800;
            color: #0b2341;
        }
        .advertisement-logo {
            text-align: center;
            margin-bottom: 16px;
        }
        .advertisement-logo img {
            max-height: 50px;
            margin-top: 20px;
        }
        .advertisement-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 12px;
            margin-bottom: 6px;
        }
        .advertisement-rating .rating-stars {
            display: flex;
            gap: 2px;
        }
        .advertisement-rating .rating-score {
            font-size: 20px !important;
            font-weight: 700;
            color: #1f2937;
        }
  .mgm-state-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #EEF2F7;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 16px;
    text-decoration: none;
    color: #1B5FAE;
    font-family: 'Noto Serif';
}     .advertisement-btn {
            display: block;
            text-align: center;
            background: #0c5b8c;
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 400;
            margin-top: 10px;
            font-family: 'Noto Serif';
        }
        .advertisement-btn:hover {
            color: #0c5b8c;
            background: #ffffff;
            text-decoration: none;
            border: 1px solid #0c5b8c;
        }
        .advertisement-image {
            text-align: center;
            margin-bottom: 30px;
        }
        .advertisement-image img {
            width: 100%;
            max-height: 260px;
            object-fit: contain;
        }
        .advertisement-features {
            border: 0.5px solid #e5e7eb;
            border-radius: 5px;
            overflow: hidden;
            background: #f8e6e617;
        }
        .advertisement-feature-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 10px;
            border-bottom: 1px solid #e5e7eb4a;
        }
        .advertisement-feature-left {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #2e3235;
            font-weight: 600;
            font-size: 12px;
            font-family: 'Plus Jakarta Sans';
        }
        .advertisement-feature-left i {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            font-size: 14px;
        }
        .advertisement-feature-item>span {
            font-weight: 300;
            color: #212529;
            font-size: 12px;
            font-family: 'Noto Serif';
        }
        .company_section .card .company_rating_stars span {
            display: flex;
            align-items: baseline;
            gap: 5px;
            justify-content: center;
            font-size: 22px;
            font-family: "Plus Jakarta Sans";
            font-weight: 900;
            margin-top: 5px;
        }
        .banner_form_input {
            border: 0 solid #dbe9f4 !important;
            padding: 1.40rem .5rem !important;
            border-radius: 10px;
            transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        }
        .c_card {
            border: 2px solid #0043c01c;
            border-radius: 10px;
            background-color: #f6faff8a;
        }
        .bg_logo {
            padding: 30px 10px;
        }
        .company_section .card .company_rating_stars span {
            display: flex;
            align-items: baseline;
            gap: 5px;
            justify-content: center;
            font-size: 22px;
            font-family: "Plus Jakarta Sans";
            font-weight: 900;
            margin-top: 5px;
        }
        #compare_card .img_wrapp {
            background-color: #fff;
            width: 90px;
            height: 90px;
            margin: 0 auto;
            border-radius: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        .compare-btn {
            background-color: #1e75bb;
            color: #fff;
            padding: 12px 40px;
            font-size: 18px;
            font-weight: 600;
            border: 2px solid #1e75bb;
            border-radius: 10px;
            font-family: 'Noto Serif';
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .compare-btn:hover {
            background-color: #fff;
            color: #1e75bb;
            border: 2px solid #1e75bb;
        }
        .dropdown_card {
            border: 3px solid #bdd7eb;
            padding: 10px 30px 10px 10px;
            border-radius: 15px;
        }
        .phone-validate-wrap {
            width: 93%;
        }
        .invalid-feedback {
            width: 150% !important;
            top: 95%;
        }
        .company-details {
            border-radius: 8px;
            margin: 15px 0;
        }
        .company-details .row {
            padding: 8px 0;
            border-bottom: 1px solid #1e75bb;
        }
        .company-details .row:last-child {
            border-bottom: none;
        }
        .company-details strong {
            color: #495057;
            font-weight: 600;
        }
        .company-details a {
            color: var(--bg);
            text-decoration: none;
        }
        .company-details a:hover {
            text-decoration: underline;
        }
        .company-details .text-muted {
            color: #6c757d !important;
        }
        #result_mover1_reviews,
        #result_mover2_reviews {
            font-size: 0.9em;
            color: #6c757d;
            margin-bottom: 10px;
        }
        /* Ensure select elements are visible */
        .form-select {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        .select2-dropdown {
            display: block !important;
            visibility: visible !important;
        }
        .select2-container {
            border: none !important;
            height: auto !important;
            width: 100% !important;
        }
        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #444;
            line-height: 28px;
            font-weight: 600;
            font-family: 'Plus Jakarta Sans';
        }
        .select2-container .select2-selection--single {
            height: 50px !important;
            border: 0px solid #ced4da !important;
            border-radius: 0px !important;
            padding: 12px 10px !important;
            background-color: #DDF2FF !important;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-width: 9px 8px 2px 10px;
            color: #000;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border-color: #6c757d transparent transparent transparent !important;
            margin-top: 4px !important;
            margin-left: -15px;
        }
        .select2-container--default .select2-selection--single .select2-selection__clear {
            display: none;
        }
        .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #000000 transparent;
            border-width: 0px 8px 12px 6px;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 38px !important;
            right: 10px !important;
        }
        .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
            border-color: transparent transparent #000000 transparent;
            border-width: 0px 8px 12px 6px;
        }
        .select2-dropdown {
            border: 1px solid #ccc !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
            border-radius: 6px !important;
        }
        .select2-container--default .select2-results__option {
            font-size: 14px !important;
            line-height: 1.4 !important;
            padding: 8px 12px !important;
        }
        .select2-container--default .select2-results__option--highlighted[aria-selected] {
            background-color: #1e75bb !important;
            color: white !important;
        }
        .select2-search--dropdown .select2-search__field {
            border: 1px solid #ccc !important;
            border-radius: 4px !important;
            background-color: #fff !important;
            padding: 8px !important;
            font-size: 14px !important;
        }
        /* Add More Button */
        #addFourthBtn,
        #addMoreBtn {
            background-color: #fff;
            color: #0043c0;
            border: 2px solid #0043c0;
            padding: 10px 25px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            font-family: 'Noto Serif';
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .company_nr {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100px;
        }
        #addFourthBtn:hover,
        #addMoreBtn:hover {
            background-color: #0043c0;
            color: #fff;
            border: 2px solid #0043c0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 67, 192, 0.3);
        }
        #addFourthBtn:disabled,
        #addMoreBtn:disabled {
            background-color: #e9ecef;
            color: #6c757d;
            border: 2px solid #dee2e6;
            cursor: not-allowed;
            transform: none;
        }
        #addMoreBtn i {
            font-size: 16px;
        }
        /* Third Mover Selector */
        #thirdMoverSelector {
            animation: slideInRight 0.5s ease-out;
        }
        /* Fourth Mover Selector */
        #fourthMoverSelector {
            animation: slideInRight 0.5s ease-out;
        }
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* Third Mover Card */
        #thirdMoverCard {
            animation: slideIn 0.5s ease-out;
        }
        /* Fourth Mover Card */
        #fourthMoverCard {
            animation: slideIn 0.5s ease-out;
        }
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        #compare_card .form_heading {
            color: #2b2f32;
            font-family: 'Noto Serif';
        }
        #compare_card .img_wrapp {
            background-color: #fff;
            width: 90px;
            height: 90px;
            margin: 0 auto;
            border-radius: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        /* Comparison results styling */
        #comparisonResults .card {
            border: 0px solid #e5edf3 !important;
            background-color: #DDF2FF !important;
            border-radius: 15px;
            overflow: hidden;
        }
        #comparisonResults .card-img-top {
            height: 120px;
            object-fit: contain;
            padding: 20px;
        }
        #comparisonResults .card-title {
            font-size: 22px;
            font-weight: 700;
            color: #2b2f32;
            font-family: 'Noto Serif';
            margin-bottom: 10px;
        }
        #comparisonResults .company-details {
            font-size: 14px;
            font-family: 'Plus Jakarta Sans';
        }
        #comparisonResults .company-details strong {
            color: #2b2f32;
        }
        #comparisonResults .company-details a {
            color: #1e75bb;
            text-decoration: none;
        }
        #comparisonResults .company-details a:hover {
            text-decoration: underline;
        }
        /* Comparison result buttons */
        .cta-get {
            background-color: #0043c0;
            color: #fff;
            border: 2px solid #0043c0;
            padding: 10px 25px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            font-family: 'Noto Serif';
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 5px;
        }
        .company_section .card-body .company_title_feature .company__name {
            font-size: 22px;
            font-weight: 700;
            font-family: 'Noto Serif' !important;
        }
        .cta-get:hover {
            background-color: #fff;
            color: #0043c0;
            border: 2px solid #0043c0;
        }
        .cta-review {
            background-color: #fff;
            color: #1e75bb;
            border: 2px solid #1e75bb;
            padding: 10px 25px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            font-family: 'Noto Serif';
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 5px;
        }
        .cta-review:hover {
            background-color: #1e75bb;
            color: #fff;
            border: 2px solid #1e75bb;
        }
        #quickPickBtn,
        #addMoreBtn {
            background-color: #fff;
            color: #0043c0;
            border: 2px solid #0043c0;
            padding: 10px 25px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            font-family: 'Noto Serif';
            transition: all 0.3s ease;
            cursor: pointer;
        }
        button.btn.w-100.text-start.quick-pill {
            font-family: 'Outfit';
        }
        div#quickPickDropdown {
            z-index: 11 !important;
        }
        span.badge {
            font-family: 'Outfit';
            font-weight: 500;
            letter-spacing: 0.2px;
        }
        .cost-calculator-btn {
            background-color: #1e75bb;
            border: 0px solid #1e75bb !important;
            color: #ffffff;
            padding: 13px 30px;
            font-size: 1em;
            cursor: pointer;
            border-radius: 10px;
            flex: 1;
            margin-top: 5px;
            height: 52px;
            font-weight: 600;
            font-family: "Plus Jakarta Sans";
            transition: all 0.3s ease;
        }

        /* Banner styles from long-distance-test.css */
        .mgm-banner-navy {
            background: #12305B;
            border-radius: 16px;
            padding: 34px 30px;
            color: #ffffff;
        }

        .mgm-h3-light {
            color: #ffffff;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }

        .mgm-banner-sub {
            font-size: 15.5px !important;
            color: #C9D7EB !important;
            margin: 0px !important;
        }

        .mgm-banner-form {
            display: flex;
            gap: 10px;
            flex-direction: row;
        }

        .quote-input-group {
            flex: 1 1 150px;
            width: auto;
        }

        .quote-input {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid #CBD6E2;
            border-radius: 10px;
            background: #ffffff;
            color: #12305B;
            font-size: 16px;
            font-family: inherit;
            outline: none;
        }

        .quote-input::placeholder {
            color: #6A7A8E;
        }

        .quote-input:focus {
            border-color: #F26F21;
        }

        .mgm-btn-primary {
            background: #F26F21;
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .mgm-btn-primary:hover {
            background: #D95E12;
        }

        @media (max-width: 768px) {
            .mgm-banner-form {
                display: flex;
                gap: 10px;
                flex-direction: column;
            }
        }
}

/* MGM Resources Section */
.mgm-resources-section {
    padding: 44px 0px 10px;
}

.mgm-resources-section h3 {
    margin: 0px 0px 6px;
    font-size: 22px;
    color: rgb(18, 48, 91);
    font-weight: 700;
}

.mgm-resources-section p {
    margin: 0px 0px 18px;
    font-size: 15.5px;
    color: rgb(106, 122, 142);
}

.mgm-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
/* Long-distance state page
   Target content width: 1180px
   Scoped classes are used to avoid affecting unrelated site components.
*/

.movers-state-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
}

.movers-state-content-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Cost section */
.ld-cost-section {
    width: 100%;
    margin: 34px auto 42px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.ld-cost-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.ld-cost-heading-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.ld-cost-heading-copy h2 {
    margin: 0 0 20px;
    color: #0b315f;
    font-family: "Noto Serif", serif;
    font-size: clamp(30px, 2.35vw, 38px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.ld-cost-heading-copy p,
.ld-cost-table-title p {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.ld-cost-calculator-btn {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 228px;
    min-height: 57px;
    margin-top: 0;
    padding: 14px 24px;
    border: 1px solid #f56b1f;
    border-radius: 12px;
    background: #f56b1f;
    color: #ffffff !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ld-cost-calculator-btn:hover,
.ld-cost-calculator-btn:focus {
    border-color: #e75c13;
    background: #e75c13;
    color: #ffffff !important;
    text-decoration: none !important;
}

.ld-cost-table-title {
    margin-top: 28px;
    margin-bottom: 14px;
}

.ld-cost-table-title h3 {
    margin: 0 0 7px;
    color: #0b315f;
    font-family: "Noto Serif", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.ld-cost-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #d9e1ea;
    border-radius: 14px;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
}

.ld-cost-table {
    width: 100%;
    min-width: 680px;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
}

.ld-cost-table thead th {
    padding: 18px 22px;
    border: 0;
    background: #173b68;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    vertical-align: middle;
}

.ld-cost-table thead th:first-child {
    width: 50%;
}

.ld-cost-table tbody td {
    padding: 18px 22px;
    border: 0;
    border-bottom: 1px solid #dfe5ec;
    color: #102f57;
    background: #ffffff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    vertical-align: middle;
}

.ld-cost-table tbody tr:nth-child(even) td {
    background: #f5f7fa;
}

.ld-cost-table tbody tr:last-child td {
    border-bottom: 0;
}

.ld-cost-factors {
    margin-top: 30px;
}

.ld-cost-factors h3 {
    margin: 0 0 12px;
    color: #0b315f;
    font-family: "Noto Serif", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
}

.ld-cost-factors ul {
    margin-bottom: 0;
}

.ld-cost-factors li {
    margin-bottom: 10px;
    color: #111827;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .movers-state-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ld-cost-heading-row {
        gap: 28px;
    }

    .ld-cost-calculator-btn {
        min-width: 205px;
    }
}

@media (max-width: 767.98px) {
    .movers-state-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ld-cost-section {
        margin-top: 26px;
        margin-bottom: 32px;
    }

    .ld-cost-heading-row {
        flex-direction: column;
        gap: 18px;
    }

    .ld-cost-heading-copy h2 {
        margin-bottom: 14px;
        font-size: 28px;
        line-height: 1.28;
    }

    .ld-cost-heading-copy p,
    .ld-cost-table-title p {
        font-size: 16px;
        line-height: 1.65;
    }

    .ld-cost-calculator-btn {
        width: 100%;
        min-width: 0;
        min-height: 52px;
    }

    .ld-cost-table-title {
        margin-top: 24px;
    }

    .ld-cost-table-title h3 {
        font-size: 20px;
    }

    .ld-cost-table {
        min-width: 620px;
    }

    .ld-cost-table thead th {
        padding: 15px 18px;
        font-size: 14px;
    }

    .ld-cost-table tbody td {
        padding: 16px 18px;
        font-size: 15px;
    }

    .ld-cost-factors h3 {
        font-size: 21px;
    }

    .ld-cost-factors li {
        font-size: 16px;
    }
}