/* ==========================================================================
   Hero Section & Front Page Styles
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-gradient-overlay {
    display: none; /* Render only on mobile viewports */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 40%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 45px;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(249, 69, 44, 0.45);
    /* #F9452C with 45% opacity */
    border-radius: 100px;
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge-circle {
    width: 8px;
    height: 8px;
    background-color: #F9452C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(249, 69, 44, 0.8), 0 0 16px rgba(249, 69, 44, 0.4);
    animation: badge-glow-pulse 2s infinite ease-in-out;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* regular */
    color: #171717;
    line-height: 1.2;
}

@keyframes badge-glow-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 8px rgba(249, 69, 44, 0.8), 0 0 16px rgba(249, 69, 44, 0.4);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 12px rgba(249, 69, 44, 1), 0 0 20px rgba(249, 69, 44, 0.6);
    }
}

/* Hero Heading */
.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 80px;
    font-weight: 700;
    /* bold */
    color: #171717;
    letter-spacing: -0.02em;
    /* -2% */
    line-height: 80px;
    margin: 0 0 24px 0;
}

/* Hero Description */
.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* medium */
    color: rgba(23, 23, 23, 0.7);
    /* #171717 with 70% opacity */
    line-height: 25px;
    margin: 0 0 40px 0;
    max-width: 680px;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* medium */
    color: #ffffff;
    background-color: #F9452C;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform 0.2s ease, box-shadow var(--transition-speed) ease;
    border: none;
    box-shadow: 0 4px 14px rgba(249, 69, 44, 0.25);
}

.btn-quote:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 69, 44, 0.4);
}

.btn-quote:active {
    transform: translateY(0);
}

.btn-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* medium */
    color: #171717;
    background-color: #ffffff;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform 0.2s ease, border-color var(--transition-speed) ease;
    border: 1px solid #d1d5db;
}

.btn-products:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

.btn-products:active {
    transform: translateY(0);
}

/* Hero Feature Columns */
.hero-features {
    display: flex;
    align-items: stretch;
    gap: 32px;
    max-width: 720px;
    width: 100%;
    /*  border-top: 1px solid rgba(0, 0, 0, 0.08); */
    padding-top: 32px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 36px;
    height: 36px;
    display: block;
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    /* bold layout style */
    color: #171717;
    margin: 0;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    /* medium */
    color: rgba(23, 23, 23, 0.7);
    /* same as body text */
    margin: 0;
    line-height: 20px;
}

.feature-divider {
    width: 2px;
    background-color: #B5B5B5;
    margin: 0 16px;
    flex-shrink: 0;
}

/* Responsive Overrides */
@media (max-width: 1280px) {
    .hero-title {
        font-size: 72px;
        line-height: 76px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: var(--header-height);
    }

    .hero-background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: right center;
        z-index: 1;
    }

    .hero-gradient-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(255 255 255 / 72%);;
        z-index: 2;
    }

    .hero-container {
        padding: 60px 24px;
        position: relative;
        z-index: 3;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 54px;
        line-height: 58px;
    }

    .hero-features {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .feature-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 34px;
        line-height: 44px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-quote,
    .btn-products {
        width: 100%;
    }

    .hero-badge {
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .badge-text {
        font-size: 14px;
    }
}

/* ==========================================================================
   Company Overview & Stats Section
   ========================================================================== */

.overview-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 100px 0;
    box-sizing: border-box;
}

.overview-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.overview-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

/* Overview Badge */
.overview-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 37, 66, 0.2);
    /* #102542 with 20% opacity */
    border-radius: 100px;
    padding: 8px 18px;
}

.overview-badge-circle {
    width: 8px;
    height: 8px;
    background-color: #F9452C;
    border-radius: 50%;
    display: inline-block;
}

.overview-badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* regular */
    color: #102542;
    line-height: 1.2;
}

/* Overview Title */
.overview-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 500;
    /* medium */
    color: #171717;
    line-height: 58px;
    margin: 0;
    letter-spacing: -0.01em;
}

/* CTA Button */
.btn-more-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* medium */
    color: #ffffff;
    background-color: #F9452C;
    padding: 10px 19px;
    /* 10px top/bottom, 19px left/right */
    border-radius: 6px;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform 0.2s ease, box-shadow var(--transition-speed) ease;
    border: none;
    box-shadow: 0 4px 14px rgba(249, 69, 44, 0.25);
}

.btn-more-about:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 69, 44, 0.35);
}

.btn-more-about:active {
    transform: translateY(0);
}

.btn-more-about .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.btn-more-about:hover .arrow-icon {
    transform: translate(2px, -2px);
}

/* Right Column (Info Blocks) */
.overview-right-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-info-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.overview-info-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    /* regular */
    color: #171717;
    margin: 0;
    line-height: 1.3;
}

.overview-info-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* medium */
    color: rgba(23, 23, 23, 0.7);
    /* same body text as before */
    line-height: 25px;
    margin: 0;
}

/* bottom row Stats section */
.overview-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    /*   border-top: 1px solid rgba(0, 0, 0, 0.08); */
    padding-top: 60px;
    width: 100%;
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.overview-stats>div:nth-child(1) {
    justify-self: start;
}

.overview-stats>div:nth-child(3) {
    justify-self: center;
}

.overview-stats>div:nth-child(5) {
    justify-self: end;
}



.stat-divider {
    width: 2px;
    background-color: #B5B5B5;
    margin: 0 40px;
    align-self: stretch;
    flex-shrink: 0;
}

.stat-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    /* medium */
    color: #171717;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 61px;
    font-weight: 500;
    /* bold */
    color: #F9452C;
    letter-spacing: 0.01em;
    /* 1% */
    line-height: 1;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .overview-top {
        gap: 60px;
    }

    .overview-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 991px) {
    .overview-section {
        min-height: auto;
        padding: 80px 0;
    }

    .overview-container {
        padding: 0 24px;
        gap: 60px;
    }

    .overview-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .overview-stats {
        display: flex;
        flex-direction: column;
        gap: 36px;
        padding-top: 40px;
    }

    .stat-col {
        gap: 8px;
        justify-self: stretch;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .overview-title {
        font-size: 32px;
        line-height: 38px;
    }

    .btn-more-about {
        width: 100%;
    }

    .stat-number {
        font-size: 52px;
    }
}

/* ==========================================================================
   Products Section
   ========================================================================== */

.products-section {
    position: relative;
    background-color: #0B132A;
    /* Deep Navy Background */
    padding: 100px 0;
    box-sizing: border-box;
}

.products-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 40px;
}

.products-header-left {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Products Badge */
.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    /* light opaque background for dark theme */
    border-radius: 100px;
    padding: 8px 18px;
}

.products-badge .badge-circle {
    width: 8px;
    height: 8px;
    background-color: #F9452C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(249, 69, 44, 0.8);
}

.products-badge .badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* regular */
    color: #ffffff;
    line-height: 1.2;
}

/* Products Title */
.products-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 500;
    /* medium */
    color: #ffffff;
    line-height: 58px;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Products Subtitle */
.products-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* medium */
    color: rgba(255, 255, 255, 0.7);
    /* white with 70% opacity */
    line-height: 25px;
    margin: 0;
}

/* View All Products CTA */
.btn-all-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* medium */
    color: #ffffff;
    background-color: #F9452C;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform 0.2s ease, box-shadow var(--transition-speed) ease;
    border: none;
    box-shadow: 0 4px 14px rgba(249, 69, 44, 0.3);
    flex-shrink: 0;
}

.btn-all-products:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 69, 44, 0.45);
}

.btn-all-products:active {
    transform: translateY(0);
}

.btn-all-products .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.btn-all-products:hover .arrow-icon {
    transform: translateX(4px);
}

/* Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-grow: 1;
}

.card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    /* medium */
    color: #171717;
    margin: 0;
    line-height: 1.3;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    /* medium */
    color: rgba(23, 23, 23, 0.7);
    /* body color with 70% opacity */
    line-height: 20px;
    margin: 0;
    flex-grow: 1;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* semi bold */
    color: #404040;
    background-color: transparent;
    border: 1px solid #F9452C;
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 5px;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, border-color var(--transition-speed) ease;
    box-sizing: border-box;
}

.card-btn:hover {
    background-color: #F9452C;
    color: #ffffff;
}

.card-btn .btn-arrow {
    transition: transform var(--transition-speed) ease;
}

.card-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .products-title {
        font-size: 40px;
        line-height: 48px;
    }

    .products-grid {
        gap: 24px;
    }

    .card-body {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .products-section {
        padding: 80px 0;
    }

    .products-container {
        padding: 0 24px;
        gap: 40px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .btn-all-products {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .card-image-wrapper {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .products-title {
        font-size: 32px;
        line-height: 38px;
    }
}

/* ==========================================================================
   Trusted Brands Section
   ========================================================================== */

.brands-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    box-sizing: border-box;
}

.brands-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.brands-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

/* Brands Badge */
.brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 37, 66, 0.2);
    /* #102542 with 20% opacity */
    border-radius: 100px;
    padding: 8px 18px;
}

.brands-badge .badge-circle {
    width: 8px;
    height: 8px;
    background-color: #F9452C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(249, 69, 44, 0.6);
}

.brands-badge .badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* regular */
    color: #102542;
    line-height: 1.2;
}

/* Brands Title */
.brands-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 500;
    /* medium */
    color: #171717;
    line-height: 58px;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Brands Subtitle */
.brands-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* medium */
    color: rgba(23, 23, 23, 0.7);
    /* body color with 70% opacity */
    line-height: 25px;
    margin: 0;
    max-width: 650px;
}

/* Marquee scrolling container */
.brands-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.brands-marquee:hover {
    animation-play-state: paused;
    /* Pause scrolling on hover for accessibility/premium feel */
}

.brands-marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 10px;
    padding: 0 50px;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo-item img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .brands-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 991px) {
    .brands-section {
        padding: 80px 0;
    }

    .brands-container {
        padding: 0 24px;
        gap: 40px;
    }

    .brands-marquee-content {
        gap: 60px;
        padding: 0 30px;
    }

    .brands-marquee-wrapper::before,
    .brands-marquee-wrapper::after {
        width: 60px;
    }

    .brand-logo-item {
        height: 50px;
    }

    .brand-logo-item img {
        max-height: 45px;
    }
}

@media (max-width: 767px) {
    .brands-title {
        font-size: 32px;
        line-height: 38px;
    }
}

/* ==========================================================================
   Trust Section (Why Choose Us)
   ========================================================================== */

.trust-section {
    position: relative;
    background-color: #0B132A;
    /* Deep Navy Background */
    padding: 100px 0;
    box-sizing: border-box;
}

.trust-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.trust-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.trust-header-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    /* light opaque background for dark theme */
    border-radius: 100px;
    padding: 8px 18px;
    width: fit-content;
}

.trust-badge .badge-circle {
    width: 8px;
    height: 8px;
    background-color: #F9452C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(249, 69, 44, 0.8);
}

.trust-badge .badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* regular */
    color: #ffffff;
    line-height: 1.2;
}

/* Trust Title */
.trust-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 500;
    /* medium */
    color: #ffffff;
    line-height: 58px;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Trust Subtitle */
.trust-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    /* medium */
    color: rgba(255, 255, 255, 0.7);
    /* white with 70% opacity */
    line-height: 25px;
    margin: 0;
    max-width: 700px;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.trust-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

/* Tall Cards (Fast Delivery, Extensive Inventory) */
.tall-card {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.trust-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    z-index: 1;
}

.tall-card:hover .trust-card-bg {
    transform: scale(1.05);
}

.trust-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 54%) 0%, rgba(11, 19, 42, 0.5) 45%, rgba(11, 19, 42, 0) 100%);;
    z-index: 2;
}

.tall-card .trust-card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
}

.tall-card .trust-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.tall-card .trust-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 24px;
    margin: 0;
}

/* Stacked Middle Cards */
.trust-col-middle {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stacked-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: calc(50% - 15px);
    box-sizing: border-box;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.stacked-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.stacked-card:hover .trust-card-bg {
    transform: scale(1.05);
}

.stacked-card .trust-card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.stacked-card .trust-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.stacked-card .trust-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .trust-title {
        font-size: 40px;
        line-height: 48px;
    }

    .tall-card .trust-card-content {
        padding: 30px;
    }

    .tall-card .trust-card-title {
        font-size: 24px;
    }

    .stacked-card {
       /*  padding: 24px; */
    }

    .stacked-card .trust-card-title {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .trust-section {
        padding: 80px 0;
    }

    .trust-container {
        padding: 0 24px;
        gap: 40px;
    }

    .trust-header {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .trust-header-content {
        gap: 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tall-card {
        min-height: 450px;
    }

    .stacked-card {
        height: auto;
        min-height: 300px;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .trust-title {
        font-size: 32px;
        line-height: 38px;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    box-sizing: border-box;
}

.contact-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 45px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

/* Left Card */
.contact-info-card {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background-color: #ffffff;
    padding: 45px;
    padding-bottom: 260px;
    /* leaves room for the skyline image at the bottom */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 37, 66, 0.1);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 20px;
}

.contact-badge .badge-circle {
    width: 8px;
    height: 8px;
    background-color: #F9452C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(249, 69, 44, 0.6);
}

.contact-badge .badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #102542;
    line-height: 1.2;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 500;
    /* medium */
    color: #171717;
    line-height: 58px;
    margin: 0;
    letter-spacing: -0.01em;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(23, 23, 23, 0.7);
    /* body color with 70% opacity */
    line-height: 25px;
    margin: 0;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 20px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(249, 69, 44, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #171717;
    margin: 0;
}

.info-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(23, 23, 23, 0.7);
    margin: 0;
}

/* Right Form */
.contact-form-wrapper {
    width: 100%;
}

.contact-quote-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #171717;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(23, 23, 23, 0.4);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #171717;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #F9452C;
    box-shadow: 0 0 0 3px rgba(249, 69, 44, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23171717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 46px;
    cursor: pointer;
}

.form-textarea {
    padding: 16px;
    resize: vertical;
    min-height: 140px;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #F9452C;
    padding: 16px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(249, 69, 44, 0.3);
    transition: background-color var(--transition-speed) ease, transform 0.2s ease, box-shadow var(--transition-speed) ease;
}

.btn-submit:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 69, 44, 0.45);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit .submit-arrow {
    transition: transform var(--transition-speed) ease;
}

.btn-submit:hover .submit-arrow {
    transform: translateX(4px);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .contact-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        padding: 30px;
        padding-bottom: 280px;
    }
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 32px;
        line-height: 38px;
    }

    .form-row-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}