/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1E3A8A;
    --dark-blue: #0F172A;
    --red: #DC2626;
    --yellow: #FCD34D;
    --light-blue: #E0F2FE;
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --gray: #6B7280;
    --dark-gray: #374151;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px 0; */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.btn-quote {
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: #B91C1C;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--primary-blue);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 0 auto 28px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slider .slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.process-icon img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.12);
    background: #fff;
    padding: 8px;
    /* creates white ring */
    border: 6px solid #ffffff;
    /* thicker white border */
}

.process-number {
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 58px;
    height: 58px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* create subtle concentric rings behind the red badge */
.process-number::before,
.process-number::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.process-number::before {
    width: 78px;
    height: 78px;
    background: rgba(220, 38, 38, 0.06);
    z-index: -2;
}

.process-number::after {
    width: 96px;
    height: 96px;
    background: rgba(220, 38, 38, 0.03);
    z-index: -3;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.dot.active {
    background: var(--primary-blue);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 240px;
    }

    .hero-left h1 {
        font-size: 32px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-left h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-left p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-red:hover {
    background: #B91C1C;
}

.about-right img {
    width: 100%;
    border-radius: 10px;
}

/* Service Highlights */
.service-highlights {
    background: var(--red);
    padding: 60px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    border: 3px solid var(--red);
    text-align: center;
    transition: transform 0.3s;
}

/* .service-card:hover {
    transform: translateY(-5px);
} */

.service-icon {
    font-size: 48px;
    color: var(--red);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    color: var(--gray);
}

/* Services Detailed */
.services-detailed {
    background: var(--primary-blue);
    padding: 80px 0;
    color: var(--white);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-top: 10px;
    color: var(--white);
}

.services-header-right p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
}

.service-item-image {
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Flip card styles */
.card {
    width: 100%;
    height: 260px;
    perspective: 1000px;
    border-radius: 12px;
    overflow: visible;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s;
    border-radius: 12px;
}

.card:hover .card-inner,
.card:focus-within .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px white solid;
}

.back-content {
    width: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.back-icon {
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.back-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    text-align: left;
}

.overlay-btn {
    background: var(--yellow);
    color: var(--primary-blue);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* Layout adjustments for services grid items */
.service-item {
    display: flex;
    align-items: stretch;
}

@media (max-width: 900px) {
    .card {
        height: 220px;
    }

    .back-content {
        padding: 18px;
    }

    .back-title {
        font-size: 18px;
    }
}

.service-item-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.service-item h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    padding-top: 80px;
    background: var(--white);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.badge-item {
    text-align: center;
}

.badge-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
}

.badge-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-blue);
}

.badge-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 20px;
}

.badge-item p {
    color: var(--gray);
    font-size: 18px;
}

/* Shifting Process */
.shifting-process {
    padding: 80px 0;
    background: var(--white);
}

.shifting-process h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
}

.process-icon {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-blue);
}

.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.process-step h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 20px;
}

.process-step p {
    color: var(--gray);
}

/* Center text and adjust spacing to match reference */
.process-step {
    text-align: center;
    padding: 10px 12px;
}

.process-step h4 {
    font-size: 20px;
    margin-top: 8px;
    font-weight: 800;
}

.process-step p {
    max-width: 300px;
    margin: 8px auto 0;
    font-size: 14px;
    color: var(--dark-gray);
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-icon {
        width: 120px;
        height: 120px;
    }

    .process-icon img {
        width: 110px;
        height: 110px;
        padding: 6px;
    }

    .process-number {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

/* Location Highlights */
.location-highlights {
    background: var(--primary-blue);
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.location-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.location-card:hover {
    transform: scale(1.05);
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--red);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

/* Statistics */
.statistics {
    background: var(--light-gray);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 600;
}

/* CTA Banner */
.cta-banner {
    background: url('./assets/three-truck.png') center/cover;
    /* padding: 100px 0; */
    position: relative;
}

.cta-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Visionary Quote Section */
.visionary-quote {
    padding: 80px 0;
    background: var(--white);
}

.visionary-quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.visionary-section h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 36px;
}

.visionary-profile {
    text-align: center;
    margin-bottom: 30px;
}

.visionary-profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.visionary-profile h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.visionary-profile p {
    color: var(--gray);
}

.visionary-contact {
    margin-bottom: 20px;
}

.visionary-contact p {
    margin-bottom: 10px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.visionary-motto {
    font-style: italic;
    color: var(--gray);
}

.quote-section h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 36px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-form input,
.quote-form textarea {
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-blue {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-blue:hover {
    background: #1E40AF;
}

/* Trusted By */
.trusted-by {
    padding: 80px 0;
    background: var(--white);
}

.trusted-by h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-size: 36px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logo img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trusted-logo:hover img {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-size: 36px;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.faq-question {
    background: var(--red);
    color: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #B91C1C;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
    color: var(--gray);
    line-height: 1.8;
    border: 1px solid black;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Free Estimate */
.free-estimate {
    padding: 80px 0;
    background: var(--white);
}

.free-estimate h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-size: 36px;
}

.estimate-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.estimate-column ul {
    list-style: none;
}

.estimate-column li {
    margin-bottom: 10px;
}

.estimate-column a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.estimate-column a:hover {
    color: var(--red);
}

/* Footer */
.footer-banner {
    background: var(--red);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.footer-banner p {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-phone a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.footer-main {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid gray;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
}

/* Footer address (right-most column) */
.footer-most-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-most-address {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-line;
    /* preserve newlines in the raw address text */
    max-width: 320px;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-most-address {
        max-width: 100%;
    }
}

/* .footer-logo img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
} */

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
    /* mix-blend-mode: color-burn; */
}

.footer-address {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon {
    background: var(--yellow);
    color: var(--primary-blue);
}

.footer-social .social-icon:hover {
    background: var(--white);
}

.footer-center h3,
.footer-center-right h3,
.footer-right h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-center p,
.footer-center-right p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form input {
    padding: 12px;
    border: 1px solid gray;
    border-radius: 5px;
    font-size: 14px;
    background: transparent;
}

.footer-bottom {
    background: var(--dark-blue);
    color: var(--white);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* About Us Page Styles */
.page-banner {
    background: url('https://via.placeholder.com/1920x400/1E3A8A/FFFFFF?text=About+Us') center/cover;
    /* padding: 150px 0; */
    position: relative;
}

.page-banner-overlay {
    /* background: rgba(0, 0, 0, 0.6); */
    background-image: url(./assets/about-banner.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 16px;
    opacity: 0.9;
}

.our-approach {
    padding: 80px 0;
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.approach-left img {
    width: 100%;
    border-radius: 10px;
}

.approach-right h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin: 15px 0 20px;
}

.approach-right p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.vision-mission-motto {
    position: relative;
    /* background image only; overlay will be provided by ::before to fully cover */
    background-image: url(./assets/about-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    color: var(--white);
}

.vision-mission-motto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* ensure inner content sits above the overlay */
.vision-mission-motto .container {
    position: relative;
    z-index: 1;
}

.vmm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmm-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.vmm-icon {
    width: 80px;
    height: 80px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.vmm-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.vmm-card p {
    color: var(--gray);
    line-height: 1.8;
}

.why-choose-us {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.why-choose-left h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.why-choose-left p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    margin-bottom: 30px;
}

.why-choose-list li {
    margin-bottom: 15px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-list i {
    color: var(--red);
}

.service-offerings {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--primary-blue) 100%);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offering-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.offering-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.offering-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.offering-card p {
    color: var(--gray);
    line-height: 1.8;
}

.certifications-trust {
    padding: 80px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-item {
    text-align: center;
}

.cert-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-blue);
    font-weight: bold;
}

.cert-badge span {
    font-size: 12px;
    margin-top: 5px;
}

.cert-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.consultation-banner {
    background: url('./assets/three-truck.png') center/cover;
    margin-top: 100px;
    /* padding: 100px 0; */
    position: relative;
}

.consultation-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.consultation-tags {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.consultation-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.consultation-banner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.consultation-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature cards (right column) — match reference: circular icon + ring, heading and small paragraph */
.feature-card {
    background: var(--white);
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
}

.feature-icon {
    /* width: 64px;
    height: 64px; */
    border-radius: 50%;
    /* background: #eef6ff;  */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    /* flex: 0 0 64px; */
    position: relative;
    /* box-shadow: 0 6px 18px rgba(16,24,40,0.06); */
}

/* small blue ring around the icon */
.feature-icon::after {
    content: '';
    position: absolute;
    left: -8px;
    top: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 6px solid rgba(59, 130, 246, 0.12);
    z-index: -1;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: 700;
}

.feature-text p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 14px;
        gap: 12px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }

    .feature-icon::after {
        left: -6px;
        top: -6px;
        right: -6px;
        bottom: -6px;
        border-width: 5px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .about-content,
    .services-header,
    .visionary-quote-content,
    .approach-content,
    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-quote {
        display: none;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-cards,
    .badges-grid,
    .process-steps,
    .stats-grid,
    .vmm-grid,
    .offerings-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    .estimate-links {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .about-section,
    .services-detailed,
    .trust-badges,
    .shifting-process,
    .statistics {
        padding: 40px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner h2,
    .consultation-banner h2 {
        font-size: 28px;
    }
}

/* Free Estimate Section (matches attached image) */
.free-estimate {
    background: #f6f7f9;
    padding: 24px 0 30px;
    border-top: 1px solid #e6e6e9;
    border-bottom: 1px solid #e6e6e9;
    margin: 20px 0;
}

.free-estimate h2 {
    text-align: center;
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 18px;
    font-weight: 700;
}

.estimate-links {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.estimate-column {
    flex: 1 1 0;
    min-width: 200px;
}

.estimate-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.estimate-column li {
    margin: 8px 0;
    font-size: 13px;
    color: var(--dark-gray);
}

.estimate-column li a {
    color: var(--dark-gray);
    text-decoration: none;
    display: inline-block;
    padding-left: 20px;
    position: relative;
}

.estimate-column li a::before {
    content: '»';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-blue);
    font-weight: 700;
    transform: translateY(0);
    font-size: 12px;
}

/* vertical separators between columns */
.estimate-column+.estimate-column {
    border-left: 1px solid #e9e9ec;
    padding-left: 28px;
}

@media (max-width: 900px) {
    .estimate-links {
        gap: 20px;
    }

    .estimate-column+.estimate-column {
        border-left: none;
        padding-left: 0;
    }

    .estimate-links {
        flex-direction: column;
        align-items: stretch;
    }

    .estimate-column ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (max-width: 480px) {
    .estimate-column ul {
        columns: 1;
    }

    .free-estimate h2 {
        font-size: 16px;
    }
}

/* Lead Contact styles (for services page hero with form) */
.lead-contact {
    background: #dfeffb;
    padding: 28px 0 36px;
}

.lead-contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: center;
}

.lead-info h2 {
    font-size: 34px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.lead-sub {
    color: var(--dark-gray);
    margin-bottom: 14px;
    max-width: 700px;
}

.reviews-row {
    margin: 8px 0 14px;
    display: flex;
    align-items: center;
}

.reviews-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-label {
    font-weight: 600;
    color: #333;
    margin-right: 6px;
}

.stars i {
    color: #0f6ef0;
    margin-right: 4px;
}

.reviews-count {
    color: #1f2937;
    font-weight: 600;
    margin-left: 6px;
}

.lead-buttons {
    margin-top: 14px;
    display: flex;
    gap: 18px;
}

.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.12);
}

.btn-whatsapp {
    background: #39b54a;
}

.btn-whatsapp:hover {
    background: #2c6b35;
}

.btn-call {
    background: #1f4ea5;
}

.btn-call:hover {
    background: #5277bd;
}

.lead-form {
    justify-self: end;
    width: 100%;
}

.quote-form input {
    width: 100%;
}

.btn-submit {
    background: #b23a92;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-submit:hover {
    background: #8d2371;
}

@media (max-width: 1024px) {
    .lead-contact-grid {
        grid-template-columns: 1fr 360px;
    }
}

@media (max-width: 780px) {
    .lead-contact-grid {
        grid-template-columns: 1fr;
    }

    .lead-form {
        justify-self: stretch;
    }

    .lead-buttons {
        justify-content: flex-start;
    }
}

/* Services Listing (card grid) */
.services-listing {
    padding: 40px 0;
    background: #f8fbff;
}

.services-listing-title {
    text-align: center;
    color: #1e40af;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 22px;
    font-weight: 800;
}

.services-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
}

.service-card-list {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card-list:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

.service-card-list .card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.service-card-list .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-list .card-body {
    padding: 16px 18px 22px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.service-card-list h4 {
    color: #1e40af;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-card-list p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 12px;
    flex: 1 1 auto;
}

.card-cta {
    display: inline-block;
    background: #1e40af;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    align-self: flex-start;
}

@media (max-width: 1100px) {
    .services-listing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .services-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-listing-grid {
        grid-template-columns: 1fr;
    }

    .service-card-list .card-image {
        height: 180px;
    }

    .services-listing-title {
        font-size: 20px;
    }
}

/* Connect banner (appended last as requested) */
.connect-banner {
    /* background: linear-gradient(180deg, #eaf5ff 0%, #ffffff 100%); */
    background: hsl(230, 51%, 84%);
    /* padding: 34px 0 40px; */
    padding: 60px 0;
}

.connect-title {
    text-align: center;
    color: #08306b;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
}

.connect-sub {
    text-align: center;
    color: #334155;
    font-size: 13px;
    margin-bottom: 18px;
}

.connect-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 6px;
}

.btn-whatsapp-large,
.btn-call-large {
    padding: 12px 36px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
}

.btn-whatsapp-large {
    background: #39b54a;
}

.btn-call-large {
    background: #1f4ea5;
}


.btn-whatsapp-large:hover {
    background: #68b172;
}

.btn-call-large:hover {
    background: #7386a8;
}


/* Contact cards */
.contact-cards {
    padding: 48px 0 64px;
    background: #fff;
}

.contact-cards__head {
    text-align: center;
    margin-bottom: 26px;
}

.contact-eyebrow {
    color: #f9d77a;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-main {
    color: #0b2240;
    font-size: 22px;
    margin: 0;
    font-weight: 800;
}

.contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 20px auto 0;
}

.contact-card {
    background: #062348;
    color: #fff;
    padding: 28px 22px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.12);
}

.contact-card__icon {
    font-size: 30px;
    color: #fff;
    margin-bottom: 12px;
}

.contact-card__title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-card__text {
    color: #cfe0f7;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .contact-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .contact-cards__grid {
        grid-template-columns: 1fr;
    }

    .connect-title {
        font-size: 24px;
    }

    .btn-whatsapp-large,
    .btn-call-large {
        padding: 10px 28px;
    }
}

/* proc-hero: Shifting process showcase (unique, appended last) */
.proc-hero {
    position: relative;
    padding: 70px 0 80px;
    overflow: hidden;
}

.proc-hero__overlay {
    position: absolute;
    inset: 0;
    background-image: url('./assets/office-shiffting.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.32) saturate(0.9);
    z-index: 0;
}

.proc-hero .container {
    position: relative;
    z-index: 2;
}

.proc-hero__head {
    text-align: center;
    color: #fff;
    margin-bottom: 28px;
}

.proc-hero__eyebrow {
    color: #f9d77a;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.proc-hero__title {
    font-size: 30px;
    color: #fff;
    margin: 0;
    font-weight: 800;
}

.proc-hero__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    justify-items: center;
    align-items: stretch;
}

.proc-card {
    width: 100%;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 34px 22px 28px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.25);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proc-card__badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #dc2626;
    color: #dc2626;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -56px auto 6px;
    background-clip: padding-box;
}

.proc-card__title {
    color: #0b2240;
    font-weight: 800;
    font-size: 16px;
    margin-top: 4px;
}

.proc-card__desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.proc-card__cta {
    background: #dc2626;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    align-self: center;
}

@media (max-width: 1100px) {
    .proc-hero__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .proc-card {
        max-width: 340px;
    }
}

@media (max-width: 600px) {
    .proc-hero__grid {
        grid-template-columns: 1fr;
    }

    .proc-hero {
        padding: 40px 0;
    }

    .proc-hero__title {
        font-size: 24px;
    }

    .proc-card {
        max-width: 92%;
        padding: 24px 18px;
    }

    .proc-card__badge {
        width: 62px;
        height: 62px;
        margin-top: -48px;
    }
}

/* Location page: Overview + Why Choose (unique .loc-* classes) - appended last */
.loc-overview {
    padding: 36px 0 18px;
    background: #ffffff;
}
.loc-overview__title {
    font-size: 28px;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}
.loc-overview__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    margin-top: 12px;
    border-radius: 3px;
}
.loc-overview__intro p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 14px;
}
.loc-why-eyebrow h3 {
    margin-top: 26px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #0b1724;
    font-weight: 700;
    position: relative;
}
.loc-why-eyebrow h3::before {
    content: '';
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 3px;
}
.loc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 8px 0 22px;
}
.loc-why-item {
    background: var(--red);
    color: #fff;
    padding: 14px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16,24,40,0.08);
    text-align: center;
    min-height: 56px;
}
.loc-why-item:hover { background: #b91c1c; transform: translateY(-2px); }

.loc-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 22px;
    margin-top: 22px;
    align-items: start;
}
.loc-details-left h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 800;
}
.loc-details-left p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
}
.loc-keycard {
    background: #f7f8fa;
    border: 1px solid #e6e6e9;
    padding: 18px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.04);
}
.loc-keycard__title {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--dark-blue);
    font-weight: 800;
}
.loc-keylist { list-style: none; padding-left: 0; margin: 0; }
.loc-keylist li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    color: var(--dark-gray);
    font-size: 13px;
}
.loc-keylist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a; /* green check */
    font-weight: 800;
}

@media (max-width: 1024px) {
    .loc-details-wrapper { grid-template-columns: 1fr; }
    .loc-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .loc-why-grid { grid-template-columns: 1fr; }
    .loc-overview__title { font-size: 22px; }
    .loc-keycard { padding: 14px; }
}

/* Locations cards (appended last as requested) */
.locations-section {
    position: relative;
    padding: 34px 0 40px;
    background: url(./assets/india.png) center/cover no-repeat;
    background-size: cover;
    margin: 40px 0;
}

.locations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* semi-opaque white overlay to wash the background image fully */
    background: rgba(255,255,255,0.88);
    z-index: 1;
}

/* ensure inner content sits above the overlay */
.locations-section > .container {
    position: relative;
    z-index: 2;
}
.locations-title {
    font-size: 22px;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 18px;
}
.loc-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}
.loc-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-blue);
    box-shadow: 0 12px 30px rgba(2,6,23,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(2,6,23,0.12); }
.loc-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(30,58,138,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 22px;
}
.loc-card__title {
    font-weight: 800;
    font-size: 15px;
}
.loc-card__sub {
    font-size: 13px;
    color: var(--gray);
}

@media (max-width: 1100px) {
    .loc-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    .loc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .loc-cards-grid { grid-template-columns: 1fr; }
    .loc-card__icon { width: 48px; height: 48px; font-size: 18px; }
}

/* Quality / Why Trust Section (appended as requested) */
.quality-focus {
    padding: 60px 0;
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: center;
}

.quality-text h2 {
    font-size: 34px;
    color: #0b1724;
    line-height: 1.06;
    margin-bottom: 18px;
    font-weight: 800;
}

.focus-highlight {
    color: var(--yellow);
    display: inline-block;
    margin-left: 6px;
    font-weight: 900;
}

.quality-text p {
    color: var(--dark-gray);
    margin-bottom: 12px;
    max-width: 720px;
}

.quality-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}

.why-trust-wrapper {
    background: var(--light-gray);
    padding: 28px 0 40px;
    margin-top: 34px;
    border-radius: 6px;
}

.why-title {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 18px;
    font-weight: 800;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: center;
}

.why-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    padding: 16px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
    text-align: center;
    height: 56px;
}

.why-item:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-image {
        order: -1;
        margin-bottom: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .quality-text h2 {
        font-size: 26px;
    }

    .quality-focus {
        padding: 34px 0;
    }
}