/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    margin-right: 16px;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.brand-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0;
}

.brand-text p {
    font-size: 14px;
    color: var(--emerald-600);
    font-weight: 500;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: var(--gray-100);
    color: var(--emerald-600);
}

.nav-link.active {
    background: var(--emerald-100);
    color: var(--emerald-700);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
    color: var(--emerald-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    justify-content: center;
}

 /* Primary Button - Red Gradient */
        .btn-primary {
            background: linear-gradient(30deg, #FB9446 0%, #e74c3c 100%);
            color: #fff;
            border: none;
            border-radius: 2rem;
            padding: 0.75rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(238, 75, 71, 0.15);
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.7em;
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: linear-gradient(90deg, #e74c3c 0%, #EE4B47 100%);
            box-shadow: 0 4px 16px rgba(238, 75, 71, 0.25);
            transform: translateY(-2px) scale(1.03);
            color: #fff;
        }

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(6, 78, 59, 0.9) 0%, 
        rgba(6, 95, 70, 0.8) 50%, 
        rgba(5, 150, 105, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 64px 0;
}

.hero-text {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #fca5a5, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    margin-top: 8px;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Stats Section */
.stats-section {
    padding: 64px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon.emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.stat-icon.red {
    background: var(--red-100);
    color: var(--red-600);
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
}

.section-badge.emerald {
    background: var(--emerald-100);
    color: var(--emerald-700);
}

.section-badge.red {
    background: var(--red-100);
    color: var(--red-700);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.text-emerald {
    color: var(--emerald-600);
}

.text-red {
    color: var(--red-600);
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 40px 0 0 0;
    margin-bottom: 40px;
}

.about-header {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(0.85) contrast(1.05);
}

.about-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(180deg, rgba(42,124,111,0.6) 0%, rgba(42,124,111,0.15) 70%, transparent 100%);
}

.about-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    margin-bottom: 0.5rem;
}

.about-underline {
    width: 80px;
    border: 2px solid #f9b233;
    margin: 0 auto;
    background: #f9b233;
    opacity: 0.9;
}

.about-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    pointer-events: none;
}

/* About Content */
.about-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: -40px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(42,124,111,0.10);
    padding: 48px 32px;
    position: relative;
    z-index: 4;
}

.about-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-card {
    background: #f7faf9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(42,124,111,0.04);
    padding: 28px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}
.about-card:hover {
    box-shadow: 0 4px 16px rgba(42,124,111,0.12);
}
.about-card h3 {
    color: #2a7c6f;
    font-size: 1.35rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-card ul {
    margin: 0 0 12px 0;
    padding-left: 20px;
}
.about-card li {
    margin-bottom: 6px;
    font-size: 1rem;
}
.about-icon {
    color: #e74c3c;
    font-size: 1.3em;
    vertical-align: middle;
}

.about-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(42,124,111,0.06);
    padding: 20px 18px;
    margin-bottom: 0;
    border-left: 4px solid #2a7c6f;
}
.sidebar-card h4 {
    color: #2a7c6f;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card p {
    color: #333;
    font-size: 0.98rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        gap: 0;
        padding: 18px 8px;
    }
    .about-main {
        gap: 18px;
    }
    .about-card {
        padding: 18px 12px;
    }
    .about-sidebar {
        margin-top: 24px;
        gap: 14px;
    }
}

/* Features Grid Section Styling */
.features-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-card {
    background: #f7faf9;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(42,124,111,0.08);
    padding: 32px 24px;
    text-align: center;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 340px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(42,124,111,0.18);
    transform: translateY(-6px) scale(1.04);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 18px auto;
    background: #e6f7f3;
    color: #2a7c6f;
    box-shadow: 0 2px 8px rgba(42,124,111,0.08);
}

.feature-icon.red {
    background: #fdecea;
    color: #e74c3c;
}

.feature-icon.emerald {
    background: #e6f7f3;
    color: #2a7c6f;
}

.feature-card h4 {
    font-size: 1.25rem;
    color: #2a7c6f;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 96px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.service-features i {
    color: var(--emerald-500);
    font-size: 16px;
}

/* Facilities Section */
.facilities-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--emerald-50), #f0fdf4);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.facility-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.facility-beds {
    color: var(--emerald-600);
    font-weight: 600;
    margin-bottom: 16px;
}

.facility-card ul {
    list-style: none;
}

.facility-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.facility-card i {
    color: var(--emerald-500);
    font-size: 12px;
}

/* Team Section */
.team-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--gray-50), var(--emerald-50));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.doctor-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 32px;
}

.doctor-info h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.doctor-role {
    color: var(--emerald-600);
    font-weight: 600;
    margin-bottom: 4px;
}

.doctor-specialty {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.doctor-experience {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.doctor-experience i {
    color: var(--red-500);
}

/* Patient Information Section */
.patient-info-section {
    padding: 96px 0;
    background: white;
}

.patient-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.patient-service-card {
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.patient-service-card.outpatient {
    background: linear-gradient(135deg, var(--emerald-50), #f0fdf4);
}

.patient-service-card.inpatient {
    background: linear-gradient(135deg, var(--red-50), #fef7f7);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.service-icon-large {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-icon-large.emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.service-icon-large.red {
    background: var(--red-100);
    color: var(--red-600);
}

.service-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-900);
    margin: 0;
}

.service-header p {
    color: var(--emerald-600);
    font-weight: 500;
    margin: 0;
}

.inpatient .service-header p {
    color: var(--red-600);
}

.hours-card, .admission-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.hours-card h4, .admission-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    font-size: 14px;
}

.hours-grid strong {
    color: var(--gray-900);
    display: block;
}

.hours-grid p {
    color: var(--gray-600);
    margin: 0;
}

.emergency {
    color: var(--red-600) !important;
}

.services-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-size: 14px;
}

.services-grid-small div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
}

.services-grid-small i {
    color: var(--emerald-500);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--emerald-100);
    color: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.room-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 12px;
}

.room-option strong {
    color: var(--gray-900);
    display: block;
}

.room-option small {
    color: var(--gray-600);
    font-size: 12px;
}

.price {
    color: var(--emerald-600);
    font-weight: bold;
    font-size: 14px;
}

/* Insurance & Payment */
.insurance-payment-section {
    background: linear-gradient(135deg, var(--gray-50), var(--emerald-50));
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.insurance-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.insurance-section h4, .payment-section h4 {
    font-size: 20px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.insurance-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insurance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.insurance-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.insurance-info i {
    color: var(--emerald-600);
}

.insurance-info span {
    font-weight: 500;
    color: var(--gray-900);
    font-size: 14px;
}

.coverage {
    color: var(--emerald-600);
    font-weight: 500;
    font-size: 12px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.payment-method {
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.payment-method:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.payment-method p {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon.emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.contact-icon.red {
    background: var(--red-100);
    color: var(--red-600);
}

.contact-details h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 2px 0;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, var(--emerald-50), #f0fdf4);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.form-header p {
    color: var(--gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
    resize: none;
    font-family: inherit;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--emerald-900));
    color: white;
    padding: 64px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.footer-brand p {
    color: #6ee7b7;
    font-size: 14px;
    margin: 0;
}

.footer-section p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 14px;
}

.footer-contact i {
    color: #6ee7b7;
    width: 16px;
}

.footer-contact i.fa-phone {
    color: #fca5a5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--gray-100);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
    }

    .patient-services-grid {
        grid-template-columns: 1fr;
    }

    .insurance-payment-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 32px 0;
    }

    .stats-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat {
        min-width: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

.hidden {
    display: none;
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* Services Page Styling */
.services-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.services-section .section-badge {
    display: inline-flex;
    align-items: center;
    background: #e6f7f3;
    color: #2a7c6f;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 2rem;
    padding: 0.5rem 1.3rem;
    box-shadow: 0 2px 8px rgba(42,124,111,0.08);
    margin-bottom: 1.2rem;
    gap: 0.7rem;
}
.services-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}
.services-section .text-emerald {
    color: #2a7c6f;
}
.services-section .section-description {
    
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    max-width: 1200px;
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.service-card {
    background: #f7faf9;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(42,124,111,0.08);
    padding: 32px 24px;
    text-align: left;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 340px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(42,124,111,0.18);
    transform: translateY(-6px) scale(1.04);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(42,124,111,0.08);
}
.service-icon.blue { background: #e3f0fa; color: #3498db; }
.service-icon.emerald { background: #e6f7f3; color: #2a7c6f; }
.service-icon.red { background: #fdecea; color: #e74c3c; }
.service-icon.orange { background: #fff4e6; color: #f9b233; }
.service-icon.pink { background: #fae3f0; color: #e67ea3; }

.service-card h3 {
    font-size: 1.2rem;
    color: #2a7c6f;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-card ul {
    margin: 0 0 12px 0;
    padding-left: 20px;
}
.service-card li {
    margin-bottom: 6px;
    font-size: 1rem;
}
.service-card p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-highlight {
    background: #e6f7f3;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(42,124,111,0.08);
    padding: 32px 24px;
    text-align: center;
    margin: 40px auto 0 auto;
    max-width: 600px;
}
.service-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 18px auto;
    background: #f9b233;
    color: #fff;
}
.service-highlight h3 {
    color: #2a7c6f;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-highlight p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .service-card {
        max-width: 100%;
        min-width: 0;
    }
    .service-highlight {
        padding: 18px 8px;
    }
}
.team-groups {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 2.5rem;
}
.team-group {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(42,124,111,0.08);
    padding: 32px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.team-group:hover {
    box-shadow: 0 8px 32px rgba(42,124,111,0.18);
    transform: translateY(-3px) scale(1.01);
}
.team-group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.team-group-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(42,124,111,0.08);
    border: 2px solid #e6f7f3;
}
.team-group-icon.blue { background: #e6f7f3; color: #2a7c6f; }
.team-group-icon.emerald { background: #e6f7f3; color: #2a7c6f; }
.team-group-icon.orange { background: #fff4e6; color: #f9b233; }
.team-group-icon.pink { background: #fdecea; color: #e74c3c; }

.team-group h3 {
    font-size: 1.25rem;
    color: #2a7c6f;
    font-weight: 700;
    margin: 0;
}
.team-group-content ul {
    margin: 0 0 12px 0;
    padding-left: 20px;
}
.team-group-content li {
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.5;
}
.team-group-content p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}
.team-role {
    color: #f9b233;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 900px) {
    .team-group {
        padding: 18px 8px;
    }
}

/* Header Section Customizations */
.services-header-section .about-title .services-icon {
    color: #2a7c6f;
    margin-right: 10px;
    font-size: 1.2em;
}
.team-header-section .about-title .team-icon {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 1.2em;
}
.about-lead {
    color: #2a7c6f;
    font-size: 1.15rem;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 8px rgba(42,124,111,0.08);
}
/* Team Content Margin and Spacing */
.team-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    margin-top: 0px; /* Adds space below the header image/wave */
}

.team-groups {
    display: flex;
    flex-direction: column;
    gap: 40px; /* More space between team sections */
}

.team-group {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(42,124,111,0.08);
    padding: 32px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}

.team-highlight {
    margin-top: 48px; /* More space above the highlight section */
}

/* Responsive */
@media (max-width: 900px) {
    .team-content {
        padding: 0 8px;
        margin-top: 28px;
    }
    .team-groups {
        gap: 22px;
    }
    .team-group {
        padding: 18px 8px;
    }
    .team-highlight {
        margin-top: 28px;
        padding: 18px 8px;
    }
}
/* Move content up so it starts just after the wave */
.team-content {
    max-width: 1200px;
    margin: -60px auto 0 auto; /* Negative top margin pulls content up under the wave */
    padding: 0 16px;
    position: relative;
    z-index: 2; /* Content stays below the header */
}

/* Ensure header is always in front */
.about-header {
    position: relative;
    z-index: 10;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .team-content {
        margin-top: -30px;
        padding: 0 8px;
    }
}

/* Services Content Margin Fix */
.services-content {
    max-width: 1200px;
    margin: -60px auto 0 auto; /* Pulls content up under the wave */
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .services-content {
        margin-top: -30px;
        padding: 0 8px;
    }
}