/* ========================================
   Global Styles & CSS Variables
   ======================================== */
:root {
    /* Colors */
    --primary-navy: #1E3A8A;
    --kt-red: #E31937;
    --tech-cyan: #06B6D4;
    --success-green: #10B981;
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --medium-gray: #9CA3AF;
    --dark-gray: #374151;
    --black: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    --gradient-light: linear-gradient(180deg, #FFFFFF 0%, #E0F2FE 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-max-width: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tech-cyan);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo-image:hover {
    transform: scale(1.05);
}

.nav-logo .logo-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tech-cyan);
    transition: var(--transition-fast);
}

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

.nav-link-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 6px;
}

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

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.95;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 40px 24px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fade-in-up 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    animation: fade-in-up 0.8s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Trust Indicators
   ======================================== */
.trust-indicators {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--light-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    font-size: 32px;
    color: var(--tech-cyan);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

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

/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding) 0;
}

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

.about-description {
    margin: 32px 0;
}

.about-description p {
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-list i {
    color: var(--tech-cyan);
    font-size: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 8px;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Area Distribution Map */
.area-distribution {
    width: 100%;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

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

.distribution-header i {
    font-size: 48px;
    color: var(--tech-cyan);
    margin-bottom: 16px;
}

.distribution-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.distribution-header p {
    font-size: 15px;
    color: var(--dark-gray);
}

.distribution-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.area-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.15);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.area-card:hover .area-icon {
    transform: rotate(360deg);
}

.area-icon i {
    font-size: 28px;
    color: var(--white);
}

.area-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.area-count {
    font-size: 32px;
    font-weight: 800;
    color: var(--kt-red);
    margin-bottom: 12px;
}

.area-detail {
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.distribution-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(30, 58, 138, 0.1);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--dark-gray);
    font-weight: 500;
}

.summary-item i {
    color: var(--success-green);
    font-size: 18px;
}

/* ========================================
   Tech Solutions Section
   ======================================== */
.tech-solutions {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 50%, #FFFFFF 100%);
    padding: var(--section-padding) 0;
}

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

.solution-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-reverse {
    direction: rtl;
}

.solution-reverse > * {
    direction: ltr;
}

.solution-content {
    padding: 40px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.solution-icon i {
    font-size: 36px;
    color: var(--white);
}

.solution-title {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.solution-tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--tech-cyan);
    margin-bottom: 16px;
}

.solution-description {
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
    margin-bottom: 32px;
}

.solution-features li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 8px;
    transition: var(--transition-base);
}

.solution-features li:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateX(8px);
}

.solution-features i {
    font-size: 24px;
    color: var(--tech-cyan);
    margin-top: 4px;
}

.solution-features strong {
    display: block;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 4px;
}

.solution-features span {
    font-size: 14px;
    color: var(--medium-gray);
}

.solution-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
}

.badge i {
    color: var(--success-green);
}

.badge strong {
    color: var(--primary-navy);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-navy);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.solution-link:hover {
    gap: 12px;
    color: var(--tech-cyan);
}

/* ========================================
   Solution Visuals - Mockups
   ======================================== */
.solution-visual {
    position: relative;
    min-height: 400px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Dashboard Mockups */
.dashboard-mockup {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 16px;
    transition: var(--transition-base);
}

.dashboard-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.dashboard-1 {
    top: 0;
    left: 0;
    width: 70%;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.dashboard-2 {
    top: 100px;
    right: 0;
    width: 65%;
    z-index: 2;
    animation: float 6s ease-in-out 1s infinite;
}

.dashboard-3 {
    bottom: 0;
    left: 50px;
    width: 60%;
    z-index: 1;
    animation: float 6s ease-in-out 2s infinite;
}

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

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
}

.mockup-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.mockup-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 100px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: bar-grow 1s ease-out;
}

@keyframes bar-grow {
    from { height: 0; }
}

.mockup-progress {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-item span {
    font-size: 12px;
    color: var(--dark-gray);
}

.progress-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: progress-fill 1.5s ease-out;
}

@keyframes progress-fill {
    from { width: 0; }
}

.mockup-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    font-size: 13px;
    padding: 8px;
    background: var(--light-gray);
    border-radius: 4px;
}

/* Calculator Mockup */
.calculator-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    margin-bottom: 24px;
    animation: fade-in-up 1s ease;
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.calc-header i {
    font-size: 24px;
    color: var(--tech-cyan);
}

.calc-header span {
    font-size: 16px;
    font-weight: 600;
}

.calc-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--light-gray);
    border-radius: 8px;
}

.calc-label {
    font-size: 14px;
    color: var(--medium-gray);
}

.calc-value {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--primary-navy);
}

.calc-result {
    padding: 20px;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: var(--white);
}

.result-label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.result-value {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

/* Comparison Chart */
.comparison-chart {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    animation: fade-in-up 1s ease 0.3s both;
}

.comparison-item {
    margin-bottom: 20px;
}

.comparison-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.comparison-bar {
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    animation: bar-expand 1.5s ease-out;
}

.comparison-bar.before {
    width: 100%;
    background: #FEE2E2;
    color: #DC2626;
}

.comparison-bar.after {
    width: 10%;
    background: #D1FAE5;
    color: #059669;
}

@keyframes bar-expand {
    from { width: 0; }
}

/* Mobile Mockup */
.mobile-mockup {
    display: flex;
    justify-content: center;
    animation: fade-in-up 1s ease;
}

.mobile-frame {
    width: 280px;
    height: 560px;
    background: var(--black);
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
}

.mobile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gradient-primary);
    color: var(--white);
}

.mobile-map {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--kt-red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pin-bounce 2s ease-in-out infinite;
}

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

.pin-1 {
    top: 30%;
    left: 25%;
}

.pin-2 {
    top: 50%;
    right: 30%;
    animation-delay: 0.5s;
}

.pin-3 {
    bottom: 25%;
    left: 40%;
    animation-delay: 1s;
}

@keyframes pin-bounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-10px); }
}

.mobile-list {
    padding: 16px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 13px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.status-progress {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-complete {
    background: #D1FAE5;
    color: #059669;
}

/* Analytics Dashboard */
.analytics-dashboard {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    animation: fade-in-up 1s ease;
}

.analytics-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.analytics-header i {
    font-size: 24px;
    color: var(--tech-cyan);
}

.analytics-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chart-container {
    text-align: center;
}

.chart-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.pie-chart {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(
        var(--tech-cyan) 0deg 120deg,
        var(--primary-navy) 120deg 240deg,
        var(--kt-red) 240deg 360deg
    );
    animation: pie-spin 2s ease-out;
}

@keyframes pie-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.line-chart {
    width: 100%;
    height: 100px;
}

.chart-line {
    fill: none;
    stroke: var(--tech-cyan);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: line-draw 2s ease-out forwards;
}

@keyframes line-draw {
    to { stroke-dashoffset: 0; }
}

/* Inventory Dashboard */
.inventory-dashboard {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    animation: fade-in-up 1s ease;
}

.inventory-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.inventory-header i {
    font-size: 24px;
    color: var(--tech-cyan);
}

.inventory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inventory-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-name {
    flex: 0 0 140px;
    font-size: 13px;
    font-weight: 600;
}

.item-bar {
    flex: 1;
    height: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.item-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 12px;
    animation: progress-fill 1.5s ease-out;
}

.inventory-item.low-stock .item-fill {
    background: linear-gradient(135deg, #FCA5A5 0%, #DC2626 100%);
}

.item-quantity {
    flex: 0 0 60px;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    font-family: 'Courier New', monospace;
}

.alert-badge {
    padding: 4px 12px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Solutions CTA */
.solutions-cta {
    text-align: center;
    padding: 80px 40px;
    background: var(--gradient-light);
    border-radius: 16px;
    margin-top: 60px;
}

.solutions-cta h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-navy);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--primary-navy);
    color: var(--white);
    padding: var(--section-padding) 0;
}

.services .section-label {
    color: var(--tech-cyan);
}

.services .section-title {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-base);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 36px;
    color: var(--tech-cyan);
}

.service-icon.kt-icon {
    background: rgba(227, 25, 55, 0.2);
}

.service-icon.kt-icon i {
    color: var(--kt-red);
}

.service-title {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.service-list i {
    color: var(--success-green);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tech-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ========================================
   Why Hublink Section
   ======================================== */
.why-hublink {
    background: var(--light-gray);
    padding: var(--section-padding) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 36px;
    color: var(--tech-cyan);
}

.why-icon.kt-icon {
    background: rgba(227, 25, 55, 0.1);
}

.why-icon.kt-icon i {
    color: var(--kt-red);
}

.why-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.why-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-highlight {
    padding: 16px;
    background: var(--gradient-light);
    border-left: 4px solid var(--tech-cyan);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark-gray);
}

.why-highlight strong {
    color: var(--primary-navy);
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.stat-badge i {
    color: var(--tech-cyan);
}

/* ========================================
   Clients Section
   ======================================== */
.clients {
    padding: var(--section-padding) 0;
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 60px 0;
}

.client-stat {
    text-align: center;
}

.client-stat i {
    font-size: 48px;
    color: var(--tech-cyan);
    margin-bottom: 16px;
}

/* Clients Showcase */
.clients-showcase {
    margin-top: 50px;
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.clients-intro {
    text-align: center;
    margin-bottom: 50px;
}

.clients-intro i {
    font-size: 48px;
    color: var(--tech-cyan);
    margin-bottom: 20px;
}

.clients-intro h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.clients-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.client-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.client-item {
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.client-item::before {
    content: '📍';
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.12);
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    border-color: var(--tech-cyan);
}

.client-item:hover::before {
    opacity: 1;
}

.client-item.featured {
    background: linear-gradient(135deg, var(--kt-red) 0%, #B71C1C 100%);
    color: var(--white);
    font-weight: 700;
    border: 2px solid var(--kt-red);
}

.client-item.featured::before {
    content: '⭐';
}

.client-more {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 16px;
    border: 2px dashed var(--tech-cyan);
}

.client-more p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 12px;
}

.total-count {
    font-size: 20px;
    color: var(--primary-navy);
}

.total-count strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--kt-red);
}

.tag {
    padding: 12px 24px;
    background: var(--white);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--gradient-primary);
    padding: var(--section-padding) 0;
    color: var(--white);
}

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

.contact-title {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-item i {
    font-size: 24px;
    color: var(--tech-cyan);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item span {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item .small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tech-cyan);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkbox-group label {
    font-size: 13px;
    font-weight: 400;
    color: var(--medium-gray);
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--medium-gray);
    margin-top: 16px;
}

.form-note a {
    color: var(--primary-navy);
    font-weight: 600;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 24px;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    font-size: 14px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-col ul i {
    margin-right: 8px;
    color: var(--tech-cyan);
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info {
    font-size: 13px;
    line-height: 1.8;
}

.certifications {
    display: flex;
    gap: 12px;
}

.cert-badge {
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tech-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--tech-cyan);
    transform: translateY(-2px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid,
    .solution-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-reverse {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Awards & Recognition Section
   ======================================== */
.awards {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 50%, #FFFFFF 100%);
    overflow: hidden;
}

/* Award Video Showcase */
.award-video-container {
    margin: 60px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    background: var(--black);
}

.award-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-indicator {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-wrapper:hover .play-indicator {
    transform: scale(1);
}

.play-indicator i {
    font-size: 36px;
    color: var(--kt-red);
    margin-left: 4px;
}

.video-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--dark-gray);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-caption i {
    color: var(--kt-red);
    font-size: 20px;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.award-item {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.award-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.award-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.award-item:hover .award-image-wrapper img {
    transform: scale(1.05);
}

.award-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--kt-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(227, 25, 55, 0.3);
}

.award-sparkle {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 32px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}

.award-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.award-category {
    font-size: 16px;
    color: var(--kt-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.award-date {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.award-desc {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.award-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 500;
}

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

/* CEO Recognition */
.ceo-recognition {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
}

.ceo-image-wrapper {
    position: relative;
}

.ceo-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ceo-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kt-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(227, 25, 55, 0.4);
}

.ceo-recognition-content {
    color: var(--white);
}

.ceo-title h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.ceo-company {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.ceo-quote {
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--kt-red);
    border-radius: 8px;
    margin-bottom: 24px;
}

.ceo-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
}

.credential-item i {
    font-size: 16px;
    color: var(--kt-red);
}

/* Achievement Stats */
.achievement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.achievement-item {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 32px;
    color: var(--white);
}

.achievement-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.achievement-label {
    font-size: 15px;
    color: var(--dark-gray);
    font-weight: 500;
}

/* ========================================
   CEO Message Section (About Us)
   ======================================== */
.ceo-message {
    margin-top: 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.ceo-profile {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.ceo-photo-wrapper {
    position: relative;
}

.ceo-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.ceo-badge-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kt-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(227, 25, 55, 0.4);
    white-space: nowrap;
}

.ceo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.ceo-position {
    font-size: 18px;
    font-weight: 600;
    color: var(--kt-red);
    margin-bottom: 4px;
}

.ceo-company {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.ceo-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark-gray);
}

.highlight-item i {
    width: 24px;
    height: 24px;
    background: var(--kt-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.ceo-message-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.08);
}

.ceo-quote-main {
    margin: 0;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: var(--tech-cyan);
    opacity: 0.2;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.quote-text strong {
    color: var(--primary-navy);
    font-weight: 700;
}

.quote-signature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.signature-line {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.signature-title {
    font-size: 14px;
    color: var(--medium-gray);
}

/* ========================================
   Company History Timeline
   ======================================== */
.company-history {
    margin-top: 80px;
    background: var(--white);
    padding: 60px 0;
}

.history-intro {
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--tech-cyan) 0%, var(--primary-navy) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-year {
    grid-column: 2;
    grid-row: 1;
}

.timeline-year {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.year-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.year-badge.current {
    background: linear-gradient(135deg, var(--kt-red) 0%, #B71C1C 100%);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(227, 25, 55, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(227, 25, 55, 0.6); }
}

.timeline-content {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(30, 58, 138, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-item.active .timeline-content {
    border: 2px solid var(--kt-red);
    box-shadow: 0 6px 30px rgba(227, 25, 55, 0.2);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.company-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-navy);
}

.company-logo-badge.kt-partner {
    background: linear-gradient(135deg, #FFE0E0 0%, #FFF0F0 100%);
    color: var(--kt-red);
}

.company-logo-badge i {
    font-size: 20px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.4;
}

.timeline-achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.timeline-achievements li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
    border-left: 2px solid var(--light-gray);
}

.timeline-achievements li i {
    position: absolute;
    left: -10px;
    top: 14px;
    width: 20px;
    height: 20px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.timeline-achievements li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.timeline-achievements .sub-list {
    margin-top: 10px;
    padding-left: 20px;
}

.timeline-achievements .sub-list li {
    padding: 6px 0;
    padding-left: 0;
    border-left: none;
    font-size: 14px;
}

.timeline-achievements .sub-list li::before {
    content: none;
}

.timeline-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}

.tag.kt-tag {
    background: var(--kt-red);
    color: var(--white);
}

/* Milestones Stats */
.milestones-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.milestone-card {
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.milestone-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.milestone-icon i {
    font-size: 28px;
    color: var(--white);
}

.milestone-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.milestone-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.milestone-desc {
    font-size: 14px;
    color: var(--medium-gray);
}

/* ========================================
   Offices & Locations Section
   ======================================== */
.offices {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

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

.office-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
    border-color: var(--tech-cyan);
}

.office-card.headquarters {
    background: linear-gradient(135deg, #1E3A8A 0%, #06B6D4 100%);
    color: var(--white);
    grid-column: span 3;
}

.office-card.headquarters .office-name,
.office-card.headquarters .office-location {
    color: var(--white);
}

.office-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--kt-red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tech-cyan) 0%, var(--primary-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.office-card.headquarters .office-icon {
    background: rgba(255, 255, 255, 0.2);
}

.office-icon i {
    font-size: 28px;
    color: var(--white);
}

.office-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.office-location {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 48px;
}

.office-departments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dept-tag {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.office-card.headquarters .dept-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Coverage Highlight */
.coverage-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0 6px 30px rgba(30, 58, 138, 0.1);
}

.coverage-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-icon i {
    font-size: 48px;
    color: var(--white);
}

.coverage-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.coverage-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.coverage-stats {
    display: flex;
    gap: 40px;
}

.coverage-stat {
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        padding: 24px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card {
        margin-bottom: 60px;
    }
    
    .solution-visual {
        min-height: 300px;
    }
    
    .dashboard-1,
    .dashboard-2,
    .dashboard-3 {
        position: relative;
        width: 100%;
        margin-bottom: 16px;
    }
    
    .clients-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Awards Section Mobile */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ceo-recognition {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
        text-align: center;
    }
    
    .ceo-title h3 {
        font-size: 24px;
    }
    
    .ceo-quote {
        font-size: 15px;
        padding: 20px;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CEO Message Mobile */
    .ceo-message {
        padding: 30px;
    }
    
    .ceo-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .ceo-photo-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .ceo-name {
        font-size: 24px;
    }
    
    .ceo-position {
        font-size: 16px;
    }
    
    .ceo-highlights {
        align-items: center;
    }
    
    .ceo-message-content {
        padding: 24px;
    }
    
    .quote-text {
        font-size: 15px;
    }
    
    .signature-line {
        font-size: 20px;
    }
    
    /* Company History Timeline Mobile */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }
    
    .timeline-year {
        grid-column: 1;
        grid-row: 1;
    }
    
    .timeline-content {
        grid-column: 2;
        grid-row: 1;
        padding: 20px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .year-badge {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 15px 8px;
        font-size: 13px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-achievements li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }
    
    .milestones-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .milestone-number {
        font-size: 32px;
    }
    
    .milestone-label {
        font-size: 14px;
    }
    
    /* Offices Section Mobile */
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-card.headquarters {
        grid-column: span 1;
    }
    
    .office-location {
        min-height: auto;
    }
    
    .coverage-highlight {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
        text-align: center;
    }
    
    .coverage-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .coverage-icon i {
        font-size: 36px;
    }
    
    .coverage-content h3 {
        font-size: 22px;
    }
    
    .coverage-content p {
        font-size: 15px;
    }
    
    .coverage-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-num {
        font-size: 28px;
    }
    
    /* Clients Showcase Mobile */
    .clients-showcase {
        padding: 30px 20px;
    }
    
    .clients-intro h3 {
        font-size: 24px;
    }
    
    .clients-intro p {
        font-size: 15px;
    }
    
    .client-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .client-item {
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .total-count {
        font-size: 17px;
    }
    
    .total-count strong {
        font-size: 20px;
    }
    
    /* Logo Mobile */
    .nav-logo .logo-image {
        height: 32px;
    }
    
    /* Area Distribution Mobile */
    .area-distribution {
        padding: 30px 20px;
    }
    
    .distribution-header h3 {
        font-size: 20px;
    }
    
    .distribution-header p {
        font-size: 14px;
    }
    
    .distribution-map {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .area-card {
        padding: 20px;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
    }
    
    .area-icon i {
        font-size: 24px;
    }
    
    .area-name {
        font-size: 16px;
    }
    
    .area-count {
        font-size: 28px;
    }
    
    .area-detail {
        font-size: 12px;
    }
    
    .distribution-summary {
        flex-direction: column;
        gap: 12px;
    }
    
    .summary-item {
        justify-content: center;
    }
}
