/*
 * Tech QA Global - Main Stylesheet
 * Premium SaaS IT Company Website
 * No JavaScript - Pure CSS/HTML/PHP
 */

/* ================================
   CSS VARIABLES & DESIGN SYSTEM
   ================================ */
:root {
    /* Primary Colors */
    --primary-dark: #0F172A;
    --primary: #1E293B;
    --primary-light: #334155;
    
    /* Secondary Colors */
    --secondary: #2563EB;
    --secondary-light: #3B82F6;
    --secondary-dark: #1D4ED8;
    
    /* Accent Colors */
    --accent: #06B6D4;
    --accent-light: #22D3EE;
    --accent-dark: #0891B2;
    
    /* Neutral Colors */
    --light: #F8FAFC;
    --light-100: #F1F5F9;
    --light-200: #E2E8F0;
    --text: #111827;
    --text-light: #4B5563;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
    --shadow-accent: 0 0 40px rgba(6, 182, 212, 0.3);
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-alt: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

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

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-dark);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: var(--text-base);
}

/* ================================
   UTILITY CLASSES
   ================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-sm {
    max-width: 960px;
}

.container-lg {
    max-width: 1440px;
}

.section {
    padding: var(--space-10) 0;
}

.section-sm {
    padding: var(--space-16) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-primary { color: var(--primary-dark); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-alt { font-family: var(--font-alt); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Background Utilities */
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light); }
.bg-light-100 { background-color: var(--light-100); }
.bg-primary { background-color: var(--primary-dark); }
.bg-secondary { background-color: var(--secondary); }
.bg-gradient { background: var(--gradient-primary); }
.bg-gradient-dark { background: var(--gradient-dark); }
.bg-gradient-hero { background: var(--gradient-hero); }

/* Display Utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Flex Utilities */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

/* Spacing Utilities */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.btn-ghost {
    background: transparent;
    color: var(--secondary);
}

.btn-ghost:hover {
    background: rgba(37, 99, 235, 0.1);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* ================================
   CARDS
   ================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--light-200);
}

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

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.card-gradient {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ================================
   BADGES
   ================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary);
}

.badge-accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-dark);
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

/* ================================
   FORMS
   ================================ */
.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--light-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-light);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: var(--space-4);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient-primary);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: all var(--transition);
    padding: var(--space-4) 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: var(--space-2) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon {
    width: 48px;
    height: 48px;
    /* background: var(--gradient-primary);
    border-radius: var(--radius-lg); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    /* color: var(--white); */
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.header.scrolled .logo-text {
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--accent);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #03A9F4;
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition);
}

.header.scrolled .nav-link {
    color: var(--text);
}

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

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

.nav-link:hover {
    color: var(--white);
}

.header.scrolled .nav-link:hover {
    color: var(--secondary);
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-4);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    /* transition: all var(--transition); */
    border: 1px solid var(--light-200);
}

@media (min-width: 1025px) {
    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.dropdown-item:hover {
    background: var(--light);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.dropdown-item-content h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-1);
}

.dropdown-item-content p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: 0;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.header.scrolled .mobile-toggle span {
    background: var(--text);
}

.mobile-menu {
    display: none;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blob-float 10s ease-in-out infinite;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-light), var(--accent-light));
    top: 50%;
    left: 50%;
    animation-delay: -6s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--accent-light);
    margin-bottom: var(--space-6);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

.hero h1 {
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-12);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-number span {
    color: var(--accent);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-1);
}

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

.hero-dashboard {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    animation: float 6s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #EF4444; }
.dashboard-dot.yellow { background: #F59E0B; }
.dashboard-dot.green { background: #10B981; }

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.dashboard-card-title {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-card-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
}

.dashboard-card-value.up {
    color: #10B981;
}

.dashboard-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

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

.chart-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 55%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 90%; animation-delay: 0.6s; }

/* ================================
   TRUSTED BY SECTION
   ================================ */
.trusted-by {
    padding: var(--space-12) 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-200);
}

.trusted-by-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trusted-by-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logo {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--light-200);
    transition: color var(--transition);
}

.trusted-logo:hover {
    color: var(--text-muted);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--light-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
    transition: color var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ================================
   WHY CHOOSE SECTION
   ================================ */
.why-choose {
    background: var(--light-100);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.why-choose-content {
    max-width: 540px;
}

.why-choose-content h2 {
    margin-bottom: var(--space-6);
}

.why-choose-content > p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.why-feature {
    display: flex;
    gap: var(--space-4);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.why-feature-content h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
}

.why-feature-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

.why-choose-visual {
    position: relative;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

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

.why-card-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.why-card-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-light);
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.process .section-header h2,
.process .section-header p {
    color: var(--white);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-glow);
    position: relative;
}

.process-step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-ring 2s ease-out infinite;
}

.process-step h3 {
    font-size: var(--text-xl);
    color: var(--white);
    margin-bottom: var(--space-3);
}

.process-step p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   STATS SECTION
   ================================ */
.stats {
    background: var(--gradient-primary);
    padding: var(--space-16) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.testimonial-content {
    font-size: var(--text-lg);
    color: var(--text);
    margin-bottom: var(--space-6);
    padding-top: var(--space-4);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.testimonial-info p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-top: var(--space-2);
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: #F59E0B;
    fill: #F59E0B;
}

/* ================================
   BLOG SECTION
   ================================ */
.blog {
    background: var(--light-100);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.blog-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.blog-image svg {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.blog-content {
    padding: var(--space-6);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.blog-category {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
}

.blog-date {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.blog-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-4);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
}

.blog-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.blog-card:hover .blog-link svg {
    transform: translateX(4px);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: var(--space-24) 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
}

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

.cta-content h2 {
    font-size: var(--text-5xl);
    color: var(--white);
    margin-bottom: var(--space-6);
}

.cta-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--primary-dark);
    padding: var(--space-24) 0 0;
}

.footer-grid {
    display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-column h4 {
    font-size: var(--text-base);
    color: var(--white);
    margin-bottom: var(--space-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-2);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ================================
   PAGE HEADER
   ================================ */
.page-header {
    background: var(--gradient-hero);
    padding: 160px 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.2) 0%, transparent 40%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: var(--text-5xl);
    color: var(--white);
    margin-bottom: var(--space-4);
}

.page-header p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.breadcrumbs a,
.breadcrumbs span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .current {
    color: var(--accent-light);
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */
.about-story {
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-story-visual {
    position: relative;
}

.about-story-image {
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-story-image svg {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.about-story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.about-story-badge-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story-badge-text {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.about-story-content h2 {
    margin-bottom: var(--space-6);
}

.about-story-content > p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.value-item {
    display: flex;
    gap: var(--space-4);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
}

.value-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.value-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

/* Mission Vision */
.mission-vision {
    background: var(--light-100);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.mission-card,
.vision-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow);
}

.mission-card-icon,
.vision-card-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.mission-card-icon svg,
.vision-card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    margin-bottom: var(--space-4);
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    margin: 0;
}

/* Timeline */
.timeline {
    background: var(--white);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    text-align: right;
    padding-right: var(--space-8);
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
    padding-right: 0;
    padding-left: var(--space-8);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.timeline-content h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.timeline-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

/* ================================
   SERVICES PAGE STYLES
   ================================ */
.services-page .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    border: 1px solid var(--light-200);
    transition: all var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.service-detail-title h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.service-detail-title p {
    color: var(--text-light);
    margin: 0;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-light);
}

.service-feature-item svg {
    width: 18px;
    height: 18px;
    color: #10B981;
    flex-shrink: 0;
}

/* ================================
   INDUSTRIES PAGE STYLES
   ================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    border: 1px solid var(--light-200);
    transition: all var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

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

.industry-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.industry-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.industry-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-4);
}

.industry-solutions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.industry-solution-tag {
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    background: var(--light-100);
    color: var(--text-light);
    border-radius: var(--radius-full);
}

/* ================================
   CAREERS PAGE STYLES
   ================================ */
.careers-culture {
    background: var(--light-100);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.culture-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.culture-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.culture-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.culture-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

/* Job Listings */
.jobs-section {
    background: var(--white);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.job-card:hover {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.job-info h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.job-meta {
    display: flex;
    gap: var(--space-4);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.job-meta-item svg {
    width: 16px;
    height: 16px;
}

/* Application Form */
.apply-section {
    background: var(--light-100);
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.apply-info h2 {
    margin-bottom: var(--space-6);
}

.apply-info > p {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--space-8);
}

.apply-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.apply-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.apply-benefit svg {
    width: 24px;
    height: 24px;
    color: #10B981;
}

.apply-benefit span {
    font-size: var(--text-base);
    color: var(--text);
}

.apply-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
}

.apply-form h3 {
    margin-bottom: var(--space-6);
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-info-section h2 {
    margin-bottom: var(--space-6);
}

.contact-info-section > p {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--space-8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-detail-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.contact-detail-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.contact-detail-content p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
}

.contact-detail-content a {
    font-size: var(--text-sm);
    color: var(--secondary);
}

.business-hours {
    background: var(--light-100);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.business-hours h4 {
    margin-bottom: var(--space-4);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
}

.hours-item span:first-child {
    color: var(--text-light);
}

.hours-item span:last-child {
    font-weight: 600;
    color: var(--text);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-6);
}

/* Map Section */
.map-section {
    background: var(--light-100);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--light-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================
   BLOG PAGE STYLES
   ================================ */
.blog-page .blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.blog-category-btn {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text-light);
    border: 1px solid var(--light-200);
    transition: all var(--transition);
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* ================================
   SOLUTIONS PAGE STYLES
   ================================ */
.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.solution-row:nth-child(even) {
    direction: rtl;
}

.solution-row:nth-child(even) > * {
    direction: ltr;
}

.solution-visual {
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solution-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.solution-visual svg {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.solution-content h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.solution-content > p {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: var(--space-6);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--text);
}

.solution-feature svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE UTILITY GRIDS & LAYOUT CLASSES
   ========================================== */
.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.grid-6-cols {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    margin-bottom: var(--space-12);
}
