/**
 * ABEXO® - Main Stylesheet
 * Clean, Technical, Industrial Design
 * Colors: Deep Navy (#002D58), Signal Red (#E21E26), White (#FFFFFF)
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Brand Colors */
    --color-navy: #002D58;
    --color-navy-light: #003D78;
    --color-red: #E21E26;
    --color-red-dark: #C41920;
    --color-white: #FFFFFF;
    
    /* Neutral Colors */
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}




/* About Section */
.about-section {
    background: #FFFFFF;
    position: relative;
}

/* About Wrapper */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Content (Left Column) */
.about-content {
    display: flex;
    flex-direction: column;
}

.about-content .section-label {
    margin-bottom: 15px;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: #002D58;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #E21E26;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-item p {
    font-size: 15px;
    color: #002D58;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* About Visual (Right Column) */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

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

/* About Badge Overlay */
.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0, 45, 88, 0.1);
}

.badge-icon {
    width: 32px;
    height: 32px;
    color: #E21E26;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-title {
    font-size: 16px;
    font-weight: 700;
    color: #002D58;
}

/* About Stats */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 2px;
    padding: 24px 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #002D58;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #E5E7EB;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .about-wrapper {
        gap: 60px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-image-wrapper {
        height: 400px;
    }
    
    .about-badge {
        bottom: 20px;
        left: 20px;
        padding: 14px 20px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .about-highlights {
        gap: 14px;
        margin-bottom: 32px;
    }
    
    .highlight-item {
        gap: 12px;
    }
    
    .highlight-icon {
        width: 22px;
        height: 22px;
    }
    
    .highlight-item p {
        font-size: 14px;
    }
    
    .about-image-wrapper {
        height: 350px;
    }
    
    .about-badge {
        bottom: 16px;
        left: 16px;
        padding: 12px 18px;
        gap: 12px;
    }
    
    .badge-icon {
        width: 28px;
        height: 28px;
    }
    
    .badge-label {
        font-size: 11px;
    }
    
    .badge-title {
        font-size: 14px;
    }
    
    .about-stats {
        padding: 20px 24px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-divider {
        height: 36px;
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .highlight-item p {
        font-size: 13px;
    }
    
    .about-image-wrapper {
        height: 300px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        padding: 12px 0;
        border-bottom: 1px solid #E5E7EB;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}













/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-navy);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

sup {
    font-size: 0.6em;
    vertical-align: super;
}

/* ==================== Container & Layout ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

/* ==================== Header / Navigation ==================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-navy);
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--color-red);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.header-search-btn:hover {
    background: var(--color-gray-100);
    color: var(--color-red);
}

.btn-header {
    padding: 12px 24px;
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
}

.hamburger {
    width: 100%;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition-smooth);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 45, 88, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-close:hover {
    color: var(--color-red);
    transform: rotate(90deg);
}

.search-content h3 {
    color: var(--color-white);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.search-form {
    position: relative;
    display: flex;
}

.search-input {
    width: 100%;
    padding: 20px 70px 20px 25px;
    background: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    color: var(--color-navy);
    outline: none;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-red);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.search-submit:hover {
    background: var(--color-red-dark);
    transform: translateY(-50%) scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    z-index: 9998;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    padding: 100px 30px 40px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-navy);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-nav-item.active .mobile-nav-link {
    color: var(--color-red);
}

.mobile-menu-cta {
    padding-top: 20px;
}

/* ==================== Main Content ==================== */
.main-content {
    margin-top: 80px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.btn-primary:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 30, 38, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-large {
    padding: 16px 35px;
    font-size: 16px;
}

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

/* ==================== Hero Section ==================== */

/* ================================================================
   ABEXO® HERO SECTION STYLES - ENHANCED SMOOTH TRANSITIONS
   ================================================================ */

/* Brand Variables */
:root {
    --navy: #002D58;
    --red: #E21E26;
    --white: #ffffff;
    --overlay-dark: rgba(0, 45, 88, 0.7);
}

/* Hero Container - Dual Layer for Smooth Crossfade */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background-color: var(--navy);
    overflow: hidden;
}

/* Background Image Container */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Background Image Layer 1 */
.hero-bg-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

/* Background Image Layer 2 */
.hero-bg-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
}

/* Overlay on top of images */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 45, 88, 0.7), rgba(0, 45, 88, 0.7));
    z-index: 3;
}

/* Fade transition states */
.hero-bg-1.fade-out {
    opacity: 0;
}

.hero-bg-2.fade-in {
    opacity: 1;
}

/* Hero content stays on top */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

/* Text animation classes */
.hero-title, .hero-description, .hero-subheadline {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.text-fade-out {
    opacity: 0 !important;
    transform: translateY(-10px);
}

.text-fade-in {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Sub-headline */
.hero-subheadline {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

/* Main Heading */
.hero-title {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: none;
}

/* Description Text */
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 6px 6px 6px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 30, 38, 0.4);
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .icon-circle {
    transform: scale(1.1) rotate(45deg);
}

/* Social Sidebar */
.social-sidebar {
    position: absolute;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 20;
}

.social-sidebar i {
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
}

.social-sidebar i:hover {
    color: var(--red);
    opacity: 1;
    transform: scale(1.2);
}

/* Slider Pagination (Dots) */
.slider-dots {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--red);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(226, 30, 38, 0.6);
    border-color: var(--white);
}

/* Navigation Arrows */
.slider-arrows {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    gap: 30px;
    z-index: 20;
}

.slider-arrows button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.slider-arrows button:hover {
    opacity: 1;
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}

.slider-arrows button:active {
    transform: scale(0.95);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .social-sidebar { display: none; }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 16px; }
    .hero-subheadline { font-size: 12px; letter-spacing: 2px; }
    .slider-arrows { 
        right: 50%; 
        transform: translateX(50%); 
        bottom: 30px;
    }
    .slider-dots { bottom: 100px; }
}

/* ==================== Trust Strip ==================== */
.trust-strip {
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    padding: 40px 0;
}

.trust-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-gray-200);
    color: var(--color-navy);
    transition: var(--transition-smooth);
}

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

.trust-item:hover .trust-icon {
    border-color: var(--color-red);
    color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(226, 30, 38, 0.15);
}

.trust-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== Footer ==================== */
.main-footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding-top: 80px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--color-white);
}

/* Footer About Column */
.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
}

.footer-badge i {
    color: var(--color-red);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-red);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    color: var(--color-red);
    margin-top: 2px;
    font-size: 16px;
    min-width: 18px;
}

.footer-contact-info a {
    transition: var(--transition-smooth);
}

.footer-contact-info a:hover {
    color: var(--color-white);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.copyright {
    margin: 0;
}

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

.cert-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* ====================why secition ==================== */



/* Why ABEXO® Section */
.why-section {
    background: #FFFFFF;
    position: relative;
}

/* Feature Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Feature Card */
.why-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    border-color: #E21E26;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 45, 88, 0.08);
}

/* Icon Container */
.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #002D58;
    transition: color 0.3s ease;
}

.why-card:hover .why-icon {
    color: #E21E26;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

/* Card Title */
.why-title {
    font-size: 18px;
    font-weight: 700;
    color: #002D58;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Card Description */
.why-description {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-card {
        padding: 35px 25px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .why-card {
        padding: 30px 25px;
    }
    
    .why-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
    }
    
    .why-title {
        font-size: 17px;
    }
    
    .why-description {
        font-size: 14px;
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .why-card {
        padding: 25px 20px;
    }
    
    .why-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .why-title {
        font-size: 16px;
        margin-bottom: 10px;
    }








/* ==================== Scroll to Top Button ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(226, 30, 38, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-red-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(226, 30, 38, 0.4);
}

/* ==================== Section Headers ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-red);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 18px;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.products-section {
    background: #FFFFFF;
    position: relative;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Bottom row: 2 columns centered */
.products-grid .product-panel:nth-child(4),
.products-grid .product-panel:nth-child(5) {
    grid-column: span 1;
}

.products-grid .product-panel:nth-child(4) {
    grid-column: 1 / 2;
}

.products-grid .product-panel:nth-child(5) {
    grid-column: 2 / 3;
}

/* Product Panel */
.product-panel {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.product-panel:hover {
    border-color: #002D58;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 45, 88, 0.12);
}

/* Product Visual */
.product-visual {
    width: 100%;
    height: 240px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E5E7EB;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-panel:hover .product-visual img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Product Name */
.product-name {
    font-size: 20px;
    font-weight: 700;
    color: #002D58;
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Product Subtitle */
.product-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 8px;
    margin-top: -4px;
}

/* Product Positioning */
.product-positioning {
    font-size: 15px;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

/* Product Benefits List */
.product-benefits {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    flex: 1;
}

.product-benefits li {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.product-benefits li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #E21E26;
    border-radius: 50%;
}

.product-benefits li:last-child {
    margin-bottom: 0;
}

/* Product CTA Button */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #002D58;
    border-radius: 2px;
    color: #002D58;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-cta:hover {
    background: #002D58;
    color: #FFFFFF;
}

.product-cta:hover i {
    transform: translateX(4px);
}

.product-panel:hover .product-cta {
    border-color: #E21E26;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Reset bottom row spanning */
    .products-grid .product-panel:nth-child(4),
    .products-grid .product-panel:nth-child(5) {
        grid-column: span 1;
    }
    
    .products-grid .product-panel:nth-child(4) {
        grid-column: auto;
    }
    
    .products-grid .product-panel:nth-child(5) {
        grid-column: auto;
    }
    
    .product-visual {
        height: 220px;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .product-name {
        font-size: 18px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .product-visual {
        height: 200px;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .product-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .product-positioning {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .product-benefits {
        margin-bottom: 20px;
    }
    
    .product-benefits li {
        font-size: 13px;
    }
    
    .product-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .product-visual {
        height: 180px;
    }
    
    .product-content {
        padding: 20px 18px;
    }
    
    .product-name {
        font-size: 17px;
    }
    
    .product-subtitle {
        font-size: 13px;
    }
}
/* ==================== Text Utilities ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-navy { color: var(--color-navy); }
.text-red { color: var(--color-red); }
.text-gray { color: var(--color-gray-600); }

/* ==================== Spacing Utilities ==================== */
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    :root {
        --container-width: 100%;
        --section-padding: 80px 0;
    }
    .section-title { font-size: 36px; }
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }}
    
    .main-footer {
    position: relative;
    color: #ffffff;
    padding: 80px 0 30px;
    overflow: hidden;
    background-color: #0a0a0a; /* Fallback color */
}

/* The Background Image Layer */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/footer-bg.jpg'); /* CHANGE TO YOUR PATH */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15; /* Adjust this to make the image more or less visible */
    z-index: 1;
}

/* The Dark Overlay (makes text readable) */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(10,10,10,0.95));
    z-index: 2;
}

/* Ensure content stays on top of the image and overlay */
.footer-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Make sure links are still visible */
.footer-links a, .footer-contact-info a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000; /* Or your brand color */
}
/* ==================== Application & Fitment Section ==================== */
