:root {
    --primary-red: #e40000;
    --dark-text: #000000;
    --gray-text: #4a4a4a;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.4;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 25px 0;
    position: relative;
    z-index: 9000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding: 10px 0;
}

.nav-links a.active {
    color: var(--primary-red);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-red);
}

.nav-links li.dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Mega Dropdown Menu */
.nav-links li.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    overflow: hidden;
    border-top: 3px solid var(--primary-red);
    margin-top: 0;
}

.nav-links li.dropdown:hover .mega-menu {
    display: block;
}

.nav-links li.dropdown:hover>a {
    color: var(--primary-red);
}

.nav-links li.dropdown:hover>a .arrow-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.mega-col {
    padding: 0 20px 0 0;
    border-right: 1px solid #f5f5f5;
}

.mega-col:last-child {
    border-right: none;
    padding-right: 0;
}

.mega-col:first-child {
    padding-left: 0;
}

.mega-icon {
    margin-bottom: 14px;
}

.mega-col h5 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--dark-text);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 9px;
}

.mega-col ul li a {
    text-decoration: none;
    color: var(--gray-text);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
    padding: 1px 0;
}

.mega-col ul li a:hover {
    color: var(--primary-red);
}

/* Mega Footer Banner */
.mega-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 30px;
    background: #fafafa;
}

.mega-footer-icon {
    flex-shrink: 0;
}

.mega-footer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-footer-text strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-text);
}

.mega-footer-text span {
    font-size: 12px;
    color: var(--gray-text);
}

.mega-footer-btn {
    padding: 10px 20px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    gap: 12px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #c00000;
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-text);
    border: 1.5px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: var(--dark-text);
    background: #fafafa;
}

.btn-arrow {
    font-size: 18px;
    line-height: 1;
}

.get-in-touch {
    padding: 12px 24px;
    border-radius: 10px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0;
}

.hero-text {
    flex: 0 0 500px;
    z-index: 2;
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-text .highlight {
    color: var(--primary-red);
}

.hero-text p {
    font-size: 16px;
    color: var(--gray-text);
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-image-container {
    flex: 1;
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 56px;
    }

    .hero-image-container {
        width: 60%;
        right: -50px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }

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

    .brands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
}

/* Global Overflow Fix */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Mobile Menu Overrides (Hidden on Desktop) */
.mobile-menu-header,
.nav-icon,
.accordion-icon {
    display: none;
}

@media (max-width: 992px) {
    header {
        padding: 15px 0;
    }

    .nav-links,
    .get-in-touch {
        display: none;
    }

    /* Hamburger Menu Styles */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 10000;
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark-text);
        transition: var(--transition);
        border-radius: 3px;
    }

    /* Active State for Hamburger (Hidden when drawer is open) */
    .hamburger.active {
        opacity: 0;
        pointer-events: none;
    }

    /* Mobile Nav Active */
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        height: 100vh;
        background: var(--white);
        padding: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        gap: 0;
        text-align: left;
        overflow-y: auto;
    }

    /* Mobile Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        background: var(--primary-red);
        padding: 20px 25px;
        margin-bottom: 10px;
    }

    .mobile-close-btn {
        background: transparent;
        border: none;
        color: white;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        padding: 0;
    }

    .nav-links.mobile-active li {
        width: 100%;
    }
    
    .nav-links.mobile-active li.dropdown {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links.mobile-active li a.active::after {
        display: none;
    }

    .nav-links.mobile-active .nav-icon {
        display: block;
        width: 24px;
        text-align: center;
        color: var(--gray-text);
        flex-shrink: 0;
    }

    .nav-links.mobile-active > li > a {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 25px;
        border-bottom: 1px solid #f0f0f0;
        color: var(--dark-text);
        font-weight: 600;
        width: 100%;
    }

    .nav-links.mobile-active .nav-icon {
        display: block;
        color: var(--gray-text);
    }
    
    .nav-links.mobile-active .arrow-icon {
        margin-left: auto;
    }
    
    .nav-links.mobile-active > li.dropdown > a {
        /* Reset justify-content to default (flex-start) */
    }
    
    .nav-links.mobile-active > li.dropdown.active > a {
        color: var(--primary-red);
    }

    .nav-links.mobile-active > li.dropdown.active > a .nav-icon,
    .nav-links.mobile-active > li.dropdown.active > a .arrow-icon {
        color: var(--primary-red);
    }

    .nav-links.mobile-active > li.dropdown.active > a .arrow-icon {
        transform: rotate(180deg);
    }

    .nav-links.mobile-active li.dropdown .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0;
        border: none;
        margin-top: 0;
        background: #fdfdfd;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links.mobile-active li.dropdown.active .mega-menu {
        display: block;
    }

    .nav-links.mobile-active li.dropdown .mega-menu-grid {
        display: block;
        padding: 0;
    }

    .nav-links.mobile-active .mega-icon,
    .nav-links.mobile-active .mega-footer {
        display: none;
    }

    .nav-links.mobile-active .mega-col {
        border: none;
        padding: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links.mobile-active .mega-col:last-child {
        border-bottom: none;
    }

    .nav-links.mobile-active .mega-col h5 {
        font-size: 14px;
        color: var(--dark-text);
        margin-bottom: 0;
        padding: 16px 25px 16px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links.mobile-active .accordion-icon {
        display: block;
        font-size: 18px;
        color: var(--gray-text);
        font-weight: 400;
    }

    /* Nested Accordion Active State */
    .nav-links.mobile-active .mega-col ul {
        display: none;
        background: #f8f8f8;
        padding: 10px 0;
    }
    
    .nav-links.mobile-active .mega-col.active ul {
        display: block;
    }
    
    .nav-links.mobile-active .mega-col.active h5 {
        color: var(--primary-red);
        font-weight: 700;
    }
    
    .nav-links.mobile-active .mega-col.active .accordion-icon {
        color: var(--primary-red);
    }

    .nav-links.mobile-active .mega-col ul li {
        margin-bottom: 0;
    }

    .nav-links.mobile-active .mega-col ul li a {
        font-size: 14px;
        padding: 12px 25px 12px 60px;
        border-bottom: none;
        color: var(--gray-text);
        display: block;
    }

    /* Restored Hero Mobile Styles */
    .hero {
        padding-top: 50px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        flex: none;
        width: 100%;
        padding-right: 0;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 50px;
    }

    .hero-image-container img {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 15px;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Clients Carousel */
.clients-carousel-section {
    padding: 60px 0 20px;
    background: #fff;
    overflow: hidden;
}

.carousel-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    padding: 30px 40px;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.clients-carousel-track {
    display: flex;
    align-items: center;
    gap: 40px; /* Reduced gap/spread for a tighter, cleaner look */
    width: max-content;
    animation: scrollClients 60s linear infinite; /* Slower, smoother speed (60s instead of 40s) */
}

.clients-carousel-track:hover {
    animation-play-state: paused;
}

.clients-carousel-track img {
    height: 70px; /* Increased logo height from 55px */
    width: auto;
    max-width: 170px; /* Increased logo max-width from 140px */
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends white image backgrounds out transparently */
    opacity: 0.85; /* Keep fully colored but soft by default */
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.clients-carousel-track img:hover {
    opacity: 1;
    transform: scale(1.08); /* Adjusted hover scale slightly since logos are bigger now */
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .carousel-box {
        padding: 25px 25px;
    }
}

@media (max-width: 768px) {
    .clients-carousel-section {
        padding: 40px 0 10px;
    }

    .carousel-box {
        padding: 20px 20px;
        border-radius: 12px;
    }

    .clients-carousel-track {
        gap: 25px; /* Reduced gap/spread for mobile */
        animation-duration: 45s; /* Slower, smoother speed for mobile */
    }

    .clients-carousel-track img {
        height: 48px; /* Increased logo height from 38px */
        max-width: 120px; /* Increased logo max-width from 100px */
    }

    .clients-carousel-wrapper::before,
    .clients-carousel-wrapper::after {
        width: 50px;
    }
}

/* Strategic Alliances Carousel */
.alliances-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.alliances-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.alliances-carousel-wrapper::before,
.alliances-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.alliances-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.alliances-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.alliances-carousel-track {
    display: flex;
    align-items: center;
    gap: 40px; /* Reduced gap/spread for a tighter look */
    width: max-content;
    animation: scrollAlliances 50s linear infinite; /* Beautifully slow scroll speed */
}

.alliances-carousel-track:hover {
    animation-play-state: paused;
}

.alliances-carousel-track svg {
    height: 50px;
    width: auto;
    max-width: 170px;
    mix-blend-mode: multiply; /* Blends backgrounds seamlessly */
    opacity: 0.85; /* Keep fully colored but soft by default */
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.alliances-carousel-track svg:hover {
    opacity: 1;
    transform: scale(1.08); /* Modern, elegant hover zoom */
}

@keyframes scrollAlliances {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .alliances-carousel-track {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .alliances-section {
        padding: 40px 0;
    }

    .alliances-carousel-track {
        gap: 25px;
        animation-duration: 35s;
    }

    .alliances-carousel-track svg {
        height: 38px;
    }

    .alliances-carousel-wrapper::before,
    .alliances-carousel-wrapper::after {
        width: 50px;
    }
}

/* Verticals Section */
.verticals {
    padding: 50px 0;
    background-color: #fcfcfc;
    position: relative;
    z-index: 5;
}

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

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.header-line {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vertical-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 40px 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.card-content p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}

.learn-more {
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 12px;
}

/* Responsive Verticals */
@media (max-width: 1200px) {
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .verticals-grid {
        grid-template-columns: 1fr;
    }
}

/* Home Stats Bar */
.home-stats-bar {
    background: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-stats-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.h-stat-icon {
    flex-shrink: 0;
}

.h-stat-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.h-stat-info p {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1100px) {
    .home-stats-flex {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .h-stat-divider {
        display: none;
    }
}

@media (max-width: 700px) {
    .home-stats-flex {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .home-stats-flex {
        grid-template-columns: 1fr;
    }
}

/* Brands Section */
.brands {
    padding: 50px 0;
    background-color: var(--white);
}

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

.brand-card {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-info {
    flex: 1;
}

.brand-logo-text {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 42px;
    font-weight: 800;
    color: #4a2c1a;
    /* Incenio brown */
    text-transform: lowercase;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-sub {
    font-size: 11px;
    letter-spacing: 5px;
    color: #8a8a8a;
    font-weight: 700;
    margin-top: 8px;
}

.polpo .brand-name {
    color: #0c3321;
    /* Polpo dark green */
    text-transform: uppercase;
    font-size: 38px;
    letter-spacing: 0px;
}

.brand-desc {
    font-size: 11px;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-link {
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.brand-link:hover {
    gap: 12px;
}

.brand-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.brand-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Responsive Brands */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .brand-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .brand-image {
        width: 100%;
        justify-content: center;
    }
}

/* Why Choose Section */
.why-choose {
    background-color: #000000;
    color: var(--white);
    padding: 25px 0;
    margin: 0;
}

.why-choose-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 80px;
    /* Increased gap from title to first item */
}

.why-header h2 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.why-header .highlight {
    color: var(--primary-red);
}

.features-grid {
    display: flex;
    gap: 70px;
    /* Spacing between features updated to 70px */
    flex: 1;
    justify-content: flex-start;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item p {
    font-size: 11px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 1.1;
    letter-spacing: 0px;
    color: var(--white);
}

/* Responsive Why Choose */
@media (max-width: 1200px) {
    .why-choose-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 20px;
    }

    .features-grid {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
}

/* Stats CTA Section */
.stats-cta {
    background-color: var(--white);
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
}

.stats-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    width: 100%;
}

.stats-grid {
    display: flex;
    gap: 100px;
    padding: 50px 40px;
    padding-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
    align-items: center;
    justify-content: center;
    flex: 1;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.stat-icon {
    margin-top: 5px;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    text-transform: capitalize;
    line-height: 1.3;
    display: block;
}

.cta-box {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 0 120px;
    padding-right: max(40px, calc((100vw - 1400px) / 2 + 40px));
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 250px;
}

.cta-btn {
    background-color: var(--white) !important;
    color: var(--primary-red) !important;
    border: none !important;
    font-size: 13px;
    padding: 12px 25px !important;
    border-radius: 6px !important;
    font-weight: 800 !important;
    text-transform: capitalize;
}

.cta-btn:hover {
    background: #f8f8f8 !important;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .stats-cta-content {
        flex-direction: column;
    }

    .stats-grid {
        justify-content: center;
        flex-wrap: wrap;
        padding: 40px 20px;
        gap: 40px;
    }

    .cta-box {
        padding: 60px 20px;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #fff;
}

.h-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.h-feat-item {
    text-align: center;
}

.h-feat-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.h-feat-item:hover .h-feat-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.h-feat-item:hover .h-feat-icon svg {
    stroke: #fff;
}

.h-feat-item h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.h-feat-item p {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .h-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .h-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .h-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Home CTA Section */
.home-cta-section {
    padding-bottom: 50px;
}

.home-cta-bar {
    background: var(--primary-red) url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1500') center/cover no-repeat;
    background-blend-mode: multiply;
    border-radius: 16px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(230, 24, 24, 0.2);
}

.h-cta-subtitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: 0.9;
    display: block;
    margin-bottom: 10px;
}

.h-cta-left h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
}

.h-cta-right {
    text-align: right;
}

.h-cta-right p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.5;
}

.h-cta-btn {
    background: #fff !important;
    color: var(--primary-red) !important;
    font-weight: 800 !important;
    padding: 15px 30px !important;
    font-size: 13px !important;
    border: none !important;
}

@media (max-width: 992px) {
    .home-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
        gap: 40px;
    }

    .h-cta-right {
        text-align: center;
    }
}

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

.subtitle-main {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.news-image {
    position: relative;
    height: 220px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 1px;
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 13px;
    color: #999;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer {
    padding: 50px 0 0;
    background-color: var(--white);
    border: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    align-items: start;
}

.footer h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-brand .brand-bio {
    font-size: 13px;
    color: var(--gray-text);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 300px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    text-decoration: none;
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-red);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-text);
}

.footer-social {
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #050505;
    color: #888;
    padding: 14px 0;
    font-size: 11px;
    display: block;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
}

.footer-legal .sep {
    color: #333;
}

/* Global Responsive Resets */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.no-scroll {
    overflow: hidden;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero-text p {
        font-size: 14px;
    }
}

/* Consolidate Footer & Stats Bar for Small Screens */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}