/* CSS Variables for Color Scheme */
:root {
    --primary-color: #1A3A6D;
    --secondary-color: #008080;
    --accent-color: #4CAF50;
    --neutral-color: #F4F4F4;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px; /* Add padding to account for fixed header */
}

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

/* Header Styles */
.header {
    background: var(--text-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

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

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header {
        background: transparent;
        box-shadow: none;
    }

    .header .container {
        background: var(--text-light);
        padding: 0.5rem 20px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--text-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 1000;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .btn.btn-primary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    body {
        padding-top: 60px;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #2a5a9d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: #006666;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-accent:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5a9d 100%);
    color: var(--text-light);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero - for product pages */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5a9d 100%);
    color: var(--text-light);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Contact Hero */
.contact-hero {
    background: var(--neutral-color);
    padding: 120px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Hero */
.pricing-hero {
    background: var(--neutral-color);
    padding: 120px 0 60px;
    text-align: center;
}

.pricing-hero h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision {
    background: var(--text-light);
    padding: 120px 0 80px;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-vision h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.mission-statement, .vision-statement {
    background: var(--neutral-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.mission-statement h3, .vision-statement h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-statement p, .vision-statement p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ViviCode Difference Section */
.vivicode-difference {
    background: var(--neutral-color);
    padding: 80px 0;
}

.vivicode-difference h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.differentiator {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.differentiator:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--text-light);
}

.differentiator h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Innovation & Security Section */
.innovation-security {
    background: var(--text-light);
    padding: 80px 0;
}

.innovation-security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.innovation-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.content-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.innovation-features, .security-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--neutral-color);
    border-radius: 5px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 600;
}

/* Team Expertise Section */
.team-expertise {
    background: var(--neutral-color);
    padding: 80px 0;
}

.team-expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.team-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.expertise-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-area {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.expertise-area h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Pricing Specific Styles */
.why-custom-quotes {
    background: var(--text-light);
    padding: 80px 0;
}

.why-custom-quotes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.how-to-quote {
    background: var(--neutral-color);
    padding: 80px 0;
}

.how-to-quote h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.quote-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.quote-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.quote-step:hover {
    transform: translateX(10px);
}

.sample-pricing {
    background: var(--text-light);
    padding: 80px 0;
}

.sample-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-disclaimer {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-tier {
    background: var(--text-light);
    border: 2px solid var(--neutral-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-tier.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: normal;
}

.tier-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.tier-features i {
    color: var(--accent-color);
}

.pricing-faq {
    background: var(--neutral-color);
    padding: 80px 0;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.6;
}

/* Problem/Solution Section */
.problem-solution {
    background: var(--text-light);
    padding: 80px 0;
}

.problem-solution h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
}

.content-wrapper p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.challenge-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.coding-challenge {
    background: var(--neutral-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.coding-challenge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.coding-challenge i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coding-challenge span {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

/* Challenge Items */
.challenge-icons, .challenge-visual {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.challenge-item {
    text-align: center;
    padding: 1rem;
    background: var(--neutral-color);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 150px;
}

.challenge-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.challenge-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--text-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: var(--neutral-color);
    border-radius: 10px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--text-light);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Detailed Steps */
.detailed-steps {
    background: var(--text-light);
    padding: 80px 0;
}

.detailed-steps h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-detail {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--neutral-color);
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-detail:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.step-detail .step-icon {
    width: 60px;
    height: 60px;
    background: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
}

/* Benefits Section */
.benefits {
    background: var(--neutral-color);
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit, .feature {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.benefit:hover, .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon, .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--text-light);
}

.benefit h3, .feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Integration Spotlight */
.integration-spotlight {
    background: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.integration-spotlight h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.integration-spotlight p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ehr-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.ehr-placeholder {
    padding: 1rem;
    background: var(--neutral-color);
    border-radius: 5px;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

/* Compliance Section */
.compliance-section {
    background: var(--text-light);
    padding: 80px 0;
}

.compliance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.compliance-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.compliance-visual {
    text-align: center;
}

.compliance-icon {
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: var(--text-light);
}

/* Target Audience Section */
.target-audience {
    background: var(--text-light);
    padding: 80px 0;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--neutral-color);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--secondary-color);
    color: var(--text-light);
}

.tab-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tab-pane.active {
    display: block;
}

/* Testimonials Section */
.testimonials {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    padding: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: var(--accent-color);
    font-weight: 600;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Final CTA Section */
.final-cta {
    background: var(--neutral-color);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 60px 0;
    background: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    background: var(--neutral-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.3rem;
}

.contact-method strong {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-method small {
    color: rgba(255,255,255,0.8);
}

/* Office Location */
.office-location {
    background: var(--neutral-color);
    padding: 60px 0;
}

.office-location h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.address h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder {
    display: flex;
    justify-content: center;
}

.map-box {
    width: 100%;
    height: 250px;
    background: var(--text-light);
    border: 2px dashed var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.map-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-color);
}

/* Form Styles for Contact Page */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
}

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

.privacy-note {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.privacy-note a {
    color: var(--secondary-color);
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .audience-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .detailed-steps {
        padding: 60px 0;
    }
    
    .steps-container {
        gap: 1.5rem;
    }
    
    .step-detail {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number,
    .step-detail .step-icon {
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compliance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .challenge-icons, .challenge-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .innovation-security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas {
        grid-template-columns: 1fr;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-steps {
        gap: 1rem;
    }
    
    .quote-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mission-vision h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .challenge-icons, .challenge-visual {
        grid-template-columns: 1fr;
    }
    
    .ehr-logos {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        padding: 100px 0 60px;
    }
    
    .pricing-hero, .contact-hero, .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}

/* Animation for scroll effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* AI Scribe specific styles - scoped to avoid affecting other pages */
section.scribe-works-section h2.scribe-works-title {
    font-size: 2.5rem !important;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

section.scribe-works-section .challenge-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 0;
}

section.scribe-works-section .challenge-visual .coding-challenge {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--neutral-color);
    border-radius: 10px;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: left;
    flex: none;
    min-width: auto;
}

section.scribe-works-section .challenge-visual .coding-challenge:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

section.scribe-works-section .challenge-visual .coding-challenge .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

section.scribe-works-section .challenge-visual .coding-challenge .step-content {
    flex: 1;
}

section.scribe-works-section .challenge-visual .coding-challenge .step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

section.scribe-works-section .challenge-visual .coding-challenge .step-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

section.scribe-works-section .challenge-visual .coding-challenge .step-icon {
    width: 60px;
    height: 60px;
    background: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
} 