/* ============================================
   SHREE SHYAM ECO SYSTEMS - CORPORATE ENTERPRISE STYLE
   Professional Corporate Design - Clean & Minimal
   ============================================ */

/* CSS Variables - Corporate Palette */
:root {
    /* Primary Corporate Colors */
    --primary: #065f46;
    --primary-dark: #064e3b;
    --primary-light: #047857;
    --primary-50: #ecfdf5;
    
    /* Secondary Colors */
    --secondary: #1e293b;
    --secondary-light: #334155;
    --secondary-dark: #0f172a;
    
    /* Accent - Gold/Corporate */
    --accent: #d97706;
    --accent-light: #f59e0b;
    --accent-dark: #b45309;
    
    /* Neutral Colors */
    --dark: #111827;
    --dark-medium: #374151;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gray-lighter: #e5e7eb;
    --gray-lightest: #f3f4f6;
    --white: #ffffff;
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #111827;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px 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);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --bg-tertiary: #374151;
    --dark: #f9fafb;
    --dark-medium: #e5e7eb;
    --gray: #9ca3af;
    --gray-light: #6b7280;
    --gray-lighter: #4b5563;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-medium);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Corporate Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
    color: var(--white);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--gray);
    line-height: 1.8;
}

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

ul {
    list-style: none;
}

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

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

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

/* ============================================
   PRELOADER - Corporate Style
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: pulse 2s infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

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

/* ============================================
   HEADER - Corporate Clean Style
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

[data-theme="dark"] .header {
    background: rgba(17, 24, 39, 0.98);
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}

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

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-medium);
    position: relative;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

[data-theme="dark"] .nav-link {
    color: var(--gray-lighter);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

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

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-medium);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO SECTION - Corporate Enterprise
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.3) 0%, rgba(6, 78, 59, 0.2) 50%, rgba(4, 120, 87, 0.15) 100%);
}

.hero-content {
    padding: 80px 0 60px;
    color: var(--white);
}

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

.hero-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent-light);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.92;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

/* Buttons - Corporate Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

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

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

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

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

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

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

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-lighter);
}

[data-theme="dark"] .hero-stats {
    background: rgba(31, 41, 55, 0.98);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 16px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--gray-lighter);
}

.stat-number {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

[data-theme="dark"] .stat-number {
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 22px; }
}

/* ============================================
   SECTIONS - Corporate Style
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

[data-theme="dark"] .section {
    background: var(--bg-secondary);
}

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

.section-header.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: var(--radius-sm);
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.text-center p {
    margin: 0 auto;
}

/* ============================================
   BUSINESS VERTICALS
   ============================================ */
.verticals-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .verticals-section {
    background: var(--bg-primary);
}

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

.vertical-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
    overflow: hidden;
}

[data-theme="dark"] .vertical-card {
    background: var(--bg-secondary);
    border-color: var(--gray-lighter);
}

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

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

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

.vertical-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(217, 119, 6, 0.03) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
}

.vertical-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

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

.vertical-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.vertical-card > p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.75;
    font-size: 15px;
}

.vertical-features {
    margin-bottom: 28px;
}

.vertical-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-medium);
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
}

.vertical-features li i {
    color: var(--primary);
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
    padding: 8px 0;
}

.learn-more:hover {
    gap: 14px;
    color: var(--accent);
}

/* ============================================
   ABOUT PREVIEW - Corporate Grid
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
    font-size: 16px;
}

.about-highlights {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
}

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

.highlight-item i {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.highlight-item h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2px;
    font-weight: 700;
}

.highlight-item p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

.about-image-stack img:first-child {
    width: 85%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image-stack img:last-child {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--bg-primary);
}

[data-theme="dark"] .about-image-stack img:last-child {
    border-color: var(--bg-secondary);
}

/* ============================================
   SUSTAINABILITY SECTION
   ============================================ */
.sustainability-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Video Section in Sustainability */
.sustainability-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.video-content {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.2) 0%, rgba(6, 78, 59, 0.1) 100%);
    pointer-events: none;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.sustainability-section .section-tag {
    color: var(--accent-light);
    background: rgba(255, 255, 255, 0.1);
}

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

.sustainability-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sustainability-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
}

.sustainability-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.sustainability-icon i {
    font-size: 26px;
    color: var(--accent-light);
}

.sustainability-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 600;
}

.sustainability-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.sustainability-card ul li i {
    color: var(--accent-light);
    font-size: 12px;
}

/* ============================================
   ACHIEVEMENTS SLIDER
   ============================================ */
.achievements-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 24px 0;
}

.achievements-slider::-webkit-scrollbar {
    display: none;
}

.achievement-slide {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.achievement-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    height: 100%;
}

[data-theme="dark"] .achievement-card {
    background: var(--bg-secondary);
    border-color: var(--gray-lighter);
}

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

.achievement-year {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.achievement-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.achievement-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--gray-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

[data-theme="dark"] .slider-btn {
    background: var(--bg-secondary);
    border-color: var(--gray-lighter);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

/* ============================================
   PAGE HERO (for internal pages)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.92), rgba(6, 78, 59, 0.85));
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.page-hero .hero-tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

/* ============================================
   FOOTER - Corporate Style
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--gray-lighter);
}

.footer-main {
    padding: 80px 0 50px;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 64px;
    height: 64px;
}

.footer-about > p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.75;
    margin-bottom: 28px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--gray-lighter);
}

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

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
    font-weight: 500;
}

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

.footer-links ul li a i {
    font-size: 10px;
    color: var(--accent);
}

.footer-contact ul li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.6;
}

.footer-contact ul li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ============================================
   MEDIA UPLOAD MODAL & GALLERY
   ============================================ */

/* Media Modal */
.media-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.media-modal.active {
  opacity: 1;
  visibility: visible;
}

.media-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.media-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: var(--transition);
}

.media-modal.active .media-modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.media-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--gray-lighter);
}

.media-modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .media-modal-header h3 {
  color: var(--white);
}

.media-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition-fast);
}

.media-modal-close:hover {
  background: var(--gray-lighter);
  color: var(--dark);
}

.media-modal-body {
  padding: 28px;
  max-height: 400px;
  overflow-y: auto;
}

.media-upload-area {
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed var(--gray-lighter);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 24px;
}

.media-upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}

.media-upload-btn {
  display: block;
  cursor: pointer;
}

.media-upload-btn input {
  display: none;
}

.media-upload-hint {
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}

.media-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-height: 300px;
  overflow-y: auto;
}

.media-preview-item {
  position: relative;
  width: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.media-preview-image,
.media-preview-video {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.media-preview-video {
  background: var(--gray-lightest);
}

.media-preview-info {
  padding: 8px;
  background: var(--bg-secondary);
  font-size: 12px;
}

.media-file-name {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.media-file-size {
  color: var(--gray);
}

.media-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition-fast);
}

.media-preview-item:hover .media-preview-remove {
  opacity: 1;
}

.media-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--gray-lighter);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Media Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.media-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 200px;
}

.media-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.media-gallery-image,
.media-gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-gallery-video {
  background: var(--gray-lightest);
}

.media-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-gallery-item:hover .media-gallery-overlay {
  opacity: 1;
}

.media-remove-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.media-remove-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
}

.no-media {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  grid-column: 1 / -1;
}

.add-media-btn, .btn.add-media-btn {
  background: var(--primary) !important;
  color: white !important;
  border: none !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-md) !important;
  cursor: pointer;
  font-weight: 600 !important;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.add-media-btn:hover, .btn.add-media-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 95, 70, 0.3);
}

.add-media-btn.loading, .btn.add-media-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.add-media-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Notifications */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 500;
  z-index: 10001;
  box-shadow: var(--shadow-lg);
  transform: translateX(400px);
  animation: slideInRight 0.3s ease forwards;
}

.notification-success {
  background: #10b981;
}

.notification-error {
  background: #ef4444;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  to {
    transform: translateX(400px);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {

    :root {
        --section-padding: 80px;
    }
    
    .container {
        max-width: 1100px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 992px) {
    .nav {
        gap: 6px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .verticals-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 100px 28px 28px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-lighter);
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .cta-section h2 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .page-hero {
        min-height: 320px;
    }
    
    .page-hero h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 11px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .vertical-card {
        padding: 28px;
    }
    
    .sustainability-card {
        padding: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   ADDITIONAL CORPORATE STYLES
   ============================================ */

/* Page Sections Common */
.section-light {
    background: var(--bg-secondary);
}

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

[data-theme="dark"] .bg-light {
    background: var(--bg-primary);
}

/* Info Cards */
.info-item, .revenue-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.info-item:last-child, .revenue-item:last-child {
    border-bottom: none;
}

.info-item .label, .revenue-item .label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.info-item .value, .revenue-item .value {
    display: block;
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

[data-theme="dark"] .feature-item {
    background: var(--bg-secondary);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.highlight-card {
    padding: 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .highlight-card {
    background: var(--bg-secondary);
}

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

.highlight-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* VM Cards */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vm-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .vm-card {
    background: var(--bg-secondary);
}

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

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

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

.vm-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.vm-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.vm-values {
    text-align: left;
}

.vm-values li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--dark-medium);
}

.vm-values li i {
    color: var(--primary);
    font-size: 12px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gray-lighter);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
}

[data-theme="dark"] .timeline-marker {
    border-color: var(--bg-secondary);
}

.timeline-content {
    padding: 0 30px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-year {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .team-card {
    background: var(--bg-secondary);
}

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

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

.team-avatar i {
    font-size: 32px;
    color: var(--primary);
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.team-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.certification-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .certification-card {
    background: var(--bg-secondary);
}

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

.certification-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.certification-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.certification-card p {
    font-size: 12px;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-medium);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--dark-medium);
    transition: var(--transition);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-secondary);
    border-color: var(--gray-lighter);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-50);
}

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

/* Table Styles */
.table-container {
    overflow-x: auto;
}

.financial-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .financial-table {
    background: var(--bg-secondary);
}

.financial-table th,
.financial-table td {
    padding: 18px 24px;
    text-align: left;
}

.financial-table th {
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financial-table td {
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 15px;
}

.financial-table tr:last-child td {
    border-bottom: none;
}

.financial-table tr:hover td {
    background: var(--bg-secondary);
}

/* Fund Breakdown */
.total-fund {
    text-align: center;
    padding: 40px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.total-fund h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.total-fund .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
}

.fund-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fund-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-lighter);
    text-align: center;
    transition: var(--transition);
}

[data-theme="dark"] .fund-item {
    background: var(--bg-secondary);
}

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

.fund-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.fund-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.fund-item .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Problem Solution Boxes */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.problem-box,
.solution-box {
    padding: 36px;
    border-radius: var(--radius-lg);
}

.problem-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

[data-theme="dark"] .problem-box {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.solution-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

[data-theme="dark"] .solution-box {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.problem-box h3,
.solution-box h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.problem-box h3 {
    color: #dc2626;
}

.solution-box h3 {
    color: #16a34a;
}

.problem-box ul li,
.solution-box ul li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--dark-medium);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.problem-box ul li:last-child,
.solution-box ul li:last-child {
    border-bottom: none;
}

/* CTA */
.cta {
    background: var(--primary);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* Responsive adjustments for additional components */
@media (max-width: 992px) {
    .vm-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .fund-breakdown {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .vm-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .financial-table th,
    .financial-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}
