/* ============================================
   HR CHASE - Professional Design System
   ============================================ */

:root {
    /* Multi-Color Professional Palette */
    --primary: #1a365d;
    --primary-light: #2d4a7c;
    --primary-dark: #0f2340;
    
    --teal: #14b8a6;
    --teal-light: #2dd4bf;
    --teal-dark: #0d9488;
    
    --orange: #f59e0b;
    --orange-light: #fbbf24;
    --orange-dark: #d97706;
    
    --green: #10b981;
    --green-light: #34d399;
    --green-dark: #059669;
    
    --accent: #d4a574;
    --accent-light: #e8c8a3;
    --accent-dark: #b8894f;
    
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-display: 'Crimson Text', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-max: 1280px;
    --container-padding: 24px;
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Container & Layout
   ============================================ */

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--container-padding);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
}

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

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

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    padding: 16px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 20px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.dropdown a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.dropdown a::after {
    display: none;
}

.btn-nav {
    background: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    color: #0a0e27;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

.btn-nav:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffa3 100%);
    color: #0a0e27;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.5);
}

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

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}
    height: 200px;
    background: linear-gradient(to top, rgba(247, 250, 252, 1) 0%, transparent 100%);
}

.hero-container {
    padding: 60px var(--container-padding);
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00ffa3;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 163, 0.3);
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(0, 255, 163, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    color: #0a0e27;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffa3 100%);
    color: #0a0e27;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.6), 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Neon buttons for hero section */
.hero .btn-primary {
    background: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    color: #0a0e27;
    border: none;
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.4);
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffa3 100%);
    color: #0a0e27;
    box-shadow: 0 0 50px rgba(0, 255, 163, 0.7);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ffa3;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 163, 0.1);
    color: #00ffa3;
    border-color: #00ffa3;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.5);
}

.hero .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ffa3;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(0, 255, 163, 0.1);
    color: #00ffa3;
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.6);
}

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

.btn-primary-inverse {
    background: white;
    color: #1a202c;
    border: 2px solid white;
}

.btn-primary-inverse:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a202c;
    transform: translateY(-2px);
}

.btn-secondary-inverse {
    background: white;
    color: #1a202c;
    border: 2px solid white;
}

.btn-secondary-inverse:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a202c;
    transform: translateY(-2px);
}

/* ============================================
   Section Styles
   ============================================ */

.value-section,
.services-section,
.industries-section {
    padding: var(--section-padding) 0;
}

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

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

/* ============================================
   Value Section
   ============================================ */

.value-section {
    background: var(--bg-secondary);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s ease;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

/* Multi-colored Service Cards */
.service-card:nth-child(1)::before {
    background: var(--teal);
}

.service-card:nth-child(1) .service-number {
    color: var(--teal);
}

.service-card:nth-child(1):hover {
    border-color: var(--teal);
}

.service-card:nth-child(1) .service-highlights li::before {
    color: var(--teal);
}

.service-card:nth-child(2)::before {
    background: var(--orange);
}

.service-card:nth-child(2) .service-number {
    color: var(--orange);
}

.service-card:nth-child(2):hover {
    border-color: var(--orange);
}

.service-card:nth-child(2) .service-highlights li::before {
    color: var(--orange);
}

.service-card:nth-child(3)::before {
    background: var(--green);
}

.service-card:nth-child(3) .service-number {
    color: var(--green);
}

.service-card:nth-child(3):hover {
    border-color: var(--green);
}

.service-card:nth-child(3) .service-highlights li::before {
    color: var(--green);
}

.service-card:nth-child(4)::before {
    background: var(--accent);
}

.service-card:nth-child(4) .service-number {
    color: var(--accent);
}

.service-card:nth-child(4):hover {
    border-color: var(--accent);
}

.service-card:nth-child(4) .service-highlights li::before {
    color: var(--accent);
}

.service-card:nth-child(5)::before {
    background: var(--primary);
}

.service-card:nth-child(5) .service-number {
    color: var(--primary);
}

.service-card:nth-child(5):hover {
    border-color: var(--primary);
}

.service-card:nth-child(5) .service-highlights li::before {
    color: var(--primary);
}

.service-card:nth-child(6)::before {
    background: var(--teal-dark);
}

.service-card:nth-child(6) .service-number {
    color: var(--teal-dark);
}

.service-card:nth-child(6):hover {
    border-color: var(--teal-dark);
}

.service-card:nth-child(6) .service-highlights li::before {
    color: var(--teal-dark);
}

.service-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-highlights {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.service-highlights li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
}

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

.service-link:hover {
    color: var(--accent);
}

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

/* ============================================
   Industries Section
   ============================================ */

.industries-section {
    background: var(--primary);
    color: white;
}

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

.industries-text .section-tag {
    color: var(--accent-light);
}

.industries-text .section-title {
    color: white;
}

.industries-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.industry-item {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.industries-visual {
    display: grid;
    gap: 24px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.visual-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.visual-label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.95) 0%, rgba(217, 119, 6, 0.92) 100%), url('../images/steps-growth.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3) 0%, rgba(20, 184, 166, 0.2) 100%);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 32px;
}

.footer-logo .logo-tagline {
    color: var(--accent-light);
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 350px;
}

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

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

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

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Page Header (About, Services, Contact)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Page Specific Styles
   ============================================ */

.about-story {
    padding: var(--section-padding) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.story-stats {
    display: grid;
    gap: 24px;
}

.story-stat-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.story-stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.story-stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.story-stat-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mission-section {
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    display: flex;
    gap: 24px;
}

.value-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-choose-section {
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-choose-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

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

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.why-choose-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Contact Page Specific Styles
   ============================================ */

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

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-detail-content h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-detail-content p,
.contact-detail-content a {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-detail-content a:hover {
    color: var(--accent);
}

.contact-form-container {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info-section {
    background: var(--bg-secondary);
    padding: var(--section-padding) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.info-list {
    display: grid;
    gap: 16px;
}

.info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

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

.info-list span {
    color: var(--text-secondary);
    line-height: 1.6;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.industry-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--border);
}

/* ============================================
   Service Detail Pages Styles
   ============================================ */

.service-intro {
    padding: var(--section-padding) 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.intro-stats {
    display: grid;
    gap: 24px;
}

.intro-stat {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border);
}

.service-detail-section {
    padding: var(--section-padding) 0;
}

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

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

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

.detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.detail-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.detail-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.detail-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.detail-card ul {
    display: grid;
    gap: 10px;
}

.detail-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 0;
}

.detail-card ul li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--primary);
    color: white;
}

.benefits-section .section-tag {
    color: var(--accent-light);
}

.benefits-section .section-title {
    color: white;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ============================================
   Resources/Downloads Section
   ============================================ */

.resources-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f3a 100%);
    position: relative;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(138, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.resources-section .section-tag {
    color: #00ffa3;
    text-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.resources-section .section-title {
    color: #ffffff;
}

.resources-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.resource-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.resource-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.resource-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Black & White Resource Icons */
.resource-card:nth-child(1) .resource-icon {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(0, 255, 163, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.2);
}

.resource-card:nth-child(2) .resource-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 92, 246, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.resource-card:nth-child(3) .resource-icon {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(255, 100, 150, 0.2));
    border: 2px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.resource-card:nth-child(4) .resource-icon {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(0, 255, 163, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.2);
}

.resource-card:nth-child(5) .resource-icon {
    background: linear-gradient(135deg, rgba(138, 92, 246, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid rgba(138, 92, 246, 0.3);
    box-shadow: 0 0 30px rgba(138, 92, 246, 0.2);
}

.resource-card:nth-child(6) .resource-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 163, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 163, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.2);
}

.resource-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    align-self: flex-start;
}

.resource-download svg {
    width: 18px;
    height: 18px;
}

.resource-download:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* White Download Buttons with Black Text */
.resource-card:nth-child(1) .resource-download {
    background: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    color: #0a0e27;
    border: none;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

.resource-card:nth-child(1) .resource-download:hover {
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.6);
    transform: translateY(-3px);
}

.resource-card:nth-child(2) .resource-download {
    background: linear-gradient(135deg, #00d4ff 0%, #8a5cf6 100%);
    color: #0a0e27;
    border: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.resource-card:nth-child(2) .resource-download:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

.resource-card:nth-child(3) .resource-download {
    background: linear-gradient(135deg, #ff00ff 0%, #ff6496 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.resource-card:nth-child(3) .resource-download:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-3px);
}

.resource-card:nth-child(4) .resource-download {
    background: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    color: #0a0e27;
    border: none;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
}

.resource-card:nth-child(4) .resource-download:hover {
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.6);
    transform: translateY(-3px);
}

.resource-card:nth-child(5) .resource-download {
    background: linear-gradient(135deg, #8a5cf6 0%, #ff00ff 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 20px rgba(138, 92, 246, 0.3);
}

.resource-card:nth-child(5) .resource-download:hover {
    box-shadow: 0 0 30px rgba(138, 92, 246, 0.6);
    transform: translateY(-3px);
}

.resource-card:nth-child(6) .resource-download {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffa3 100%);
    color: #0a0e27;
    border: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.resource-card:nth-child(6) .resource-download:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

.resource-card p {
    color: rgba(255, 255, 255, 0.7);
}



.download-btn::after {
    content: '↓';
    font-size: 16px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .industries-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-content,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 40px var(--container-padding);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        position: static;
        transform: none;
        margin-top: 8px;
        box-shadow: none;
        padding-left: 16px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .value-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .mission-grid,
    .values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .benefits-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
