/* =========================================
   COLOR PALETTE & CSS VARIABLES
========================================= */
:root {
    --primary-red: #F25449;
    --primary-yellow: #F5B841;
    --bg-light: #EBF2FA;
    --brand-blue: #0D3B66;
    --text-black: #0E0E0E;
    --pure-white: #FFFFFF;
    --shadow: rgba(13, 59, 102, 0.08);
    --shadow-md: rgba(13, 59, 102, 0.15);
    --shadow-lg: rgba(13, 59, 102, 0.22);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   GLOBAL RESET & BASE
========================================= */
*, 
*::before, 
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-black);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-blue);
    line-height: 1.25;
    margin-bottom: 1rem;
}

p { 
    margin-bottom: 1rem; 
    color: #3a4a5c; 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section { 
    padding: 100px 0; 
}

.bg-white { 
    background-color: var(--pure-white); 
}

.bg-light { 
    background-color: var(--bg-light); 
}

.bg-dark { 
    background-color: var(--brand-blue); 
}

img { 
    display: block; 
    width: 100%; 
}

/* =========================================
   CUSTOM CURSOR
========================================= */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0; 
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.cursor-dot { 
    width: 8px; 
    height: 8px; 
    background: var(--primary-red); 
}

.cursor-ring { 
    width: 36px; 
    height: 36px; 
    border: 2px solid rgba(242, 84, 73, 0.5); 
    transition: width 0.2s, height 0.2s, border-color 0.2s; 
}

.cursor-ring.hovering { 
    width: 52px; 
    height: 52px; 
    border-color: var(--primary-yellow); 
}

@media (hover: none) {
    .cursor-dot, 
    .cursor-ring { 
        display: none; 
    }
}

/* =========================================
   PRELOADER
========================================= */
#preloader {
    position: fixed; 
    inset: 0;
    background: var(--brand-blue);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.done { 
    opacity: 0; 
    visibility: hidden; 
}

.preloader-inner { 
    text-align: center; 
}

.preloader-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.preloader-logo span { 
    color: var(--primary-yellow); 
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 4px;
    animation: preloaderAnim 1.2s ease-out forwards;
}

@keyframes preloaderAnim {
    from { 
        width: 0%; 
    }
    to { 
        width: 100%; 
    }
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-110%) skewX(-20deg);
    transition: transform 0.5s ease;
}

.btn:hover::before { 
    transform: translateX(110%) skewX(-20deg); 
}

.btn-primary {
    background: var(--primary-red);
    color: var(--pure-white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(242, 84, 73, 0.3);
}

.btn-primary:hover {
    background: #d94038;
    border-color: #d94038;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(242, 84, 73, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--pure-white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
    background: var(--pure-white);
    color: var(--brand-blue);
    border-color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-blue {
    background: var(--brand-blue);
    color: var(--pure-white);
    border-color: var(--brand-blue);
}

.btn-blue:hover {
    background: #0a2d4f;
    border-color: #0a2d4f;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(13, 59, 102, 0.4);
}

/* =========================================
   SECTION LABELS
========================================= */
.section-label {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-black);
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 18px;
}

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

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

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

/* =========================================
   NAVIGATION
========================================= */
#navbar {
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: var(--pure-white);
    box-shadow: 0 4px 24px var(--shadow-md);
    padding: 0;
}

#navbar:not(.scrolled) { 
    background: transparent; 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.3s ease;
}

#navbar.scrolled .nav-container { 
    height: 72px; 
}

.brand-logo { 
    max-height: 60px; 
    width: auto; 
    margin: 0 auto; 
    border-radius: 10px; 
}

.logo-fallback {
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--brand-blue);
    align-items: center;
}

.logo-fallback span { 
    color: var(--primary-red); 
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

#navbar:not(.scrolled) .nav-item { 
    color: rgba(255, 255, 255, 0.9); 
}

#navbar.scrolled .nav-item { 
    color: var(--brand-blue); 
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 2px; 
    left: 14px; 
    right: 14px;
    height: 2px;
    background: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-item:hover::after { 
    transform: scaleX(1); 
}

.nav-cta {
    background: var(--primary-red);
    color: var(--pure-white) !important;
    padding: 9px 22px;
    border-radius: 8px;
    margin-left: 6px;
    box-shadow: 0 4px 14px rgba(242, 84, 73, 0.35);
}

.nav-cta:hover {
    background: #d94038;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 84, 73, 0.45);
}

.nav-cta::after { 
    display: none; 
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px; 
    height: 2px;
    background: var(--pure-white);
    border-radius: 2px;
    transition: var(--transition);
}

#navbar.scrolled .mobile-menu-btn span { 
    background: var(--brand-blue); 
}

.mobile-menu-btn.open span:nth-child(1) { 
    transform: rotate(45deg) translate(5px, 5px); 
}

.mobile-menu-btn.open span:nth-child(2) { 
    opacity: 0; 
    transform: translateX(-10px); 
}

.mobile-menu-btn.open span:nth-child(3) { 
    transform: rotate(-45deg) translate(5px, -5px); 
}

/* =========================================
   HERO SECTION
========================================= */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-image {
    position: absolute; 
    inset: 0;
    background-image: url('./img/herobg.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

#hero.loaded .hero-bg-image { 
    transform: scale(1); 
}

.hero-overlay {
    position: absolute; 
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.92) 0%, rgba(13, 59, 102, 0.75) 60%, rgba(242, 84, 73, 0.2) 100%);
}

.hero-particles { 
    position: absolute; 
    inset: 0; 
    pointer-events: none; 
}

.particle {
    position: absolute;
    width: 3px; 
    height: 3px;
    background: rgba(245, 184, 65, 0.6);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { 
        transform: translateY(100vh) scale(0); 
        opacity: 0; 
    }
    10% { 
        opacity: 1; 
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-10vh) scale(1); 
        opacity: 0; 
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 8px; 
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.4); 
    }
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--primary-yellow);
    position: relative;
}

.hero-content h1 em::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineDraw 0.8s 1s ease forwards;
}

@keyframes underlineDraw { 
    to { 
        transform: scaleX(1); 
    } 
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(235, 242, 250, 0.9);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    padding: 7px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-badge:hover {
    background: rgba(245, 184, 65, 0.2);
    border-color: var(--primary-yellow);
}

.hero-badge i { 
    color: var(--primary-yellow); 
    font-size: 0.75rem; 
}

/* Hero visual side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.8s ease;
    animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {
    0%, 
    100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-12px); 
    }
}

.hero-card-float {
    position: absolute;
    background: var(--pure-white);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-card-float i { 
    font-size: 1.6rem; 
    color: var(--primary-red); 
}

.hero-card-float div { 
    display: flex; 
    flex-direction: column; 
}

.hero-card-float strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-blue);
    line-height: 1;
}

.hero-card-float span { 
    font-size: 0.75rem; 
    color: #666; 
    margin-top: 2px; 
}

.hero-card-1 {
    bottom: 30px; 
    left: -20px;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 30px; 
    right: -20px;
    animation-delay: 0.8s;
}

@keyframes floatCard {
    0%, 
    100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    z-index: 2;
    animation: fadeInUp 1s 2s both;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translate(-50%, 20px); 
    }
    to { 
        opacity: 1; 
        transform: translate(-50%, 0); 
    }
}

.scroll-mouse {
    width: 22px; 
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 3px; 
    height: 7px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    margin-top: 5px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { 
        transform: translateY(0); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(10px); 
        opacity: 0; 
    }
}

/* =========================================
   STATS STRIP
========================================= */
.stats-strip {
    background: var(--brand-blue);
    padding: 0;
}

.stats-grid {
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    transition: var(--transition);
}

.stat-item:hover { 
    background: rgba(255, 255, 255, 0.05); 
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-item h2 sup {
    font-size: 1.2rem;
    vertical-align: super;
    color: var(--primary-yellow);
}

.stat-item p { 
    color: rgba(255, 255, 255, 0.75); 
    margin: 0; 
    font-size: 0.9rem; 
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    flex-shrink: 0;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-lg);
    transition: transform 0.6s ease;
}

.about-img-wrap:hover .about-main-img { 
    transform: scale(1.02); 
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--pure-white);
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px var(--shadow-md);
    border-left: 4px solid var(--primary-yellow);
}

.about-badge-float i { 
    font-size: 1.8rem; 
    color: var(--primary-yellow); 
}

.about-badge-float strong { 
    display: block; 
    font-family: 'Montserrat', sans-serif; 
    color: var(--brand-blue); 
    font-weight: 800; 
}

.about-badge-float span { 
    font-size: 0.8rem; 
    color: #666; 
}

.about-content h2 { 
    font-size: 2.2rem; 
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 30px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--brand-blue);
}

.about-feat i { 
    color: var(--primary-red); 
    font-size: 0.9rem; 
    flex-shrink: 0; 
}

/* =========================================
   PRODUCTS SECTION
========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.product-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.product-card:hover .product-img-wrap img { 
    transform: scale(1.08); 
}

.product-tag {
    position: absolute;
    top: 12px; 
    left: 12px;
    background: var(--primary-yellow);
    color: var(--text-black);
    font-size: 0.7rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-icon {
    width: 48px; 
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--primary-red);
}

.product-icon i {
    font-size: 1.3rem;
    color: var(--brand-blue);
    transition: var(--transition);
}

.product-card:hover .product-icon i { 
    color: var(--pure-white); 
}

.product-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--brand-blue);
}

.product-body p {
    font-size: 0.88rem;
    color: #5a6a7a;
    flex: 1;
    margin-bottom: 16px;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.83rem;
    color: var(--primary-red);
    margin-top: auto;
    transition: var(--transition);
}

.product-cta i { 
    transition: transform 0.3s ease; 
}

.product-cta:hover { 
    color: var(--brand-blue); 
}

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

.featured-product {
    border: 2px solid var(--primary-red);
    box-shadow: 0 6px 30px rgba(242, 84, 73, 0.2);
}

/* =========================================
   INDUSTRIES SECTION
========================================= */
.industries-section { 
    padding: 100px 0; 
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.industry-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.industry-img {
    position: absolute;
    inset: 0;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-img img { 
    transform: scale(1.1); 
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 59, 102, 0.9) 0%, rgba(13, 59, 102, 0.4) 50%, transparent 100%);
    transition: var(--transition);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(242, 84, 73, 0.9) 0%, rgba(242, 84, 73, 0.5) 60%, transparent 100%);
}

.industry-body {
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0;
    padding: 20px;
    transform: translateY(30px);
    transition: var(--transition);
}

.industry-card:hover .industry-body { 
    transform: translateY(0); 
}

.industry-body i {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
}

.industry-card:hover .industry-body i { 
    color: var(--pure-white); 
}

.industry-body h3 {
    color: var(--pure-white);
    font-size: 1rem;
    margin-bottom: 6px;
}

.industry-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-body p { 
    opacity: 1; 
}

/* =========================================
   WHY CHOOSE US
========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
}

.why-card {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(13, 59, 102, 0.07);
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-blue);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
    z-index: 0;
    border-radius: 14px;
}

.why-card:hover::before { 
    transform: scaleY(1); 
}

.why-card:hover { 
    box-shadow: 0 20px 50px var(--shadow-lg); 
    transform: translateY(-6px); 
}

.why-card > * { 
    position: relative; 
    z-index: 1; 
    transition: color 0.4s ease; 
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: rgba(13, 59, 102, 0.08);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.why-card:hover .why-number { 
    color: rgba(255, 255, 255, 0.12); 
}

.why-icon {
    width: 52px; 
    height: 52px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-icon { 
    background: var(--primary-yellow); 
}

.why-icon i { 
    font-size: 1.3rem; 
    color: var(--pure-white); 
}

.why-card:hover .why-icon i { 
    color: var(--text-black); 
}

.why-card h3 { 
    font-size: 1.05rem; 
}

.why-card p { 
    font-size: 0.9rem; 
    margin: 0; 
}

.why-card:hover h3 { 
    color: var(--pure-white); 
}

.why-card:hover p { 
    color: rgba(255, 255, 255, 0.8); 
}

/* Safety strip */
.safety-strip {
    background: var(--brand-blue);
    border-radius: 20px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

.safety-strip::before {
    content: '';
    position: absolute;
    top: -50px; 
    right: -50px;
    width: 300px; 
    height: 300px;
    background: rgba(242, 84, 73, 0.08);
    border-radius: 50%;
}

.safety-header { 
    text-align: center; 
    margin-bottom: 40px; 
}

.safety-header h2 { 
    color: var(--pure-white); 
}

.safety-header p { 
    color: rgba(255, 255, 255, 0.75); 
    max-width: 600px; 
    margin: 0 auto; 
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.safety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 14px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.safety-item:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-4px);
}

.safety-item i { 
    font-size: 1.6rem; 
    color: var(--primary-yellow); 
    transition: var(--transition); 
}

.safety-item:hover i { 
    color: var(--pure-white); 
}

.safety-item span { 
    font-size: 0.8rem; 
    color: rgba(255, 255, 255, 0.8); 
    font-weight: 500; 
    transition: var(--transition); 
}

.safety-item:hover span { 
    color: var(--pure-white); 
}

/* =========================================
   PROCESS SECTION
========================================= */
.process-section { 
    padding: 100px 0; 
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    margin-top: 20px;
}

.process-line {
    display: none;
}

.process-step { 
    position: relative; 
}

.step-badge {
    width: 48px; 
    height: 48px;
    background: var(--primary-yellow);
    color: var(--text-black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(245, 184, 65, 0.4);
    transition: var(--transition);
    position: absolute;
    top: -25px;
    z-index: 3;
}

.process-step:hover .step-badge {
    background: var(--primary-red);
    color: var(--pure-white);
    transform: scale(1.1);
}

.step-card {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-lg);
    border-bottom-color: var(--primary-red);
}

.step-card i {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 14px;
    display: block;
    transition: var(--transition);
}

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

.step-card h4 { 
    font-size: 1rem; 
    margin-bottom: 8px; 
}

.step-card p { 
    font-size: 0.88rem; 
    margin: 0; 
    color: #5a6a7a; 
}

/* =========================================
   ADVANTAGE SECTION
========================================= */
.advantage-section { 
    padding: 100px 0; 
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
}

.advantage-text h2 { 
    font-size: 2.2rem; 
}

.advantage-list { 
    margin-top: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 18px; 
}

.adv-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.adv-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
    border-color: var(--primary-yellow);
}

.adv-icon {
    width: 42px; 
    height: 42px;
    background: rgba(245, 184, 65, 0.15);
    border: 1px solid rgba(245, 184, 65, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.adv-item:hover .adv-icon { 
    background: var(--primary-yellow); 
}

.adv-icon i { 
    color: var(--primary-yellow); 
    font-size: 1rem; 
    transition: var(--transition); 
}

.adv-item:hover .adv-icon i { 
    color: var(--text-black); 
}

.adv-item > div:last-child { 
    display: flex; 
    flex-direction: column; 
}

.adv-item strong { 
    color: var(--pure-white); 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.95rem; 
    margin-bottom: 3px; 
}

.adv-item span { 
    color: rgba(255, 255, 255, 0.65); 
    font-size: 0.85rem; 
}

.advantage-visual { 
    position: relative; 
}

.adv-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.adv-img-badge {
    position: absolute;
    bottom: -16px; 
    left: 24px;
    background: var(--primary-yellow);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-black);
    box-shadow: 0 8px 24px rgba(245, 184, 65, 0.4);
}

.adv-img-badge i { 
    font-size: 1.1rem; 
}

/* Coverage grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 30px 22px;
    text-align: center;
    transition: var(--transition);
}

.coverage-card:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(242, 84, 73, 0.3);
}

.coverage-card i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 14px;
    display: block;
    transition: var(--transition);
}

.coverage-card:hover i { 
    color: var(--pure-white); 
}

.coverage-card h4 { 
    color: var(--pure-white); 
    font-size: 1rem; 
    margin-bottom: 8px; 
}

.coverage-card p { 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 0.85rem; 
    margin: 0; 
    transition: var(--transition); 
}

.coverage-card:hover p { 
    color: rgba(255, 255, 255, 0.9); 
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section { 
    padding: 100px 0; 
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { 
    font-size: 2.1rem; 
}

.contact-cards { 
    margin-top: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 3px 16px var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.contact-card:hover {
    border-left-color: var(--primary-red);
    transform: translateX(4px);
    box-shadow: 0 6px 24px var(--shadow-md);
}

.cc-icon {
    width: 44px; 
    height: 44px;
    background: rgba(242, 84, 73, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cc-icon i { 
    color: var(--primary-red); 
    font-size: 1.1rem; 
}

.contact-card h5 { 
    color: var(--brand-blue); 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.85rem; 
    font-weight: 700; 
    margin-bottom: 3px; 
}

.contact-card p { 
    font-size: 0.88rem; 
    margin: 0; 
    color: #5a6a7a; 
}

/* Form */
.form-card-modern {
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: 0 16px 60px var(--shadow-lg);
    overflow: hidden;
}

.form-card-header {
    background: var(--brand-blue);
    padding: 30px 36px;
}

.form-card-header h3 { 
    color: var(--pure-white); 
    font-size: 1.4rem; 
    margin-bottom: 6px; 
}

.form-card-header p { 
    color: rgba(255, 255, 255, 0.7); 
    margin: 0; 
    font-size: 0.9rem; 
}

#contactForm { 
    padding: 36px; 
}

.form-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
}

.form-group { 
    display: flex; 
    flex-direction: column; 
    margin-bottom: 16px; 
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--brand-blue);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-control {
    padding: 13px 16px;
    border: 1.5px solid #dde5ef;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-black);
    background: var(--bg-light);
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(242, 84, 73, 0.1);
}

.form-control::placeholder { 
    color: #aab5c4; 
}

textarea.form-control { 
    resize: vertical; 
    min-height: 110px; 
}

.form-actions {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

/* =========================================
   FOOTER
========================================= */
footer { 
    background: #060e18; 
}

.footer-top { 
    padding: 70px 0 50px; 
}

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

.footer-logo {
    max-height: 55px;
    width: auto;
    margin-bottom: 16px;
    border-radius: 6px;
}

.footer-logo-fallback {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.footer-logo-fallback span { 
    color: var(--primary-red); 
}

.footer-tagline {
    color: var(--primary-yellow);
    font-style: italic;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    max-width: 280px;
    line-height: 1.5;
}

.footer-links-col h5 {
    color: var(--pure-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links-col a,
.footer-links-col span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links-col a:hover { 
    color: var(--primary-yellow); 
    transform: translateX(4px); 
}

.footer-links-col i { 
    font-size: 0.8rem; 
    color: var(--primary-red); 
    flex-shrink: 0; 
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom span { 
    color: rgba(255, 255, 255, 0.35); 
    font-size: 0.82rem; 
}

/* =========================================
   FLOATING BUTTONS (CALL & WHATSAPP)
========================================= */
.call-float {
    position: fixed;
    bottom: 115px;
    right: 30px; 
    width: 60px;
    height: 60px;
    background: var(--brand-blue);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    animation: callPulse 2.5s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.call-float i {
    animation: ring 3s infinite;
}

@keyframes callPulse {
    0%, 
    100% { 
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); 
    }
    50% { 
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(30, 58, 138, 0.15); 
    }
}

@keyframes ring {
    0%, 
    100% { transform: rotate(0deg); }
    5% { transform: rotate(-15deg); }
    10% { transform: rotate(15deg); }
    15% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    25% { transform: rotate(0deg); }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

/* Pulse animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #25d366;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { 
        transform: scale(1); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1.5); 
        opacity: 0; 
    }
}

/* =========================================
   REVEAL ANIMATION
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   ADDRESS & MAP
========================================= */
.address {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
        
.map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1100px) {
    .products-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .industries-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .safety-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 36px; 
    }
}

@media (max-width: 900px) {
    .hero-wrapper { 
        grid-template-columns: 1fr; 
    }
    .hero-visual { 
        display: none; 
    }
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .about-img-wrap { 
        max-width: 500px; 
    }
    .advantage-grid { 
        grid-template-columns: 1fr; 
    }
    .coverage-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
    .process-track { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .why-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

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

    .mobile-menu-btn { 
        display: flex; 
    }

    .nav-links {
        position: fixed;
        top: 0; 
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--brand-blue);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s ease;
        gap: 6px;
        z-index: 999;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links .nav-item { 
        color: rgba(255, 255, 255, 0.85) !important; 
        padding: 12px 16px; 
        font-size: 1rem; 
    }

    .nav-links .nav-cta { 
        background: var(--primary-red); 
        color: var(--pure-white) !important; 
        margin-top: 10px; 
    }

    .nav-container { 
        height: 70px; 
    }

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

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

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item { 
        min-width: 50%; 
    }

    .stat-divider { 
        display: none; 
    }

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

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

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

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

    .process-track { 
        grid-template-columns: 1fr; 
    }

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

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

    .form-row { 
        grid-template-columns: 1fr; 
    }

    .form-actions { 
        flex-direction: column; 
    }

    .safety-strip { 
        padding: 30px 20px; 
    }

    #contactForm { 
        padding: 24px; 
    }

    .hero-actions { 
        flex-direction: column; 
    }

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

    .about-features { 
        grid-template-columns: 1fr; 
    }

    .map-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .call-float {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 90px;
        right: 18px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, 
    *::before, 
    *::after { 
        animation-duration: 0.01ms !important; 
        transition-duration: 0.01ms !important; 
    }
}