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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --light: #f8fafc;
    --light-alt: #f1f5f9;
    --gray: #6b7280;
    --gray-light: #d1d5db;
    --dark: #1f2937;
    --darker: #111827;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navigation Bar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.navbar-brand {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}
/* Style for the logo in the header */
.brand-logo {
    height: 40px; /* Adjust this height as needed */
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Style for the logo in the footer */
.footer-logo {
    height: 35px; /* Slightly smaller for the footer */
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Ensure the flex container aligns image and text correctly */
.logo, .footer-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo:hover {
    color: var(--primary);
}

.logo i {
    font-size: 24px;
    color: var(--primary);
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.company-sub {
    font-size: 10px;
    color: var(--primary);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        border-radius: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Main Content */
main {
    min-height: calc(100vh - 180px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e40af 100%);
    color: var(--white);
    padding: 80px 16px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #1e40af 100%);
    color: var(--white);
    padding: 60px 16px 80px;
    text-align: center;
}

.page-hero .container {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* Sections */
section {
    padding: 80px 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    font-size: 16px;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    background: var(--light);
    padding: 60px 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

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

.stat-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* Services Overview */
.services-overview {
    background: var(--white);
}

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

.service-card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

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

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.6;
}
.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
}

.service-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Scanner Featured Services */
.scanner-featured {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);
    color: var(--white);
    padding: 80px 16px;
}

.scanner-featured .section-header {
    color: var(--white);
}

.scanner-featured .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.scanner-featured .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.featured-service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.featured-large {
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.2);
    border-color: var(--primary);
}

.featured-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.25);
    border-color: var(--primary);
}

.featured-service-image {
    height: 200px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.featured-service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    padding: 20px 20px 8px;
}

.featured-tagline {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 20px 8px;
}

.featured-description {
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px 15px;
}

.featured-features {
    list-style: none;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.featured-features li {
    padding: 8px 0;
    color: var(--secondary);
    font-size: 13px;
}

.featured-features i {
    color: var(--primary);
    margin-right: 10px;
    font-weight: 600;
}

/* OCR Highlighted Section */
.ocr-highlighted {
    background: linear-gradient(135deg, #ccfbf1 0%, #d1fae5 100%);
    padding: 80px 16px;
}

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

.ocr-image {
    flex-shrink: 0;
}

.ocr-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.ocr-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin: 15px 0 8px;
}

.ocr-text .service-tagline {
    color: #0d9488;
    padding: 0;
}

.ocr-text p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    color: var(--secondary);
    font-size: 14px;
}

.service-list i {
    color: #0d9488;
    margin-right: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ocr-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-services-grid {
        grid-template-columns: 1fr;
    }

    .scanner-featured {
        padding: 50px 16px;
    }
}

/* Additional Services Grid */
.additional-services {
    background: var(--white);
    padding: 80px 16px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-option {
    background: var(--light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    text-align: center;
}

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

.service-option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-option-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-option-icon i {
    font-size: 40px;
    color: var(--primary);
}

.service-option h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-option p {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mini-features {
    list-style: none;
    padding: 0;
    text-align: left;
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
}

.mini-features li {
    font-size: 12px;
    color: var(--secondary);
    padding: 6px 0;
}

.mini-features li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
    margin-right: 6px;
}

/* Why Scanning Section */
.why-scanning {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 80px 16px;
}

.why-scanning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why-scanning-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.3s;
}

.why-scanning-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 15px;
}

.why-scanning-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-scanning-card p {
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Detailed Services */
.services-detailed {
    background: var(--white);
}

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

.detailed-service-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.detailed-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(37,99,235,0.03) 100%);
    pointer-events: none;
}

.service-header {
    padding: 30px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header.blue {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.service-header.emerald {
    background: linear-gradient(135deg, #10b981, #047857);
}

.service-header.amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-header.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-header.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.service-header.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.service-header.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.service-number {
    font-size: 32px;
    font-weight: 700;
    opacity: 0.3;
}

.service-header i {
    font-size: 32px;
}

.detailed-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 20px 30px 0;
    color: var(--dark);
}

.service-tagline {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 30px;
}

.service-description {
    padding: 10px 30px;
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 20px 30px 30px;
}

.service-features li {
    padding: 8px 0;
    color: var(--secondary);
    font-size: 14px;
}

.service-features i {
    color: var(--success);
    margin-right: 10px;
    font-weight: 600;
}

/* Why Section */
.why-section,
.why-services {
    background: var(--light);
}

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

.why-card,
.why-service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover,
.why-service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-icon,
.why-service-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-card h3,
.why-service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-card p,
.why-service-card p {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 60px 16px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    background: var(--white);
}

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

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-big {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-small {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.mv-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.mv-card p {
    color: var(--secondary);
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* Values Section */
.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 15px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

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

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

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    flex: 1;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

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

@media (max-width: 768px) {
    .timeline::before {
        left: 12px;
    }

    .timeline-dot {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .timeline-item {
        gap: 20px;
        margin-bottom: 20px;
    }

    .timeline-content {
        padding: 15px;
    }
}

/* Leadership */
.leadership-section {
    background: var(--white);
}

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

.leadership-card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.leadership-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.leadership-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 15px;
}

.leadership-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.leadership-title {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0 10px;
}

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

/* Contact Section */
.contact-section {
    background: var(--light);
    padding: 60px 16px;
}

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

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.info-card h2,
.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-list a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--primary);
}

.contact-list span {
    color: var(--dark);
    font-weight: 500;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    font-weight: 500;
    color: var(--dark);
}

.hours-list span:last-child {
    color: var(--secondary);
    font-size: 14px;
}

.quick-response {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.quick-response i {
    font-size: 32px;
    margin-bottom: 15px;
}

.quick-response h3 {
    color: var(--white);
}

.quick-response p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.map-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.map-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Contact Form */
.contact-form-container {
    display: flex;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    width: 100%;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-header p {
    color: var(--secondary);
    margin-bottom: 25px;
}

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

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

.required {
    color: var(--error);
}

.optional {
    color: var(--secondary);
    font-weight: 400;
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

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

.form-info {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 25px;
}

/* Messages */
.error-message,
.success-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: var(--error);
}

.error-message i,
.success-message i {
    font-size: 20px;
    flex-shrink: 0;
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--success);
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.success-message h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: var(--dark);
}

.success-message p {
    color: var(--secondary);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-card {
        padding: 25px;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    margin-top: 80px;
}

.footer-content {
    padding: 60px 16px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-bottom: 15px;
}

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

.footer-desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-divider {
    height: 1px;
    background: #374151;
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        padding: 40px 16px 20px;
    }

    section {
        padding: 50px 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 28px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}
