/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-primary-light: #60A5FA;
    --color-secondary: #0F172A;
    --color-dark: #1E293B;
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-bg-light: #EDF2F7;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    
    /* Semantic Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-danger: #EF4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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-glow: 0 0 20px rgba(37, 99, 235, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

h1 { font-size: 3.5rem; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1.5rem; }
p:last-child { margin-bottom: 0; }

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ==========================================================================
   Components
   ========================================================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn .arrow {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

.btn-outline:hover {
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

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

.btn-light:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Logos */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon.large { width: 120px; height: 120px; }
.logo-icon.small { width: 32px; height: 32px; }

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

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.125rem;
}

.logo-title.dark { color: var(--color-secondary); }
.logo-subtitle.dark { color: var(--color-text-light); }

.logo-text.large .logo-title { font-size: 2.5rem; }
.logo-text.large .logo-subtitle { font-size: 1rem; }
.logo-text.small .logo-title { font-size: 1.25rem; }
.logo-text.small .logo-subtitle { font-size: 0.65rem; }

/* Section Header */
.section-header {
    margin-bottom: var(--space-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ==========================================================================
   Layout Sections
   ========================================================================== */

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    background-color: var(--color-secondary);
    padding: 1.25rem 0;
}

.site-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

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

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary-light);
    transition: width var(--transition-fast);
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { top: 18px; }

.mobile-menu-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Hero Section */
.hero-section {
    padding-top: calc(80px + var(--space-lg));
    padding-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
    background-image: url('../img/hero_woman.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

.hero-inner {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 55%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 12px;
}

.hero-content h1 .text-highlight {
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Dashboard Mockup CSS implementation */
.dashboard-mockup {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.dash-header {
    height: 40px;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.dash-logo {
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
}

.dash-main-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.dash-sidebar {
    width: 120px;
    background-color: var(--color-bg-light);
    border-right: 1px solid var(--color-border);
    padding: 1rem 0;
    font-size: 0.65rem;
    color: var(--color-text-light);
}

.dash-sidebar ul li {
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
}

.dash-sidebar ul li.active {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-left: 2px solid var(--color-primary);
    font-weight: 600;
}

.dash-main {
    flex: 1;
    padding: 1.5rem;
    background-color: #FAFAFA;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.75rem;
}

.stat-label {
    display: block;
    font-size: 0.6rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.stat-trend {
    font-size: 0.55rem;
}

.stat-trend.positive {
    color: var(--color-success);
}

.dash-charts {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.dash-chart-main, .dash-chart-side {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 1rem;
}

.chart-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.chart-donut-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.donut-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 8px solid var(--color-primary);
    border-right-color: var(--color-success);
    border-bottom-color: var(--color-warning);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.donut-circle span {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.donut-circle small {
    font-size: 0.5rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.donut-legend {
    font-size: 0.55rem;
    width: 100%;
}

.donut-legend li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.dot.on-track { background-color: var(--color-primary); }
.dot.at-risk { background-color: var(--color-warning); }
.dot.delayed { background-color: var(--color-success); }

/* Features Strip */
.features-strip {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    position: relative;
}

.features-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.15), transparent 50%);
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h4 {
    color: var(--color-white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Services */
.services-section {
    padding: var(--space-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Industries */
.industries-section {
    padding: var(--space-xxl) 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.industry-item:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.industry-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.industry-icon svg {
    width: 48px;
    height: 48px;
}

.industry-item h4 {
    margin-bottom: 0.75rem;
}

.industry-item p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: var(--space-xxl) 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
}

.process-step {
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.process-line {
    flex: 1;
    height: 2px;
    background-color: var(--color-border);
    margin-top: 28px;
    min-width: 2rem;
}

/* Outcomes */
.outcomes-section {
    padding: var(--space-xxl) 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.outcome-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-icon svg {
    width: 30px;
    height: 30px;
}

.outcome-text h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0;
    line-height: 1;
}

.outcome-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.outcome-text p {
    color: var(--color-text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* About */
.about-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.about-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0;
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 50%);
}

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

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

.cta-text h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.cta-text p {
    margin-bottom: 0;
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding-top: var(--space-xxl);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

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

.social-links svg {
    width: 16px;
    height: 16px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.footer-links ul a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-primary-light);
}

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

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

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-content {
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .dashboard-mockup {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .features-inner, .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
    }
    .hero-section {
        background-position: center center;
    }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .site-header {
        padding: 1rem 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .process-line {
        display: none;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .dash-charts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-inner, .industries-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Multi-Page & Enhanced Dashboard Styles
   ========================================================================== */

/* Utility Classes */
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2.5rem !important; }
.py-xl { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.text-dark { color: var(--color-dark) !important; }
.text-muted { color: var(--color-text-light) !important; }

/* Enhanced Dashboard Chart */
.detailed-chart-container {
    position: relative;
    padding-bottom: 1.5rem;
}
.detailed-chart {
    width: 100%;
    height: 150px;
}
.svg-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.chart-text {
    font-size: 10px;
    fill: var(--color-text-light);
    font-family: var(--font-primary);
}

/* Page Hero */
.page-hero {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: calc(100px + 4rem) 0 4rem;
    background-image: radial-gradient(circle at center, rgba(37, 99, 235, 0.15), transparent 60%);
}
.page-hero h1 { color: var(--color-white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.25rem; color: rgba(255,255,255,0.8); max-width: 800px; margin: 0 auto 1.5rem auto; }
.page-hero p:last-child { margin-bottom: 0; }

/* Service Details */
.service-detail-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
    border-bottom: 1px solid var(--color-border);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.reverse { grid-template-columns: 2fr 3fr; }
.service-detail-row.reverse .service-detail-text { order: 2; }
.service-detail-row.reverse .service-detail-icon { order: 1; }
.service-detail-icon {
    background-color: var(--color-bg-light);
    padding: 4rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.service-detail-icon svg { width: 120px; height: 120px; }
.check-list { margin-top: 1.5rem; }
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Content Rows & Placeholders */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}
.content-row.reverse { direction: rtl; }
.content-row.reverse > * { direction: ltr; }
.placeholder-box {
    background-color: var(--color-border);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0,0,0,0.1);
}
.placeholder-text {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Contact Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info-panel h2 { margin-bottom: 1rem; }
.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.method-icon {
    width: 48px; height: 48px;
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.method-icon svg { width: 24px; height: 24px; }
.method-details h4 { margin-bottom: 0.25rem; }
.method-details p { margin-bottom: 0; color: var(--color-text-light); }

.contact-form-panel {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
textarea.form-control { resize: vertical; }

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
    }
    .hero-section {
        background-position: center center;
    }
    .content-row, .service-detail-row, .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-row.reverse .service-detail-text { order: unset; }
    .service-detail-row.reverse .service-detail-icon { order: unset; }
    .form-row { grid-template-columns: 1fr; }
}




