/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1a9847;
    --primary-green-dark: #157a38;
    --primary-green-light: #22b356;
    --secondary-gray: #6d6e71;
    --secondary-gray-dark: #4a4a4c;
    --secondary-gray-light: #8a8b8d;
    --dark-bg: #2c2c2e;
    --darker-bg: #1c1c1e;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #9a9a9c;
    --accent-green: #22b356;
    --transition: all 0.3s ease;
    --container-padding-desktop: 150px;
    --container-padding-laptop: 100px;
    --container-padding-tablet: 60px;
    --container-padding-mobile: 20px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ===== GLOBAL CONTAINER SYSTEM ===== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    box-sizing: border-box;
}

.full-width-container {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--container-padding-desktop);
    box-sizing: border-box;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 18px 0;
    background: rgba(44, 44, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 var(--container-padding-desktop);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 55px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 45px;
    margin-left: auto;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li > a:hover {
    color: var(--primary-green);
}

.nav-menu > li > a.active {
    color: var(--primary-green);
}

.dropdown-arrow {
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg);
    min-width: 240px;
    list-style: none;
    padding: 14px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-top: 15px;
    border-top: 3px solid var(--primary-green);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 13px 26px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(26, 152, 71, 0.1);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
}

.dropdown-menu li a.active {
    background: rgba(26, 152, 71, 0.1);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
}

/* CTA Button */
.nav-cta {
    margin-left: 25px;
}

.btn-quote {
    background: var(--primary-green);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-quote:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 152, 71, 0.3);
}

.btn-quote.active {
    background: var(--primary-green-dark);
    box-shadow: 0 8px 20px rgba(26, 152, 71, 0.3);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    z-index: 1002;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION WITH PARALLAX ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
    text-align: left;
    color: var(--text-white);
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(28, 28, 30, 0.6) 0%, rgba(28, 28, 30, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0;
    animation: fadeInUp 1s ease;
    will-change: transform, opacity;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 152, 71, 0.2);
    color: var(--primary-green);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(26, 152, 71, 0.3);
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 45px;
    color: var(--text-light);
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--text-white);
    padding: 18px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 152, 71, 0.4);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-white);
    padding: 18px 45px;
    border: 2px solid var(--text-white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-outline:hover {
    background: var(--text-white);
    color: var(--dark-bg);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    will-change: opacity;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* Hero Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px var(--container-padding-desktop);
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 100px;
    will-change: opacity;
    border-top: 2px solid var(--primary-green);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-bottom: 10px;
}

.hero-stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-number {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TRUST BADGES SECTION ===== */
.trust-badges {
    background: var(--text-white);
    padding: 60px var(--container-padding-desktop);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    filter: grayscale(0%);
}

.trust-item h4 {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== SECTION STYLING ===== */
.overview, .divisions {
    padding: 100px var(--container-padding-desktop);
}

.overview {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 152, 71, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 0 auto;
}

.lead-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Overview Features */
.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: var(--text-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(26, 152, 71, 0.2);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Division Cards */
.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.division-card {
    background: var(--text-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    border-left: 4px solid var(--primary-green);
}

.division-card.aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.division-card[data-aos-delay="100"].aos-animate {
    transition-delay: 0.1s;
}

.division-card[data-aos-delay="200"].aos-animate {
    transition-delay: 0.2s;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary-gray);
}

.division-icon {
    font-size: 56px;
    margin-bottom: 25px;
}

.division-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.division-card > p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.division-features {
    list-style: none;
    margin-bottom: 30px;
}

.division-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.division-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.btn-secondary {
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-white);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: var(--dark-bg);
    padding: 100px var(--container-padding-desktop);
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 152, 71, 0.1) 0%, rgba(109, 110, 113, 0.1) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-large {
    background: var(--primary-green);
    color: var(--text-white);
    padding: 20px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-large:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 152, 71, 0.4);
}

/* ===== COMPANY OVERVIEW SECTION ===== */
.company-overview {
    padding: 120px var(--container-padding-desktop);
    background: #ffffff;
    overflow: hidden;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: rgba(26, 152, 71, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1c1c1e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin-bottom: 30px;
}

.overview-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(26, 152, 71, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
}

.highlight-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1e;
    margin-bottom: 5px;
}

.highlight-item p {
    font-size: 15px;
    color: #666;
}

.overview-right {
    position: relative;
}

.overview-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 152, 71, 0.1) 0%, rgba(28, 28, 30, 0.3) 100%);
}

/* ===== CORE DIVISIONS SECTION ===== */
.core-divisions {
    padding: 120px var(--container-padding-desktop);
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.title-underline-center {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 20px auto 30px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.divisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.division-card-large {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.division-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.division-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.division-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 152, 71, 0.3) 0%, rgba(28, 28, 30, 0.6) 100%);
}

.division-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.division-content {
    padding: 40px;
}

.division-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 15px;
}

.division-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.division-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.division-features-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

.btn-division {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: #ffffff;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-division:hover {
    background: #157a38;
    transform: translateX(5px);
}

.btn-division span {
    transition: transform 0.3s ease;
}

.btn-division:hover span {
    transform: translateX(5px);
}

/* ===== PRODUCT CATEGORIES SECTION ===== */
.product-categories {
    padding: 120px var(--container-padding-desktop);
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.category-card {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    background: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon svg {
    width: 32px;
    height: 32px;
}

.category-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 15px;
}

.category-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.category-link {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 8px;
}

/* ===== WHY JMK SECTION ===== */
.why-jmk {
    position: relative;
    padding: 120px var(--container-padding-desktop);
    overflow: hidden;
}

.why-jmk-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-jmk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 152, 71, 0.95) 0%, rgba(28, 28, 30, 0.95) 100%);
}

.why-jmk-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.section-label-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title-white {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-underline-white {
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 20px auto 30px;
}

.why-jmk-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 80px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.why-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 25px;
}

.why-icon svg {
    width: 32px;
    height: 32px;
}

.why-feature h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.why-feature p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
    padding: 120px var(--container-padding-desktop);
    background: #ffffff;
}

.trusted-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.trusted-stat {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.trusted-stat:hover {
    background: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 152, 71, 0.2);
}

.trusted-stat:hover .stat-icon,
.trusted-stat:hover h3,
.trusted-stat:hover p {
    color: #ffffff;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 152, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.trusted-stat:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.trusted-stat h3 {
    font-size: 42px;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.trusted-stat p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.client-sectors {
    text-align: center;
    margin-top: 80px;
}

.sectors-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c1c1e;
    margin-bottom: 40px;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.sector-badge {
    background: #f8f9fa;
    color: #1c1c1e;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sector-badge:hover {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    position: relative;
    padding: 120px var(--container-padding-desktop);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cta-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 152, 71, 0.92) 0%, rgba(28, 28, 30, 0.92) 100%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.final-cta-content > p {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--primary-green);
}

.btn-cta-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-cta-primary svg,
.btn-cta-secondary svg {
    width: 20px;
    height: 20px;
}

.cta-contact-info {
    display: flex;
    gap: 50px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.cta-contact-item svg {
    width: 24px;
    height: 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1600px) {
    :root {
        --container-padding-desktop: 120px;
    }
}

@media (max-width: 1440px) {
    :root {
        --container-padding-desktop: var(--container-padding-laptop);
    }
}

@media (max-width: 1200px) {
    :root {
        --container-padding-desktop: 80px;
    }
    
    .overview-content,
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding-desktop: var(--container-padding-tablet);
    }
    
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 35px 35px;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        margin-left: 0;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 12px;
        background: rgba(26, 152, 71, 0.1);
        display: none;
        border-top: none;
        border-left: 3px solid var(--primary-green);
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .btn-quote {
        width: 100%;
        text-align: center;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

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

    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding-desktop: 40px;
    }
    
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary-outline {
        width: 100%;
        text-align: center;
        padding: 16px 35px;
    }

    .section-header h2,
    .section-title,
    .section-title-white {
        font-size: 32px;
    }

    .division-grid, .overview-features {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .logo-img {
        height: 50px;
    }

    .navbar.scrolled .logo-img {
        height: 45px;
    }

    .nav-menu {
        width: 280px;
    }
    
    .overview-image {
        height: 400px;
    }

    .categories-grid,
    .why-features-grid,
    .trusted-stats {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .final-cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding-desktop: var(--container-padding-mobile);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item {
        padding: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .logo-img {
        height: 45px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }
}
