/* ============================================
   BASE STYLES FROM style.css
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #2d5016;
    --light-green: #4a7c2a;
    --bright-green: #5cb85c;
    --dark-green: #1a3309;
    --accent-green: #469A4F;
    --dark-grey: #2c3e50;
    --light-grey: #f8f9fa;
    --white: #ffffff;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: 'Mona Sans';
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    background-color: #191919;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-green);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-circle::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    z-index: -1;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-choose-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.3;
    padding: 0 20px 0 0;
}
.section-subtitle {
    font-size: 20px;
    color: #8C8C8C;
    margin-bottom: 0;
    padding: 10px 5px;
}

/* ============================================
   HERO CONTENT BASE STYLES
   ============================================ */
.hero-content {
    position: relative;
    z-index: 3;
    top: 247px;
}

/* Reset hero-content top on tablet and mobile */
@media (max-width: 992px) {
    .contact-hero-section .hero-content {
        top: 0 !important;
    }
}

.hero-content h1,
.hero-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    color: var(--white);
}

/* ============================================
   CTA BANNER STYLES
   ============================================ */
.cta-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(1200px 400px at 20% -10%, rgba(77, 214, 102, 0.2), transparent 60%),
        linear-gradient(135deg, #0b2b12 0%, #0e3a18 45%, #0b2b12 100%);
    color: var(--white);
    padding: 40px 44px;
    border-radius: 20px;
    margin: 72px auto;
    max-width: 1180px;
    width: min(95%, 1180px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(3, 23, 9, 0.35);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.cta-banner::after {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(77, 214, 102, 0.35), transparent 65%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.cta-banner .row {
    align-items: center;
    row-gap: 24px;
}

/* ============================================
   CTA GRID LAYOUT (CENTERED)
   ============================================ */
.cta-banner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    justify-items: center;
    text-align: center;
}

.cta-banner-grid > * {
    width: 100%;
}

.cta-content-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-content-area .cta-title {
    text-align: center;
}

.cta-contact-area {
    display: grid;
    gap: 14px;
    width: min(420px, 100%);
    margin: 0 auto;
}

.contact-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.24);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-card:hover .contact-card-arrow {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-banner h2,
.cta-title {
    font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.35rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: #f7fff9;
    text-align: left;
    letter-spacing: -0.02em;
    flex: 1;
    min-width: 0;
}

.cta-title {
    max-width: 680px;
}

.contact-info-wrapper {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 12px 14px;
    min-width: 220px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.22);
}

.contact-box i {
    font-size: 1rem;
    color: #f7fff9;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.2s ease;
}

.contact-box:hover i {
    transform: scale(1.04);
}

.contact-box i::before {
    line-height: 1;
    vertical-align: middle;
}

.contact-box div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    flex: 1;
    margin: 0;
    padding: 0;
}

.contact-box div strong {
    display: block;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.contact-box div span {
    display: block;
    margin: 0;
    padding: 0;
    color: #f5fff8;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer {
    background: #232323;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer .logo-circle {
    margin-bottom: 15px;
    height: 200px;
    width: 200px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    padding: 8px 0;
    color: #ccc;
    font-size: 20px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* ============================================
   RESPONSIVE STYLES FOR NAVBAR & FOOTER
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .logo-circle img {
        width: 100%;
        height: 100%;
    }

    .brand-text {
        font-size: 16px;
    }

    .cta-banner {
        margin: 48px auto;
        padding: 28px;
        width: 95%;
        border-radius: 16px;
    }

    .cta-banner .row {
        row-gap: 18px;
    }

    .cta-banner-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cta-content-area {
        max-width: 100%;
    }

    .cta-contact-area {
        width: min(420px, 100%);
        gap: 12px;
    }

    .contact-card {
        padding: 14px 16px;
        gap: 12px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
    }

    .contact-card-icon i {
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer .logo-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .footer .brand-text {
        font-size: 14px;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer ul li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .brand-text {
        font-size: 13px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        margin: 0 5px;
        padding: 8px 0;
    }

    .cta-banner {
        margin: 0 auto;
        padding: 26px 20px;
        width: calc(100% - 30px);
        max-width: 100%;
        border-radius: 16px;
    }

    .cta-banner .row {
        row-gap: 16px;
    }

    .cta-banner h2,
    .cta-title {
        font-size: 1.35rem;
        padding-right: 0 !important;
    }

    .cta-banner-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cta-content-area {
        max-width: 100%;
    }

    .cta-contact-area {
        width: 100%;
        gap: 10px;
    }

    .contact-card {
        width: 100%;
        min-width: 0;
        padding: 14px 16px;
        gap: 14px;
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .contact-card-icon i {
        font-size: 1rem;
    }

    .contact-card-label {
        font-size: 0.7rem;
    }

    .contact-card-value {
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .footer .logo-circle {
        width: 50px;
        height: 50px;
    }

    .footer .brand-text {
        font-size: 14px;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer ul li {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    background:  url('../images/contacthero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0;
    min-height: 75vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    display: flex;
    align-items: center;
}

.contact-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
    top: 0;
}

.contact-hero-section .row {
    width: 100%;
}

.contact-hero-section .hero-content {
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    padding: 28px 32px;
    border-radius: 16px;
    backdrop-filter: blur(2px);
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 70px 0 25px !important;
        min-height: 350px !important;
        max-height: 350px !important;
        height: 350px !important;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        overflow: hidden !important;
    }

    .contact-hero-section .container {
        top: 0 !important;
        padding: 10px 15px !important;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .contact-hero-section .row {
        margin: 0 !important;
        height: 100%;
    }

    .contact-hero-section .hero-content {
        padding: 0 !important;
    }

    .contact-hero-section .hero-content h1 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2;
    }

    .contact-hero-section .hero-content p {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 70px 0 30px !important;
        min-height: auto !important;
        background-attachment: scroll;
        overflow: hidden;
    }

    .contact-hero-section .container {
        top: 0 !important;
        padding: 10px !important;
        position: relative;
    }

    .contact-hero-section .row {
        margin: 0 !important;
    }

    .contact-hero-section .col-lg-10,
    .contact-hero-section .col-xl-10 {
        padding: 0 !important;
        width: 100%;
        flex: 0 0 100%;
    }
}

.contact-hero-section .hero-content h1 {
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.contact-hero-section .hero-content p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 0;
    padding: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    /* color: #8C8C8C; */
}

.contact-hero-description {
    color: #ffffff;
}

.contact-hero-description {
    padding: 0 57px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-expert-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Padding Utility */
.section-padding {
    padding: 80px 0;
}

/* Get in Touch Section */
.get-in-touch-section {
    background: #ffffff;
    padding: 80px 0;
}

    .get-in-touch-section .row {
        align-items: center;
        padding: 20px 0;
    }

    @media (max-width: 768px) {
        .get-in-touch-section .row.align-items-center {
            flex-direction: column;
            align-items: flex-start !important;
        }

        .get-in-touch-section .col-lg-6:first-child {
            order: 2;
            margin-bottom: 20px;
        }

        .get-in-touch-section .col-lg-6:last-child {
            order: 1;
            margin-bottom: 20px;
        }
    }

/* Section Header with Green Bar */
.section-header-with-bar {
    position: relative;
    padding-left: 20px;
    /* margin-bottom: 10px; */
    max-width: 100%;
}

.section-header-with-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-green);
    border-radius: 2px;
}

.section-title-with-bar {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 0;
}

.assist-list {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.assist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    margin-top: 0;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1.3;
}

.assist-items {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: item;
}

.assist-items li {
    counter-increment: item;
    padding: 10px 4px;
    padding-left: 49px;
    color: var(--dark-grey);
    font-size: 20px;
    /* line-height: 1.7; */
    position: relative;
    /* border-bottom: 1px solid #f0f0f0; */
    color: #8C8C8C;
}

.assist-items li:last-child {
    border-bottom: none;
}

.assist-items li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 15px;
    width: 35px;
    height: 35px;
    /* background: var(--accent-green); */
    color: gray;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Mona Sans', sans-serif;
}

/* Right Content Wrapper */
.right-content-wrapper {
    position: relative;
    min-height: 600px;
}

/* Tractor Images Container */
.tractor-images-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.tractor-image-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 45%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.tractor-image-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 45%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.tractor-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* Contact Details Card */
.contact-details-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
}

.contact-details-card .card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-icon-red {
    /* Reserved for future icon background styling */
    background: transparent;
}

.contact-icon-green {
    /* Reserved for future icon background styling */
    background: transparent;
}

.contact-icon-gray {
    /* Reserved for future icon background styling */
    background: transparent;
}

.contact-item strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-grey);
    font-family: 'Mona Sans', sans-serif;
}

.contact-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-left: 7px;
}

/* Tractor Images - Match Why Choose Image Style */
.tractor-main-image,
.tractor-secondary-image {
    width: 100%;
    /* height: 527px; */
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
  
}

/* Contact Details Section */
.contact-details-section.contact-lux-section {
    padding: 104px 0;
    background-color: var(--light-grey);
}

.contact-lux-panel {
    position: relative;
    background: linear-gradient(140deg, var(--white) 0%, var(--light-grey) 42%, var(--white) 100%);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.contact-lux-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding: 64px;
    align-items: start;
}

.contact-lux-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 980px;
    margin: 0 auto;
}

.contact-lux-media {
    background: var(--white);
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    padding: 24px;
}

.contact-lux-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.contact-lux-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-lux-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dark-grey);
    opacity: 0.65;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--light-grey);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-lux-title {
    font-size: clamp(2rem, 1.6rem + 1.5vw, 2.9rem);
    font-weight: 700;
    color: var(--dark-grey);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
    max-width: 520px;
}

.contact-lux-lead {
    font-size: 1rem;
    color: var(--dark-grey);
    opacity: 0.75;
    margin: 0;
    max-width: 520px;
}

.contact-lux-list {
    display: grid;
    gap: 18px;
}

.contact-lux-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-lux-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.contact-lux-item:last-child {
    margin-bottom: 0;
}

.contact-lux-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.contact-lux-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-lux-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-lux-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark-grey);
    opacity: 0.6;
}

.contact-lux-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
}

.contact-lux-proof {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-green);
}

.contact-lux-proof-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.contact-lux-muted {
    color: var(--dark-grey);
    opacity: 0.65;
    margin: 0;
}

.contact-lux-location-list {
    display: grid;
    gap: 12px;
}

.contact-lux-location {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--dark-grey);
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--light-grey);
}

.contact-lux-location-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--dark-grey);
    flex-shrink: 0;
}

.contact-lux-location-icon svg {
    width: 20px;
    height: 20px;
}


/* Why Choose Contact Section */
.why-choose-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-choose-contact-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-list-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list-contact li {
    padding: 15px 0;
    padding-left: 35px;
    color:  #8C8C8C ;
    font-size: 18px;
    line-height: 1.8;
    position: relative;

}

.why-choose-list-contact li::before {
    content: '.';
    position: absolute;
    left: 0;
    top: 15px;
    width: 25px;
    height: 25px;
    /* background: var(--accent-green); */
    color: #8C8C8C;
    font-weight: bold;
    font-size: 2rem;
    top: -7px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .get-in-touch-section {
        padding: 60px 0;
    }

    .section-title-with-bar {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .contact-hero-section {
        padding: 100px 0 60px !important;
        min-height: 500px !important;
        max-height: 500px !important;
        height: 500px !important;
        background-size: cover;
        background-position: center;
        overflow: hidden !important;
    }

    .contact-hero-section .container {
        top: 0 !important;
        padding: 15px !important;
    }

    .contact-hero-section .hero-content h1 {
        font-size: 2.2rem;
    }

    .tractor-main-image,
    .tractor-secondary-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
        display: block;
        margin: 0 auto 30px;
    }

    .why-choose-contact-img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        display: block;
        margin-bottom: 30px;
    }

    .contact-details-section.contact-lux-section {
        padding: 72px 0;
    }

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

@media (max-width: 768px) {
    .contact-hero-description {
        padding: 0 20px !important;
    }

    .get-in-touch-section {
        padding: 50px 0;
    }

    .get-in-touch-section .row {
        padding: 0;
    }

    .section-title-with-bar {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px !important;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .why-choose-section-title {
        font-size: 1.5rem;
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .assist-items {
        margin-top: 20px;
    }

    .assist-items li {
        font-size: 0.95rem;
        padding: 12px 0;
        padding-left: 40px;
        line-height: 1.6;
    }

    .assist-items li::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: 12px;
    }

    .tractor-main-image,
    .tractor-secondary-image {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
        display: block;
        margin: 20px auto;
    }

    .why-choose-contact-img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
        display: block;
        margin-bottom: 20px;
    }

    .contact-details-section .row {
        border-radius: 15px !important;
        overflow: hidden;
    }

    .contact-details-section .row {
        flex-direction: column;
    }

    .contact-details-section .col-lg-6.p-0 {
        padding: 0 !important;
        order: 1;
        margin-bottom: 0;
    }

    .contact-details-section .col-lg-6:last-child {
        padding: 25px 20px !important;
        border-radius: 0 0 15px 15px !important;
        order: 2;
    }

    .tractor-secondary-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        display: block;
        border-radius: 15px 15px 0 0;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-item strong {
        font-size: 0.95rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-lux-grid {
        padding: 32px;
        gap: 32px;
    }

    .contact-hero-section {
        padding: 60px 0 20px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        height: 280px !important;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        overflow: hidden !important;
    }

    .contact-hero-section .container {
        top: 0 !important;
        padding: 8px 10px !important;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .contact-hero-section .row {
        margin: 0 !important;
        height: 100%;
    }

    .contact-hero-section .row {
        margin: 0 !important;
    }

    .contact-hero-section .col-lg-10,
    .contact-hero-section .col-xl-10 {
        padding: 0 !important;
        width: 100%;
        flex: 0 0 100%;
    }

    .contact-hero-section .hero-content {
        padding: 0 !important;
        width: 100%;
    }

    .contact-hero-section .hero-content h1 {
        font-size: 1.2rem !important;
        padding: 0 10px !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .contact-hero-section .hero-content p {
        font-size: 0.75rem !important;
        padding: 0 10px !important;
        line-height: 1.5;
        margin-bottom: 0 !important;
        word-wrap: break-word;
    }

    .contact-hero-description {
        padding: 0 10px !important;
        font-size: 0.75rem !important;
    }

    .tractor-image-wrapper {
        height: 350px;
    }

    .why-choose-contact-section {
        padding: 50px 0;
    }

    .why-choose-contact-section .container {
        padding: 0 15px;
    }

    .why-choose-contact-section .row {
        margin: 0;
    }

    .why-choose-contact-section .col-lg-5,
    .why-choose-contact-section .col-lg-7 {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .why-choose-contact-img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        display: block;
        margin-bottom: 20px;
    }

    .why-choose-list-contact li {
        font-size: 1rem;
        padding: 12px 0;
        padding-left: 30px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .get-in-touch-section {
        padding: 40px 0;
    }

    .get-in-touch-section .container {
        padding: 0 15px;
    }

    .get-in-touch-section .row {
        margin: 0;
        padding: 0;
    }

    .get-in-touch-section .col-lg-6 {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .section-header-with-bar {
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .section-title-with-bar {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 !important;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .why-choose-section-title {
        font-size: 1.3rem;
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .assist-items {
        margin-top: 15px;
        padding: 0;
    }

    .assist-items li {
        font-size: 0.85rem;
        padding: 10px 0;
        padding-left: 35px;
        line-height: 1.6;
    }

    .assist-items li::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: 10px;
        left: 0;
    }

    .tractor-main-image {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;
        display: block;
        margin: 20px auto;
        border-radius: 12px;
    }

    .contact-details-section {
        padding: 40px 0;
    }

    .contact-details-section .container {
        padding: 0 15px;
    }

    .contact-details-section .row {
        margin: 0;
        border-radius: 15px !important;
        overflow: hidden;
    }

    .contact-details-section .row {
        flex-direction: column;
        margin: 0;
    }

    .contact-details-section .col-lg-6.p-0 {
        padding: 0 !important;
        margin-bottom: 0;
        order: 1;
        width: 100%;
    }

    .contact-details-section .col-lg-6:last-child {
        padding: 20px 15px !important;
        border-radius: 0 0 15px 15px !important;
        order: 2;
        width: 100%;
    }

    .tractor-secondary-image {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
        display: block;
        border-radius: 15px 15px 0 0;
    }

    .contact-details-card .card-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        flex-direction: column;
    }

    .contact-header {
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .contact-item strong {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .contact-item p {
        padding-left: 0;
        font-size: 0.85rem;
        line-height: 1.6;
        margin-top: 5px;
    }

    .contact-details-section.contact-lux-section {
        padding: 56px 0;
    }

    .contact-lux-grid {
        padding: 24px;
    }

    .contact-icon i {
        font-size: 1.1rem;
    }

    .why-choose-contact-section {
        padding: 40px 0;
    }

    .why-choose-contact-section .container {
        padding: 0 15px;
    }

    .why-choose-contact-section .row {
        margin: 0;
    }

    .why-choose-contact-section .col-lg-5,
    .why-choose-contact-section .col-lg-7 {
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .why-choose-contact-img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
        display: block;
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .why-choose-list-contact {
        margin-top: 15px;
    }

    .why-choose-list-contact li {
        font-size: 0.9rem;
        padding: 10px 0;
        padding-left: 25px;
        line-height: 1.6;
    }

    .why-choose-list-contact li::before {
        width: 20px;
        height: 20px;
        font-size: 1.5rem;
        top: 8px;
    }

    .contact-hero-section {
        padding: 50px 0 15px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        height: 250px !important;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        overflow: hidden !important;
    }

    .contact-hero-section .container {
        top: 0 !important;
        padding: 5px 8px !important;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .contact-hero-section .row {
        margin: 0 !important;
        height: 100%;
    }

    .contact-hero-section .col-lg-10,
    .contact-hero-section .col-xl-10 {
        padding: 0 !important;
        width: 100%;
        flex: 0 0 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .contact-hero-section .hero-content {
        padding: 0 !important;
        width: 100%;
    }

    .contact-hero-section .hero-content h1 {
        font-size: 1rem !important;
        padding: 0 5px !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .contact-hero-section .hero-content p {
        font-size: 0.65rem !important;
        padding: 0 5px !important;
        line-height: 1.3;
        margin-bottom: 0 !important;
        word-wrap: break-word;
    }

    .contact-hero-description {
        padding: 0 5px !important;
        font-size: 0.65rem !important;
    }

    /* Ensure all images are visible on mobile */
    .tractor-main-image,
    .tractor-secondary-image,
    .why-choose-contact-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Fix container padding on mobile */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Ensure proper column stacking on mobile */
    .row > [class*="col-"] {
        margin-bottom: 20px;
    }

    .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

