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

/* Update color variables for consistent theming */
:root {
    /* Primary colors from your logo */
    --primary-color: #1B365D;    /* Dark blue - keep as is from logo */
    --secondary-color: #3D5A80;  /* Adjusted medium blue for better harmony */
    --accent-color: #98C1D9;     /* Softer blue for accents */
    
    /* Supporting colors */
    --text-dark: #2D3748;        /* Dark gray for main text */
    --text-light: #718096;       /* Light gray for secondary text */
    --background-light: #F8FAFC; /* Very light blue-gray background */
    --white: #FFFFFF;
    --hover-color: #293F6F;      /* Darker blue for hover states */
    --transition: all 0.3s ease;

    /* Refined color palette */
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    
    /* Spacing system */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    
    /* Spacing Scale */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 0.75rem;   /* 12px */
    --space-base: 1rem;    /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 100px;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: var(--text-base);
    line-height: 1.5;
    color: var(--text-dark);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 10px 0;
    transition: padding 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-full {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.logo-small {
    height: 50px;
    width: auto;
    display: none;
}

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

.logo-text h1 {
    font-size: var(--text-xl);
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    line-height: 1;
}

.logo-text p {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Navigation links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--text-base);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

/* Active link style */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile menu button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    transition: var(--transition);
}

.mobile-menu:hover {
    color: var(--hover-color);
}

.mobile-menu:focus {
    outline: none;
    color: var(--hover-color);
}

/* Tablet styles */
@media (max-width: 1024px) {
    header {
        padding: 8px 0;
    }

    .logo-full {
        height: 50px;
    }

    .logo-text h1 {
        font-size: var(--text-lg);
    }

    .logo-text p {
        font-size: var(--text-xs);
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: var(--text-sm);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    header {
        padding: 5px 0;
        position: fixed;
        width: 100%;
        background: var(--white);
        z-index: 1001;
        top: 0;
        left: 0;
        height: 60px;
    }

    nav {
        padding: 0 4%;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-full {
        display: none;
    }

    .logo-small {
        display: block;
        height: 45px;
    }

    .logo-text h1 {
        font-size: var(--text-base);
    }

    .logo-text p {
        display: none;
    }

    .mobile-menu {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1002;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        display: none;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid var(--background-light);
        color: var(--primary-color);
        font-weight: 500;
        font-size: 18px;
        transition: background-color 0.3s ease;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background-color: var(--background-light);
    }

    .nav-links a.active {
        font-weight: 600;
        background-color: var(--background-light);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .logo-small {
        height: 40px;
    }

    .logo-text h1 {
        font-size: var(--text-sm);
    }

    nav {
        padding: 0 3%;
    }
}

/* Hero Section */
.hero-wrapper {
    margin-top: 70px;
    height: 80vh; /* Changed from fixed height to viewport-relative */
    min-height: 500px; /* Minimum height to ensure content visibility */
    max-height: 800px; /* Maximum height to maintain proportions */
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 1;
}

.hero-slide.next {
    transform: translateX(100%);
    opacity: 0;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 900px;
    text-align: center; /* Center align content */
    padding: 20px; /* Add padding for smaller screens */
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-left: 20px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--white);
    border-radius: 2px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem); /* Responsive font size */
    line-height: 1.6;
    padding-left: 20px;
    max-width: 700px;
    margin: 0 auto; /* Center the paragraph */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-button.prev {
    left: 20px;
}

.slider-button.next {
    right: 20px;
}

/* Services Section */
#services {
    padding: 80px 5%;
    background: var(--background-light);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(152, 193, 217, 0.1));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

/* About Section */
#about {
    padding: 80px 5%;
    background: var(--white);
}

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

/* Contact Section */
#contact {
    padding: 80px 5%;
    background: var(--background-light);
    text-align: center;
}

#contact h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    padding: 60px 5% 20px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(27, 54, 93, 0.2);
}

.cta-button:hover {
    background: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
}

/* SEO and accessibility improvements */
h1, h2, h3, h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-full {
        display: none;
    }
    
    .logo-small {
        display: block;
        height: 50px; /* Adjusted for better mobile display */
    }

    nav {
        height: auto;
        padding: 0.8rem 5%;
    }

    .nav-links {
        display: none;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--background-light);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .service-card {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card {
        margin: 1rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    #contact h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .hero-wrapper {
        margin-top: 60px; /* Adjust top margin for mobile */
        min-height: 400px; /* Smaller minimum height for mobile */
    }

    .hero-content {
        width: 95%; /* Wider content area on mobile */
        padding: 15px; /* Smaller padding on mobile */
    }

    .hero-content h1 {
        padding-left: 10px; /* Smaller padding on mobile */
    }

    .hero-content p {
        padding-left: 10px;
    }

    .slider-button {
        width: 40px; /* Smaller buttons on mobile */
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-button.prev {
        left: 10px;
    }

    .slider-button.next {
        right: 10px;
    }

    .slider-nav {
        bottom: 20px; /* Move dots closer to bottom on mobile */
    }

    .slider-dot {
        width: 10px; /* Slightly smaller dots on mobile */
        height: 10px;
    }
}

/* Add tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-full {
        height: 100px;
    }

    nav {
        height: 120px;
    }

    .hero-wrapper {
        height: 70vh; /* Slightly shorter on tablets */
    }

    .hero-content {
        width: 85%;
    }

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

/* Add modern animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Add statistics section */
.stats-section {
    padding: 60px 5%;
    background: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Add testimonials section */
.testimonials {
    padding: 80px 5%;
    background: var(--background-light);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 1rem;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Add DC-specific styling elements */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

/* Add a DC skyline silhouette to the hero section */
#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('dc-skyline.png') repeat-x bottom;
    background-size: contain;
    opacity: 0.1;
}

/* Add local area emphasis */
.dmv-area {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(27, 54, 93, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--primary-color);
}

.service-area {
    text-align: center;
    padding: 2rem 0;
    background: var(--background-light);
}

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

.area-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.area-tag {
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* DC Area Statistics Styling */
.dc-stats-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, var(--background-light), var(--white));
}

.healthcare-stats {
    margin-top: 4rem;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.stat-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stat-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.stat-card ul li:last-child {
    border-bottom: none;
}

.dmv-coverage {
    margin: 4rem 0;
    text-align: center;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.area-tag {
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: var(--primary-color);
    color: var(--white);
}

/* Animation for statistics */
.stat-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--animation-order) * 0.2s);
}

.stat-card:nth-child(1) { --animation-order: 1; }
.stat-card:nth-child(2) { --animation-order: 2; }
.stat-card:nth-child(3) { --animation-order: 3; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }

    .area-tags {
        gap: 0.5rem;
    }

    .area-tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Add styles for new ROI section */
.roi-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

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

.roi-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.roi-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.roi-header i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.roi-content {
    padding: 2rem;
}

.roi-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.roi-label {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.roi-benefits {
    list-style: none;
    padding: 0;
}

.roi-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.roi-benefits li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Challenge Solution Cards */
.challenge-solution {
    margin-top: 4rem;
}

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

.challenge-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.challenge, .solution {
    padding: 1.5rem;
}

.challenge {
    background: rgba(27, 54, 93, 0.05);
    border-bottom: 2px solid var(--accent-color);
}

.challenge h5, .solution h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .roi-cards, .challenge-grid {
        grid-template-columns: 1fr;
    }

    .roi-stat {
        font-size: 2rem;
    }

    .challenge, .solution {
        padding: 1rem;
    }
}

/* DC Healthcare Comparison Styles */
.dc-healthcare-comparison {
    margin-top: 4rem;
    padding: 2rem 0;
}

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

.comparison-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparison-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.local, .national {
    text-align: center;
}

.vs {
    color: var(--text-light);
    font-weight: 500;
}

.value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.local .value {
    color: var(--secondary-color);
}

.label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ROI Calculator Styles */
.roi-calculator {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--background-light);
    border-radius: 20px;
}

.calculator-container {
    max-width: 800px;
    margin: 2rem auto;
}

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

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.input-group input {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.calculate-btn {
    grid-column: 1 / -1;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.calculate-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.calculator-result {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: none;
}

.calculator-result.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.saving-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin: 1rem 0;
}

.result-breakdown {
    margin-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

/* Case Studies Styles */
.case-studies {
    margin-top: 4rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-study-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.case-study-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-header h4 {
    padding: 1.5rem;
    margin: 0;
    background: var(--primary-color);
    color: var(--white);
}

.case-study-content {
    padding: 2rem;
}

.metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.metric .value {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.achievements {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.achievements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Healthcare Analysis Styles */
.healthcare-analysis {
    margin-top: 4rem;
    padding: 2rem 0;
}

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

.analysis-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.regulation-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.demographic-stats .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.facility-type h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facility-type ul {
    list-style: none;
    padding: 0;
}

.facility-type li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

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

.indicator h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.indicator ul {
    list-style: none;
    padding: 0;
}

.indicator li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .facility-breakdown,
    .health-indicators {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .analysis-card {
        padding: 1.5rem;
    }

    .demographic-stats .stat-row,
    .regulation-list li,
    .facility-type li,
    .indicator li {
        font-size: 0.9rem;
    }
}

/* Cost Analysis Styles */
.cost-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cost-trend-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.trend {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
}

.trend .stat {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

.our-solution {
    padding: 1.5rem;
}

.our-solution ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.our-solution li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.our-solution i {
    color: var(--secondary-color);
}

/* Workforce Analysis Styles */
.workforce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.projection-chart {
    margin-top: 1rem;
}

.chart-bar {
    margin: 1rem 0;
    background: var(--background-light);
    border-radius: 50px;
    overflow: hidden;
}

.bar-fill {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    padding: 0.8rem;
    color: var(--white);
    text-align: right;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .cost-solutions-grid,
    .workforce-grid {
        grid-template-columns: 1fr;
    }
}

/* Add floating contact button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.floating-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Provider Tools Section */
.provider-tools-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, var(--background-light), white);
}

.tool-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ROI Calculator Styles */
.roi-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.input-group input {
    padding: 1rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.calculate-btn {
    grid-column: 1 / -1;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

/* Demo Scheduler Styles */
.demo-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.demo-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

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

.demo-type-btn i {
    font-size: 2rem;
}

/* Quick Assessment Styles */
.question-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.progress-bar {
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
    margin: 2rem 0;
}

.progress {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Clinical Pharmacist Benefits Section */
.clinical-benefits {
    padding: 80px 5%;
    background: var(--background-light);
}

.clinical-benefits h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: var(--text-2xl);
    margin-bottom: 40px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Impact Grid */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Metric Card */
.metric-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

/* Add hover effect */
.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Stagger the animations */
.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }
.metric-card:nth-child(4) { animation-delay: 0.4s; }

/* Progress bar animation */
.progress {
    width: 0;
    animation: progressGrow 1.5s ease-out forwards;
    animation-delay: 0.5s;
}

/* Add animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressGrow {
    to {
        width: var(--progress-width);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        padding: 20px;
    }
}

/* Clinical Impact Section */
.clinical-impact {
    padding: 100px 5%;
    background: var(--white);
}

.clinical-impact h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.impact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.impact-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.impact-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.source {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--background-light);
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .clinical-impact {
        padding: 60px 5%;
    }
    
    .clinical-impact h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* News & Events Section */
.news-events {
    padding: 80px 5%;
    background: var(--background-light);
}

.news-events h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.news-content {
    padding: 25px;
    background: var(--white);
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.news-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.news-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-events {
        padding: 60px 5%;
    }
    
    .news-events h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* DC Landmarks Section */
.dc-landmarks {
    padding: 60px 5%;
    background: var(--white);
    text-align: center;
}

.dc-landmarks h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.landmark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.landmark-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.landmark-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landmark-card:hover .landmark-img {
    transform: scale(1.1);
}

.landmark-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: left;
}

.landmark-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.landmark-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .landmark-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landmark-grid {
        grid-template-columns: 1fr;
    }
    
    .dc-landmarks {
        padding: 40px 5%;
    }
    
    .dc-landmarks h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
}

/* Add previous slide styling */
.hero-slide.prev {
    transform: translateX(-100%);
} 