/* Mona Sans font is loaded from Google Fonts via HTML head */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

* {
    max-width: 100%;
}

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

/* Header 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");
}

/* Modern Glass Header */
.hk-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Mona Sans', 'Inter', 'Montserrat', sans-serif;
    color: var(--hk-primary, #000);
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .hk-header {
        background: #ffffff;
    }
}

.hk-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 24px;
}

.hk-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--hk-primary, #000);
}

.hk-logo__mark {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hk-logo__mark img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.hk-logo__text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.hk-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hk-nav__list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hk-nav__item {
    position: relative;
}

.hk-nav__link {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.2s ease;
}

.hk-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--hk-secondary, #5cb85c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.hk-nav__link:hover,
.hk-nav__link:focus {
    color: var(--hk-secondary, #5cb85c);
}

.hk-nav__link:hover::after,
.hk-nav__link:focus::after,
.hk-nav__link.active::after {
    transform: scaleX(1);
}

.hk-mega {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: min(560px, calc(100vw - 32px));
    max-width: none;
    padding-top: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hk-nav__item--has-mega:hover .hk-mega,
.hk-nav__item--has-mega:focus-within .hk-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 4px);
}

.hk-mega__panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 16px 20px 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: none;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
}

.hk-mega__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    color: rgba(0, 0, 0, 0.65);
    align-items: start;
}

.hk-mega__eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

.hk-mega__title {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--hk-primary, #000);
    line-height: 1.4;
}

.hk-mega__copy {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.5;
}

.hk-mega__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-column: 2;
    grid-row: 1;
}

.hk-mega__brand {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Mona Sans', 'Inter', 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, 0.7);
}

.hk-mega__preview {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
}

.hk-mega__preview-card {
    margin-top: 0;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hk-mega__preview .hk-mega__eyebrow {
    display: none;
}

.hk-mega__preview-image {
    width: 96px;
    height: 78px;
    border-radius: 14px;
    background: rgba(70, 154, 79, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hk-mega__preview-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hk-mega__preview-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--hk-primary, #000);
}

.hk-mega__preview-text p {
    margin: 0;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.hk-mega__links a {
    display: block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.65);
    transition: color 0.2s ease;
    line-height: 1.5;
}

.hk-mega__links a:hover,
.hk-mega__links a:focus {
    color: var(--hk-secondary, #5cb85c);
}

.hk-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hk-action {
    height: 40px;
    width: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hk-primary, #000);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hk-action svg {
    width: 18px;
    height: 18px;
}

.hk-action:hover,
.hk-action:focus {
    color: var(--hk-secondary, #5cb85c);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hk-nav-toggle {
    display: none;
}

.hk-nav-toggle__button {
    display: none;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--hk-primary, #000);
    cursor: pointer;
}

.hk-nav-toggle__button svg {
    width: 20px;
    height: 20px;
}

.hk-mobile-panel {
    display: none;
}

@media (max-width: 991px) {
    .hk-header__inner {
        padding: 10px 20px;
    }

    .hk-logo__text {
        letter-spacing: 0.22em;
    }

    .hk-nav-toggle__button {
        display: inline-flex;
    }

    .hk-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        justify-content: flex-start;
    }

    .hk-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 20px 24px;
    }

    .hk-nav__link {
        letter-spacing: 0.2em;
    }

    .hk-actions {
        display: none;
    }

    /* On mobile: when menu open, keep desktop nav collapsed and show only mobile panel */
    .hk-nav-toggle:checked ~ .hk-header__inner .hk-nav {
        max-height: 0;
        overflow: hidden;
    }

    .hk-mobile-panel {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        transition: max-height 0.3s ease, opacity 0.2s ease;
    }

    .hk-nav-toggle:checked ~ .hk-mobile-panel {
        max-height: 80vh;
        opacity: 1;
        padding: 0 24px 24px;
        overflow-y: auto;
    }

    .hk-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-width: 0;
    }

    .hk-mobile-brands {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        padding: 4px 0 8px;
        min-width: 0;
    }

    .hk-mobile-brands .hk-nav__link {
        font-size: 11px;
        letter-spacing: 0.14em;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hk-mobile-actions {
        margin-top: 16px;
        display: flex;
        gap: 10px;
    }

    /* Hide desktop mega menu (brand cards) on mobile – only mobile panel brand links show */
    .hk-mega {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .hk-logo__text {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: url('../images/Footer.png') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 80px;
}

/* Hero Section */
.hero-section-kubato {
    background: url('../images/kubato-hero-img.png') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 80px;
}


.hero-tractor {
    position: absolute;
    right: 10%;
    top: 68%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 800px;
    height: 56vh;
    max-height: 700px;
    z-index: 2;
}

.hero-tractor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Products page hero-content positioning - Desktop only */
@media (min-width: 992px) {
    body.products-page .hero-content {
        top: -86px;
    }
}

.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-title {
    padding: 0 35px 0 0;
}

.hero-description-text {
    padding: 0 28px 0 0;
}

.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);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

/* Home Hero (scoped) */
.home-page .home-hero {
    position: relative;
    padding-top: 0;
    background: linear-gradient(115deg, rgba(10, 20, 15, 0.85), rgba(10, 20, 15, 0.35)),
        url('../images/farm-equipment-spotlight-new.jpg') center/cover;
    color: #ffffff;
}

.home-page .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(70, 154, 79, 0.35), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.home-page .home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero__content {
    max-width: 620px;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 16px;
}

.home-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.home-hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.home-hero__highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    min-height: 92px;
}

.home-hero__highlight-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.home-hero__highlight-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.home-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}

.home-page .home-hero__actions .btn-primary-custom {
    min-width: 0;
    max-width: none;
    width: auto;
}

.home-page .btn-secondary-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-page .btn-secondary-custom:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.home-hero__trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.home-hero__trust-item i {
    margin-right: 6px;
}

.home-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-hero__image-card {
    position: relative;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.home-hero__image {
    width: 85%;
    display: block;
    border-radius: 18px;
    margin: 0 auto;
}

.home-hero__stat-stack {
    position: absolute;
    bottom: -18px;
    left: 18px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
}

.home-hero__stat-card {
    background: #ffffff;
    color: #1a1a1a;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    min-width: 160px;
}

.home-hero__stat-value {
    font-weight: 700;
    font-size: 1rem;
}

.home-hero__stat-label {
    font-size: 0.8rem;
    color: #5a5a5a;
}

.home-hero__brand-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.home-hero__brand-row img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

@media (max-width: 991.98px) {
    .home-hero__content {
        text-align: center;
        margin: 0 auto;
    }

    .home-hero__highlights {
        grid-template-columns: 1fr;
    }

    .home-hero__actions {
        justify-content: center;
    }

    .home-hero__trust {
        justify-content: center;
    }

    .home-hero__stat-stack {
        position: static;
        margin-top: 12px;
        align-items: center;
    }

    .home-hero__brand-row {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .home-hero__actions .btn-primary-custom,
    .home-page .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .home-hero__image-card {
        padding: 12px;
    }
}

.btn-primary-custom {
    background-color: #469A4F;
    border: none;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 70px;
    color: #ffffff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    width: fit-content;
    min-width: 320px;
    max-width: 340px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-family: 'Mona Sans';
}

.btn-primary-custom span {
    flex: 1;
    text-align: left;
}

.btn-primary-custom i {
    font-size: 1.1rem;
    font-weight: bold;
    margin-left: 12px;
    opacity: 1;
    background-color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #469A4F;
}

.btn-primary-custom:hover {
    background-color: #45a049;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


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

.bg-light {
    background-color: #f8f9fa;
}

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

#about .section-title {
    margin-bottom: 1.5rem;
}

#about p {
    font-size: 22px;
    line-height: 1.8;
    color: #8C8C8C;
}

.section-subtitle {
    font-size: 20px;
    color: #8C8C8C;
    margin-bottom: 0;
    padding: 10px 5px;
}

.complete-section-subtitle {
    font-size: 20px;
    color: #8C8C8C;
    margin-bottom: 0;
    padding: 10px 97px;
}

/* Hero description responsive padding */
.hero-description {
    padding: 10px 110px;
}

#products .section-title {
    margin-bottom: 0.75rem;
}

#products .section-subtitle {
    margin-bottom: 0;
}

#products .row.align-items-end {
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

#products .brand-carousel-wrapper .row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

#products .col-lg-8 {
    padding-right: 20px;
}

#products .col-lg-4 {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

#products .col-lg-4 .btn-primary-custom {
    margin-bottom: 0;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
    height: 100%;
}

.image-grid img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.image-grid .img-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.image-grid .img-2 {
    grid-column: 2;
    grid-row: 1;
}

.image-grid .img-3 {
    grid-column: 2;
    grid-row: 2;
}

/* Brand Carousel */
.brand-carousel-wrapper {
    position: relative;
    /* padding: 0 80px; */
    margin-top: 2.5rem;
}

#products .brand-carousel-wrapper .carousel-control-prev,
#products .brand-carousel-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--accent-green);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    opacity: 1;
    transition: all 0.3s;
    z-index: 10;
}

#products .brand-carousel-wrapper .carousel-control-prev:hover,
#products .brand-carousel-wrapper .carousel-control-next:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

#products .brand-carousel-wrapper .carousel-control-prev {
    left: -96px;
}

#products .brand-carousel-wrapper .carousel-control-next {
    right: -96px;
}

#products .brand-carousel-wrapper .carousel-control-prev i,
#products .brand-carousel-wrapper .carousel-control-next i {
    font-size: 20px;
    color: var(--accent-green);
    transform: rotate(-45deg);
    display: block;
}

.brand-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    margin: 0;
}

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: transparent;
}

.brand-card h4 {
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.brand-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding: 0;
}

.brand-card ul li {
    padding: 8px 0;
    color: #8C8C8C;
    font-size: 20px;
}

.brand-card ul li::before {
    content: "• ";
    color: gray;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
}

/* Category Cards */
.category-card {
    background: var(--white);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: left;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
}

.category-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.category-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-card h5 {
    color: var(--dark-grey);
    font-weight: 600;
    margin: 0;
    font-size: 22px;
    flex: 1;
}

/* World Map Section */
.world-map-section {
    /* background: linear-gradient(to bottom, rgba(247, 249, 254, 0), rgba(247, 249, 254, 0.8), #F7F9FE); */
    background: #F7F9FE;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.world-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background-image: url('../images/Map 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.world-map-container .section-title,
.world-map-container .section-subtitle {
    position: relative;
    z-index: 3;
    color: #000000;

}

.world-map-container .section-title {
    margin-bottom: 1rem;
}

.world-map-container .section-subtitle {
    margin-bottom: 0;
    font-size: 20px;
    color: #8C8C8C;
    padding: 0 46px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(247, 249, 254, 0), rgba(247, 249, 254, 0.8), #F7F9FE);
    z-index: 2;
}

.map-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: red;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.map-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.map-ship {
    position: absolute;
    font-size: 24px;
    color: #333;
}

/* Why Choose Section */
.why-choose-img {
    width: 95%;
    height: 464px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-choose-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.why-choose-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--light-grey);
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
    font-size: 1.1rem;
}

/* Process Steps Section */
.process-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: 30px;
}

.process-section-header h2 {
    margin-bottom: 0;
    text-align: left;
    flex: 1;
    min-width: 300px;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.3;
    padding: 0 307px 0 0;
}

.process-section-header .btn-primary-custom {
    margin-bottom: 0;
    flex-shrink: 0;
    border-radius: 12px;
    position: relative;
    padding-right: 32px;
}

.process-section-header .btn-primary-custom::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    /* border-left: 10px solid #469A4F; */
}

.process-section-header .btn-primary-custom:hover::after {
    border-left-color: #45a049;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    padding: 0px 0 85px;
    align-items: start;
    min-height: 420px;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: calc(50% - 80px);
    left: 0;
    right: 0;
    height: 160px;
    width: 100%;
    background-image: url('../images/Vector 1.svg');
    background-size: 100% 190px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    opacity: 1;
}

.process-step {
    text-align: left;
    position: relative;
    z-index: 2;
    padding-top: 0;
}

/* Zigzag Layout based on image: Step 1 & 3 ABOVE line, Step 2 & 4 BELOW line */
.step-1 {
    margin-top: 0;
    /* Above the line - Top position */
}

.step-2 {
    margin-top: 140px;
    /* Below the line - Bottom position */
}

.step-3 {
    margin-top: 0;
    /* Above the line - Top position */
}

.step-4 {
    margin-top: 140px;
    /* Below the line - Bottom position */
}

.step-number-bg {
    position: absolute;
    left: 0;
    font-size: 250px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 0.6;
    z-index: 0;
    font-family: 'Mona Sans', sans-serif;
    pointer-events: none;
    opacity: 0.2;
}

/* Background numbers for Step 1 - above the line */
.step-1 .step-number-bg {
    top: 140px;
    left: 271px;
    font-size: 106px;
    color: black;
}

/* Background numbers for Step 2 - below the line */
.step-2 .step-number-bg {
    top: 190px;
    left: 220px;
    color: black;
    font-size: 106px;
}

/* Background numbers for Step 3 - above the line */
.step-3 .step-number-bg {
    top: 54px;
    left: 185px;
    color: black;
    font-size: 106px;
}

/* Background numbers for Step 4 - below the line */
.step-4 .step-number-bg {
    top: 131px;
    left: 113px;
    color: black;
    font-size: 106px;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #469A4F;
    border-radius: 50%;
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Markers on wavy line - Step 1 - above the line */
.step-1 .step-marker {
    top: 117%;
    /* On the wavy line at the dip */
}

/* Markers on wavy line - Step 2 - below the line */
.step-2 .step-marker {
    top: 38%;
    /* On the wavy line at the peak */
}

/* Markers on wavy line - Step 3 - above the line */
.step-3 .step-marker {
    top: 130%;
    /* On the wavy line at the dip */
}

/* Markers on wavy line - Step 4 - below the line */
.step-4 .step-marker {
    top: 14%;
    /* On the wavy line at the peak */
}

.step-content {
    position: relative;
    z-index: 1;
    padding-left: 0;
    margin-top: 0;
}

/* Step 1 content - above the line */
.step-1 .step-content {
    margin-top: 139px;
    left: 115px;
}

/* Step 2 content - below the line */
.step-2 .step-content {
    margin-top: 190px;
    left: 60px;
}

/* Step 3 content - above the line */
.step-3 .step-content {
    margin-top: 66px;
    left: 10px;
}

/* Step 4 content - below the line */
.step-4 .step-content {
    margin-top: 130px;
    left: -69px;
}

.step-content h4 {
    color: #000000;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Mona Sans', sans-serif;
    width: 134px;
}

.step-content p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-family: 'Mona Sans', sans-serif;
}

/* Testimonials Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin-top: 50px;
}

#testimonials .section-title {
    margin-bottom: 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    height: 100%;
    margin: 0 8px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #0000001a;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
    line-height: 1;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-text {
    color: #8C8C8C;
    margin-bottom: 57px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Mona Sans', sans-serif;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: none;
}

.author-avatar svg {
    width: 100%;
    height: 100%;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    color: #2c3e50;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.author-info small {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Testimonial Carousel Controls */
.testimonial-carousel-wrapper .carousel-control-prev,
.testimonial-carousel-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(76, 175, 80, 0.1);
    border: 2px solid #469A4F;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
    z-index: 10;
    position: absolute;
}

.testimonial-carousel-wrapper .carousel-control-prev {
    left: 0;
    top: -37px;
}

.testimonial-carousel-wrapper .carousel-control-next {
    right: 0;
    top: -37px;
}

.testimonial-carousel-wrapper .carousel-control-prev:hover,
.testimonial-carousel-wrapper .carousel-control-next:hover {
    background-color: rgba(76, 175, 80, 0.2);
}

.testimonial-carousel-wrapper .carousel-control-prev-icon,
.testimonial-carousel-wrapper .carousel-control-next-icon {
    background-image: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel-wrapper .carousel-control-prev-icon::before {
    content: '←';
    color: #469A4F;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.testimonial-carousel-wrapper .carousel-control-next-icon::before {
    content: '→';
    color: #469A4F;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    display: block;
}

/* CTA Banner */
/* ============================================
           CTA BANNER - PREMIUM REDESIGN
           ============================================ */

.cta-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    /* Premium gradient background with depth */
    background:
        radial-gradient(ellipse 900px 350px at 15% 20%, rgba(70, 154, 79, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 700px 300px at 85% 80%, rgba(45, 80, 22, 0.15) 0%, transparent 50%),
        linear-gradient(135deg,
            #0a2410 0%,
            #0d311a 25%,
            #0f3b1f 50%,
            #0d311a 75%,
            #0a2410 100%);

    color: var(--white);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 80px auto;
    max-width: 1240px;
    width: min(96%, 1240px);

    /* Sophisticated border and shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(70, 154, 79, 0.15),
        0 20px 60px -15px rgba(0, 0, 0, 0.5),
        0 30px 90px -25px rgba(10, 36, 16, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-banner:hover {
    box-shadow:
        0 0 0 1px rgba(70, 154, 79, 0.25),
        0 24px 70px -15px rgba(0, 0, 0, 0.6),
        0 35px 100px -25px rgba(10, 36, 16, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transform: translateY(-2px);
}

/* Animated gradient glow effect */
.cta-banner-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(70, 154, 79, 0.3) 0%,
            rgba(45, 80, 22, 0.2) 25%,
            transparent 50%,
            rgba(70, 154, 79, 0.25) 75%,
            rgba(45, 80, 22, 0.3) 100%);
    background-size: 200% 200%;
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    animation: glow-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
        background-position: 0% 50%;
    }

    50% {
        opacity: 0.6;
        background-position: 100% 50%;
    }
}

/* Subtle shimmer overlay */
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 30%,
            transparent 70%,
            rgba(255, 255, 255, 0.08) 100%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
    border-radius: 24px;
}

/* Accent orb effect */
.cta-banner::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(70, 154, 79, 0.4) 0%,
            rgba(77, 214, 102, 0.25) 30%,
            transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    animation: orb-float 10s ease-in-out infinite;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
        opacity: 0.4;
    }
}

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

.cta-banner .container {
    display: flex;
    justify-content: center;
}

.cta-banner-grid {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
    text-align: center;
}

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

.cta-contact-area {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-content-area .cta-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .cta-banner-grid {
        grid-template-columns: 1fr;
    }

    .cta-contact-area {
        justify-content: center;
    }
}

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

/* ============================================
   CTA CONTENT & TYPOGRAPHY
   ============================================ */

.cta-content {
    position: relative;
    padding-right: 20px;
}

.cta-banner h2,
.cta-title {
    font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
    text-align: left;
    letter-spacing: -0.03em;

    /* Premium text styling */
    background: linear-gradient(135deg,
            #ffffff 0%,
            #f5fff8 50%,
            #e8f7ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Subtle text shadow for depth */
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.3);

    /* Reset for browsers that don't support background-clip */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

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

/* ============================================
   CONTACT INFO SECTION
   ============================================ */

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.contact-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    min-width: 240px;

    /* Premium glassmorphism effect */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    /* Sophisticated shadow */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

/* Animated gradient border on hover */
.contact-box::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg,
            rgba(70, 154, 79, 0.5),
            rgba(77, 214, 102, 0.4),
            rgba(70, 154, 79, 0.5));
    background-size: 200% 200%;
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.contact-box:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);

    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(70, 154, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.contact-box:hover::before {
    opacity: 0.6;
}

/* Active/click state */
.contact-box:active {
    transform: translateY(-2px) scale(1.01);
}

/* ============================================
   CONTACT ICON
   ============================================ */

.contact-icon {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;

    background: linear-gradient(135deg,
            rgba(70, 154, 79, 0.25) 0%,
            rgba(45, 80, 22, 0.2) 100%);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-box:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg,
            rgba(70, 154, 79, 0.35) 0%,
            rgba(45, 80, 22, 0.3) 100%);
    box-shadow:
        0 6px 20px rgba(70, 154, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.contact-icon i {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-box:hover .contact-icon i {
    color: #f5fff8;
    transform: scale(1.05);
}

/* ============================================
   CONTACT DETAILS
   ============================================ */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.contact-details strong {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.contact-box:hover .contact-details strong {
    color: rgba(255, 255, 255, 0.85);
}

.contact-details span {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;

    /* Prevent text overflow */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    transition: color 0.3s ease;
}

.contact-box:hover .contact-details span {
    color: #f5fff8;
}

/* Footer */
.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: 20;
}

.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 Design */
/* Small Desktop Screens (1200px and below) */
@media (max-width: 1200px) {
    .hero-tractor {
        width: 50%;
        max-width: 600px;
        height: 70vh;
        max-height: 600px;
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 70px 0;
    }


    .contact-card {
        padding: 15px 16px;
    }

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

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

    .contact-box {
        min-width: 220px;
        padding: 16px 18px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

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

    .process-steps {
        gap: 15px;
    }

    .process-section-header h2 {
        font-size: 2.3rem;
    }

    .step-1 .step-content {
        left: 180px;
    }

    .step-2 .step-content {
        left: 160px;
    }

    .step-3 .step-content {
        left: 120px;
    }

    .step-4 .step-content {
        left: 80px;
    }

    .step-number-bg {
        font-size: 220px;
    }

    .brand-card {
        padding: 28px 25px;
    }

    .testimonial-card {
        padding: 20px 22px;
    }
}

/* Tablet Screens (992px and below) */
@media (max-width: 992px) {
    .section-subtitle {
        padding: 10px 20px !important;
    }

    .hero-description {
        padding: 10px 30px !important;
    }

    .hero-title {
        padding: 0 20px 0 0 !important;
    }

    .hero-description-text {
        padding: 0 20px 0 0 !important;
    }

    .cta-title {
        max-width: 100%;
    }

    .about-text-col {
        padding-left: 15px !important;
    }

    /* Fix section subtitle padding */
    #about .section-subtitle,
    .section-subtitle.text-center {
        padding: 10px 20px !important;
    }

    .hero-tractor {
        width: 45%;
        max-width: 500px;
        height: 60vh;
        max-height: 450px;
        right: -3%;
    }

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

    .hero-content p {
        font-size: 0.95rem;
    }

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

    .section-padding {
        padding: 60px 0;
    }

    .brand-carousel-wrapper,
    .testimonial-carousel-wrapper {
        padding: 0 70px;
    }

    .brand-carousel-wrapper .carousel-control-prev,
    .brand-carousel-wrapper .carousel-control-next {
        width: 45px;
        height: 45px;
        left: -20px;
    }

    .brand-carousel-wrapper .carousel-control-next {
        right: -20px;
    }

    .testimonial-carousel-wrapper .carousel-control-prev,
    .testimonial-carousel-wrapper .carousel-control-next {
        width: 45px;
        height: 45px;
    }


    .contact-card {
        padding: 16px 18px;
    }

    .process-section-header {
        gap: 20px;
    }

    .process-section-header h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 80px 0 180px;
    }

    .step-1 .step-content {
        left: 150px;
    }

    .step-2 .step-content {
        left: 120px;
    }

    .step-3 .step-content {
        left: 80px;
    }

    .step-4 .step-content {
        left: 40px;
    }

    .step-number-bg {
        font-size: 200px;
    }

    .step-1 .step-number-bg {
        left: -10px;
    }

    .step-2 .step-number-bg {
        left: -10px;
    }

    .step-3 .step-number-bg {
        left: -10px;
    }

    .step-4 .step-number-bg {
        left: -10px;
    }

    .image-grid {
        gap: 18px;
    }

    .category-card {
        padding: 22px 18px;
    }
}

/* Smaller Tablet Screens (768px and below) */
@media (max-width: 768px) {
    .section-subtitle {
        padding: 10px 15px !important;
    }

    .hero-description {
        padding: 10px 20px !important;
    }

    .hero-title {
        padding: 0 15px 0 0 !important;
    }

    .hero-description-text {
        padding: 0 15px 0 0 !important;
    }

    .cta-title {
        max-width: 100%;
    }

    .about-text-col {
        padding-left: 15px !important;
    }

    .navbar {
        padding: 0.8rem 0;
    }

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

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

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

    .hero-tractor {
        width: 40%;
        max-width: 400px;
        height: 55vh;
        max-height: 400px;
        right: -5%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary-custom {
        min-width: 280px;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .category-card {
        padding: 20px 16px;
    }

    .category-icon {
        width: 70px;
        height: 50px;
    }

    .category-card h5 {
        font-size: 0.95rem;
    }

    .image-grid {
        gap: 15px;
    }

    .process-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

    .process-section-header .btn-primary-custom {
        min-width: 260px;
        max-width: 280px;
    }

    .process-section-header .btn-primary-custom::after {
        display: none;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 0 120px;
        gap: 40px;
    }

    .process-steps::after {
        display: none;
    }

    .step-1,
    .step-3 {
        margin-top: 0;
    }

    .step-2,
    .step-4 {
        margin-top: 0;
    }

    .step-marker {
        display: none;
    }

    .step-number-bg {
        font-size: 180px;
    }

    .step-1 .step-number-bg,
    .step-2 .step-number-bg,
    .step-3 .step-number-bg,
    .step-4 .step-number-bg {
        top: -100px;
        left: -10px;
    }

    .step-content {
        margin-top: 0;
        left: 120px !important;
    }

    .step-1 .step-content,
    .step-2 .step-content,
    .step-3 .step-content,
    .step-4 .step-content {
        margin-top: 0;
        left: 120px;
    }


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

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

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

    .brand-carousel-wrapper,
    .testimonial-carousel-wrapper {
        padding: 0 60px;
    }

    .testimonial-carousel-wrapper {
        margin-top: 40px;
    }

    .testimonial-carousel-wrapper .carousel-control-prev,
    .testimonial-carousel-wrapper .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .testimonial-card {
        padding: 18px 20px;
        min-height: 190px;
    }

    .world-map-container {
        height: 350px;
    }

    .testimonial-carousel-wrapper .row {
        gap: 15px;
    }

    .testimonial-carousel-wrapper .col-md-4 {
        flex: 0 0 32%;
        max-width: 32%;
    }

    .brand-card {
        padding: 25px 20px;
    }

    .brand-card img {
        height: 180px;
    }

    .why-choose-img {
        height: 350px;
    }

    .why-choose-list li {
        padding: 18px;
        font-size: 1rem;
    }
}

/* ============================================
           MOBILE RESPONSIVE LAYOUT (576px and below)
           ============================================ */
@media (max-width: 576px) {

    /* ========== PHASE 1: BASE STRUCTURE ========== */
    /* Container & Spacing */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Row & Column Overrides */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row>* {
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-lg-6,
    .col-lg-8,
    .col-lg-4,
    .col-md-6,
    .col-md-4,
    .col-sm-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Base Typography */
    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

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

    .hero-description {
        padding: 0 15px !important;
    }

    /* Fix any remaining padding issues */
    .section-padding .section-subtitle {
        padding: 0 !important;
    }

    /* Utility Overrides */

    .complete-section-subtitle {
        padding: 10px 5px !important;
    }

    .text-center {
        text-align: center !important;
    }

    .text-lg-end {
        text-align: left !important;
    }

    .align-items-center,
    .align-items-end {
        align-items: flex-start !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }

    .bg-light {
        background-color: #f8f9fa !important;
    }

    /* ========== PHASE 2: NAVBAR ========== */

    /* Navbar Mobile */
    .navbar {
        padding: 0.75rem 0;
    }

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

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

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

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

    /* ========== PHASE 3: HERO SECTION ========== */
    .hero-section {
        min-height: auto !important;
        padding: 70px 0 20px !important;
        display: flex;
        flex-direction: column;
        position: relative;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/Footer.png') center/cover;
        align-items: stretch;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .hero-section .container {
        position: relative;
        z-index: 3;
        padding: 15px !important;
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

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

    .hero-section .col-lg-6,
    .hero-section .col-lg-12 {
        padding: 0 !important;
        width: 100%;
        flex: 0 0 100%;
    }

    .hero-tractor {
        display: block !important;
        position: relative !important;
        width: 100%;
        height: auto;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 0;
        padding: 20px 15px !important;
        z-index: 2;
        order: 2;
        flex: 0 0 auto;
    }

    .hero-tractor img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;
        object-position: center;
        filter: none;
        display: block;
        margin: 0 auto;
    }

    /* Ensure all images are properly displayed on mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .image-grid img {
        width: 100%;
        height: auto;
    }

    .hero-content {
        text-align: center;
        padding: 0 !important;
        width: 100%;
        position: relative;
        z-index: 3;
        top: auto !important;
    }

    .hero-content h1,
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 0.8rem !important;
        text-align: center;
        color: #ffffff;
        padding: 0 10px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description-text {
        padding: 0 10px !important;
    }

    .hero-content p,
    .hero-description {
        font-size: 0.8rem !important;
        line-height: 1.5;
        margin-bottom: 1rem !important;
        text-align: center;
        color: #ffffff;
        padding: 0 10px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-buttons {
        align-items: stretch;
        gap: 10px;
        margin-bottom: 0;
        margin-top: 1rem;
        padding: 0 10px;
    }

    .btn-primary-custom {
        min-width: 100%;
        max-width: 100%;
        padding: 12px 18px;
        font-size: 0.85rem;
        justify-content: space-between;
    }

    /* ========== PHASE 4: ABOUT SECTION ========== */
    #about {
        background: #ffffff;
        padding: 40px 0;
    }

    #about .row {
        flex-direction: column;
        margin: 0;
    }

    #about .col-lg-6 {
        margin-bottom: 0;
        padding: 0 15px;
        width: 100%;
    }

    #about .col-lg-6:first-child {
        order: 2;
        margin-top: 30px;
        padding: 0 15px;
    }

    #about .col-lg-6:last-child {
        order: 1;
        padding: 0 15px;
    }

    #about .about-text-col {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #about .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 1.3;
    }

    #about p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #666;
        text-align: left;
        margin-bottom: 0;
    }

    /* Show only the first image (tractor) prominently */
    #about .image-grid {
        display: block;
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
        width: 100%;
        padding: 0 15px;
    }

    #about .image-grid .img-1 {
        grid-column: 1;
        grid-row: 1;
        display: block;
        width: 100%;
        height: auto;
        min-height: 250px;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
        margin: 0;
        border-radius: 12px;
    }

    #about .image-grid .img-2,
    #about .image-grid .img-3 {
        display: none;
    }

    /* ========== PHASE 5: PRODUCTS SECTION ========== */
    #products .row.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
        margin-bottom: 25px;
    }

    #products .col-lg-8 {
        margin-bottom: 15px;
    }

    #products .col-lg-4 {
        width: 100%;
    }

    #products .btn-primary-custom {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .brand-carousel-wrapper {
        padding: 0 15px;
        margin-top: 20px;
    }

    .brand-carousel-wrapper .carousel-control-prev,
    .brand-carousel-wrapper .carousel-control-next {
        display: none !important;
    }

    .brand-card {
        padding: 18px 15px;
        margin: 0 5px;
    }

    .brand-card img {
        height: 140px;
        margin-bottom: 12px;
        object-fit: contain;
        object-position: center;
    }

    .brand-card h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .brand-card ul {
        margin-top: 12px;
    }

    .brand-card ul li {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    /* ========== PHASE 6: CATEGORIES SECTION ========== */
    /* Complete Range of Agricultural & Farm Machinery Section */
    /* Target section with category cards (has .row.g-4 with .category-card) */
    .section-padding:not(#about):not(#products):not(#testimonials):not(.bg-light) {
        background: #ffffff;
    }

    /* Section title styling for categories section */
    .section-padding .section-title.text-center {
        text-align: center !important;
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    /* Paragraph subtitle - left align in mobile */
    .section-padding .section-subtitle.text-center {
        text-align: left !important;
        font-size: 0.85rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        margin: 0;
    }

    .row.g-4>* {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .category-card {
        padding: 16px 20px;
        margin-bottom: 12px;
        background: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: none;
        transition: none;
    }

    .category-card:hover {
        box-shadow: none;
    }

    .category-icon {
        width: 50px;
        height: 40px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .category-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0.8;
    }

    .category-card h5 {
        font-size: 0.9rem;
        font-weight: 400;
        color: #2c3e50;
        margin: 0;
        flex: 1;
        text-align: left;
    }

    /* ========== PHASE 7: WORLD MAP SECTION ========== */
    .world-map-section {
        padding: 40px 0;
        background: linear-gradient(135deg, #c8e3ff 0%, #7ab8f5 100%) !important;
    }

    .world-map-section .section-title {
        margin-bottom: 15px;
    }

    .world-map-section .section-subtitle {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .world-map-container {
        height: 220px;
        border-radius: 10px;
    }

    .world-map-container img {
        object-fit: cover;
    }

    .map-overlay {
        border-radius: 10px;
    }

    /* ========== PHASE 8: WHY CHOOSE SECTION ========== */
    .why-choose-img {
        height: 220px;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 10px;
        object-fit: cover;
    }

    .why-choose-list {
        margin-top: 20px;
        padding: 0;
    }

    .why-choose-list li {
        padding: 14px;
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .why-choose-list li strong {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 4px;
    }

    /* ========== PHASE 9: PROCESS STEPS SECTION ========== */
    /* How We Export Section */
    .bg-light.section-padding {
        background: #ffffff !important;
        padding: 40px 0;
    }

    .process-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .process-section-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        text-align: left;
        margin-bottom: 0;
        line-height: 1.3;
        padding: 0 0 0 0;
    }

    .process-section-header .btn-primary-custom {
        min-width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .process-section-header .btn-primary-custom::after {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 20px;
        min-height: auto;
    }

    .process-steps::after {
        display: none;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        margin-top: 0;
    }

    .step-marker {
        display: none;
    }

    .step-number-bg {
        display: none;
    }

    .process-step {
        padding-left: 0;
        position: relative;
    }

    .step-content {
        margin-top: 0;
        left: 0 !important;
        padding-left: 0;
        position: relative;
    }

    .step-1 .step-content,
    .step-2 .step-content,
    .step-3 .step-content,
    .step-4 .step-content {
        margin-top: 0;
        left: 0;
        padding-left: 0;
    }

    .step-content h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 6px;
        width: auto;
        line-height: 1.3;
    }

    .step-content h4::before {
        content: "1. ";
    }

    .step-2 .step-content h4::before {
        content: "2. ";
    }

    .step-3 .step-content h4::before {
        content: "3. ";
    }

    .step-4 .step-content h4::before {
        content: "4. ";
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #666;
        margin-top: 4px;
    }

    /* ========== PHASE 10: TESTIMONIALS SECTION ========== */
    /* What Our Global Clients Say Section */
    #testimonials.section-padding {
        background: #ffffff;
        padding: 40px 0;
    }

    #testimonials .section-title {
        text-align: left !important;
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .testimonial-carousel-wrapper {
        padding: 0;
        margin-top: 0;
    }

    .testimonial-carousel-wrapper .carousel-control-prev,
    .testimonial-carousel-wrapper .carousel-control-next {
        display: none !important;
    }

    .testimonial-carousel-wrapper .row {
        margin: 0;
    }

    .testimonial-carousel-wrapper .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .testimonial-card {
        padding: 20px;
        min-height: auto;
        margin: 0;
        background: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .stars {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .stars i {
        font-size: 1rem;
        color: #ffc107;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 16px;
        line-height: 1.6;
        color: #2c3e50;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
    }

    .author-avatar svg {
        width: 40px;
        height: 40px;
    }

    .author-info strong {
        font-size: 0.9rem;
        color: #2c3e50;
    }

    .author-info small {
        font-size: 0.85rem;
        color: #666;
    }

.footer .row {
    gap: 25px;
}

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

.footer .col-lg-3:last-child,
.footer .col-md-6:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

.footer ul {
    padding: 0;
}

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

.footer ul li a {
    font-size: 0.85rem;
}

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

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

/* ========== PHASE 13: FINAL ADJUSTMENTS ========== */
.col-lg-6.mb-4.mb-lg-0 {
    margin-bottom: 20px !important;
}

.section-title.mb-4 {
    margin-bottom: 1rem !important;
}

/* Ensure no horizontal overflow */
.container {
    overflow-x: hidden;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix any text that might overflow */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure containers don't overflow */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix any remaining large padding values */
.section-subtitle.text-center {
    padding: 0 15px !important;
}

/* Ensure proper image display */
.why-choose-img,
.world-map-container,
.brand-card img,
.category-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Ensure proper image display on all sections */
.section-padding img,
.world-map-section img,
#about img,
#products img {
    max-width: 100%;
    height: auto;
    display: block;
}
}

/* ========================================
   BRAND HERO SECTION - Modern & Reusable
   ======================================== */

.brand-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    padding: 100px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.brand-hero__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.brand-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Content */
.brand-hero__text {
    z-index: 2;
    position: relative;
}

.brand-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(74, 124, 42, 0.1) 0%, rgba(45, 80, 22, 0.08) 100%);
    border: 1px solid rgba(74, 124, 42, 0.2);
    border-radius: 100px;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.brand-hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.brand-hero__subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.brand-hero__description {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

/* Call to Actions */
.brand-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.brand-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.brand-hero__btn--primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(70, 154, 79, 0.3);
}

.brand-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 154, 79, 0.4);
    color: white;
}

.brand-hero__btn--secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.brand-hero__btn--secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.brand-hero__btn-icon {
    transition: transform 0.3s ease;
}

.brand-hero__btn:hover .brand-hero__btn-icon {
    transform: translateX(4px);
}

/* Features List */
.brand-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.brand-hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d3748;
    font-size: 15px;
    font-weight: 500;
}

.brand-hero__feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 3px;
    background: var(--accent-green);
    border-radius: 50%;
    color: white;
}

/* Visual Section */
.brand-hero__visual {
    position: relative;
    z-index: 1;
}

.brand-hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.brand-hero__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 3;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 14px;
}

.brand-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.brand-hero__image:hover {
    transform: scale(1.02);
}

/* Stats Overlay */
.brand-hero__stats {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    z-index: 2;
}

.brand-hero__stat {
    text-align: center;
}

.brand-hero__stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 4px;
}

.brand-hero__stat-label {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
}

/* Background Decoration */
.brand-hero__bg-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 124, 42, 0.08) 0%, rgba(74, 124, 42, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Tablet Styles */
@media (max-width: 991px) {
    .brand-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .brand-hero__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brand-hero__text {
        text-align: center;
        max-width: 100%;
    }

    .brand-hero__eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .brand-hero__title {
        font-size: 42px;
    }

    .brand-hero__subtitle {
        font-size: 20px;
    }

    .brand-hero__description {
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
    }

    .brand-hero__actions {
        justify-content: center;
    }

    .brand-hero__features {
        justify-content: center;
    }

    .brand-hero__visual {
        order: -1;
    }

    .brand-hero__stats {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .brand-hero {
        padding: 60px 0 50px;
    }

    .brand-hero__container {
        padding: 0 20px;
    }

    .brand-hero__content {
        gap: 40px;
    }

    .brand-hero__eyebrow {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .brand-hero__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .brand-hero__subtitle {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .brand-hero__description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .brand-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .brand-hero__btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .brand-hero__features {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .brand-hero__badge {
        top: 12px;
        right: 12px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .brand-hero__stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        margin-top: 20px;
    }

    .brand-hero__stat-value {
        font-size: 24px;
    }

    .brand-hero__stat-label {
        font-size: 12px;
    }

    .brand-hero__bg-decoration {
        width: 500px;
        height: 500px;
        top: -30%;
        right: -40%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .brand-hero__title {
        font-size: 28px;
    }

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

    .brand-hero__description {
        font-size: 15px;
    }

    .brand-hero__features {
        align-items: center;
    }
}

/* ============================================
   GLOBAL RESPONSIVE IMPROVEMENTS
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .home-page .home-hero {
        padding-top: 0;
    }

    .hero-tractor {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        width: min(90%, 560px);
        max-width: 560px;
        height: auto;
        margin: 24px auto 0;
    }

    .hero-tractor img {
        height: auto;
        max-height: 420px;
    }

    .hero-content h1,
    .hero-title {
        font-size: clamp(1.9rem, 2.6vw, 2.4rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 8px 0;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-primary-custom {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

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