/* ==========================================================================
   SummitCare Medical Center - Main Stylesheet (style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & THEME SETUP
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-color: #1E88E5;         /* Medical Blue */
    --primary-hover: #1565C0;         /* Darker Blue */
    --primary-light: #E3F2FD;         /* Very Light Blue Tint */
    --accent-color: #00ACC1;          /* Teal Accent */
    --secondary-bg: #F8F9FA;          /* Off White */
    --white: #FFFFFF;
    --dark-text: #2C3E50;             /* Slate Dark Gray */
    --body-text: #546E7A;             /* Medium Gray */
    --light-text: #90A4AE;            /* Light Muted Gray */
    --border-color: #E0E6ED;          /* Light Border Gray */
    --border-hover: #CBD5E1;
    
    /* Status Colors */
    --success: #2E7D32;
    --warning: #F57C00;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(149, 157, 165, 0.1);
    --shadow-lg: 0 16px 32px rgba(30, 136, 229, 0.08);
    --shadow-hover: 0 20px 40px rgba(30, 136, 229, 0.12);
    
    /* Layout & Spacing */
    --container-max: 1240px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.bg-offwhite {
    background-color: var(--secondary-bg);
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--primary-color);
}

.margin-top-md {
    margin-top: 2.5rem;
}

/* Section Header Shared Styling */
.section-header {
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--body-text);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-text);
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-sm);
}

.btn-outline-sm:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
}

/* Glassmorphic Components */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
}

/* Badge Tags */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-spinner {
    font-size: 3rem;
    color: var(--primary-color);
    animation: heartbeat 1.2s infinite ease-in-out;
}

.loader-text {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   5. TOP BAR & NAVIGATION
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    color: var(--body-text);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 1.75rem;
}

.top-bar-info i, .top-bar-contact i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-socials {
    display: flex;
    gap: 0.75rem;
}

.top-socials a {
    color: var(--body-text);
}

.top-socials a:hover {
    color: var(--primary-color);
}

/* Main Navbar */
.navbar-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar-header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-color);
    padding: 0.2rem 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0051a3 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(0, 92, 184, 0.25);
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 92, 184, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--body-text);
    margin-top: 0.15rem;
}

.nav-list {
    display: flex;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-footer {
    display: none;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--dark-text);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 5rem 0 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F8FB 100%);
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background-color: rgba(30, 136, 229, 0.15);
    top: -50px;
    right: 10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 172, 193, 0.12);
    bottom: 10%;
    left: -50px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-item h4 {
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--body-text);
    margin: 0;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-glass-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    z-index: 2;
    min-width: 230px;
}

.glass-card-1 {
    top: 40px;
    left: -40px;
    background: rgba(255, 255, 255, 0.92);
}

.glass-card-2 {
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.92);
}

.check-icon {
    font-size: 1.75rem;
    color: #2E7D32;
}

.star-icon {
    font-size: 1.75rem;
    color: #FFB300;
}

.hero-glass-card h5 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.hero-glass-card p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--body-text);
}

/* --------------------------------------------------------------------------
   7. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.feature-card {
    background: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.55;
    margin: 0;
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
    transform: translateY(-6px);
}

.service-icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--secondary-bg);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.service-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.service-link:hover {
    gap: 0.7rem;
}

/* --------------------------------------------------------------------------
   9. ABOUT PREVIEW SECTION
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    text-align: center;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.body-text {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.about-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.check-item i {
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   10. DOCTORS SECTION
   -------------------------------------------------------------------------- */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.doctor-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.doctor-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.doctor-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.doctor-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.doctor-card:hover .doctor-image-container img {
    transform: scale(1.05);
}

.doctor-socials {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.doctor-card:hover .doctor-socials {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.doctor-socials a {
    width: 34px;
    height: 34px;
    background-color: var(--white);
    color: var(--dark-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.doctor-socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.doctor-info {
    padding: 1.5rem;
}

.doctor-specialty {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.doctor-name {
    font-size: 1.15rem;
    margin: 0.25rem 0 0.5rem 0;
}

.doctor-exp {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 0.75rem;
}

.doctor-exp i {
    margin-right: 0.3rem;
}

.doctor-bio {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonial-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stars {
    color: #FFB300;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.reviewer-tag {
    font-size: 0.8rem;
    color: var(--light-text);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

/* --------------------------------------------------------------------------
   12. INSURANCE SECTION
   -------------------------------------------------------------------------- */
.insurance-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.insurance-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.insurance-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.insurance-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.insurance-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. APPOINTMENT CTA
   -------------------------------------------------------------------------- */
.appointment-cta-section {
    padding: 2rem 0;
}

.cta-card {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    color: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.cta-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin: 0.5rem 0 1rem 0;
}

.cta-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-features i {
    margin-right: 0.4rem;
}

.cta-form-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    color: var(--dark-text);
    box-shadow: var(--shadow-lg);
}

.cta-form-box h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

/* --------------------------------------------------------------------------
   14. BLOG SECTION
   -------------------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.blog-img-box {
    position: relative;
    height: 200px;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
    padding: 0 1.5rem;
    background-color: var(--secondary-bg);
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   16. CONTACT PREVIEW
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-detail-item p {
    font-size: 0.9rem;
    margin: 0;
}

.map-placeholder-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.map-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #111827;
    color: #9CA3AF;
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #1F2937;
}

.footer-logo .brand-name {
    color: var(--white);
}

.footer-logo .brand-sub {
    color: #9CA3AF;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1.25rem 0;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: #1F2937;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #9CA3AF;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-pill);
    background-color: #1F2937;
    border: 1px solid #374151;
    color: var(--white);
    font-size: 0.85rem;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
}

.footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--white);
}
/* ==========================================================================
   SummitCare Medical Center - Contact Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PAGE BANNER
   -------------------------------------------------------------------------- */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark, #f9fcff) 0%, var(--primary, #134074) 100%);
    padding: 5rem 0 4rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    max-width: 750px;
    margin: 0 auto;
}

.banner-content .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.banner-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   2. QUICK CONTACT INFO CARDS
   -------------------------------------------------------------------------- */
.contact-info-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 3rem;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light, #eef6ff);
    color: var(--primary, #134074);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--text-muted, #6c757d);
    margin-bottom: 0.75rem;
}

.info-link, 
.info-link-text {
    display: block;
    font-weight: 700;
    color: var(--primary, #134074);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    text-decoration: none;
}

.info-link:hover {
    color: var(--accent, #0077b6);
    text-decoration: underline;
}

.sub-text {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted, #8d99ae);
}

/* --------------------------------------------------------------------------
   3. CONTACT MAIN SECTION (FORM & MAP)
   -------------------------------------------------------------------------- */
.contact-main-section {
    padding: 3rem 0 5rem;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

/* Form Styling */
.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #eef2f6);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.85rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted, #6c757d);
    font-size: 0.95rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.5rem;
}

.required {
    color: #e63946;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted, #94a3b8);
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-with-icon input,
.input-with-icon select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    font-size: 0.95rem;
    border: 1.5px solid var(--border-color, #cbd5e1);
    border-radius: 8px;
    background-color: #f8fafc;
    color: var(--text-dark, #1e293b);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

textarea {
    padding: 0.85rem 1rem;
    resize: vertical;
    min-height: 120px;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
textarea:focus {
    border-color: var(--primary, #134074);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(19, 64, 116, 0.1);
}

.input-with-icon input:focus + i,
.input-with-icon select:focus + i {
    color: var(--primary, #134074);
}

/* Error States */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e63946;
    background-color: #fff5f5;
}

.error-msg {
    font-size: 0.78rem;
    color: #e63946;
    margin-top: 0.35rem;
    display: block;
    min-height: 18px;
}

/* Custom Checkbox */
.checkbox-group {
    margin-bottom: 1.75rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted, #475569);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #f8fafc;
    border: 1.5px solid var(--border-color, #cbd5e1);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary, #134074);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary, #134074);
    border-color: var(--primary, #134074);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label a {
    color: var(--primary, #134074);
    text-decoration: underline;
}

/* Feedback Alert Box */
.form-alert-box {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-alert-box.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-alert-box.danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* --------------------------------------------------------------------------
   4. MAP & LOCATION CARD
   -------------------------------------------------------------------------- */
.contact-map-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #eef2f6);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-header {
    margin-bottom: 1.25rem;
}

.map-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.35rem;
}

.map-header p {
    font-size: 0.875rem;
    color: var(--text-muted, #6c757d);
}

.map-frame {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.loc-item i {
    font-size: 1.25rem;
    color: var(--primary, #134074);
    background: var(--accent-light, #eef6ff);
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.loc-item strong {
    display: block;
    font-size: 0.925rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.2rem;
}

.loc-item p {
    font-size: 0.825rem;
    color: var(--text-muted, #6c757d);
    margin: 0;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   5. RESPONSIVE MEDIA QUERIES FOR CONTACT PAGE
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map-card {
        height: auto;
    }
}

@media screen and (max-width: 576px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-section {
        margin-top: -2rem;
    }
}

/* ==========================================================================
   SummitCare Medical Center - Appointment Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. LAYOUT GRID & CONTAINER
   -------------------------------------------------------------------------- */
.appointment-section {
    padding: 3rem 0 5rem;
    background-color: #f8fafc;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

/* --------------------------------------------------------------------------
   2. APPOINTMENT FORM CARD & STEPS
   -------------------------------------------------------------------------- */
.appointment-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color, #eef2f6);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.form-section-title:first-of-type {
    margin-top: 1rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background-color: var(--primary, #134074);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-section-title h3 {
    font-size: 1.15rem;
    color: var(--text-dark, #1c2a39);
    margin: 0;
}

/* --------------------------------------------------------------------------
   3. CONSULTATION TYPE RADIO TILES
   -------------------------------------------------------------------------- */
.radio-tile-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.35rem;
}

.radio-tile {
    position: relative;
    cursor: pointer;
}

.radio-tile input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tile-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: #f8fafc;
    border: 2px solid var(--border-color, #cbd5e1);
    border-radius: 10px;
    transition: all 0.25s ease;
    color: var(--text-muted, #475569);
    font-weight: 600;
    font-size: 0.95rem;
}

.tile-content i {
    font-size: 1.2rem;
    color: var(--text-muted, #64748b);
    transition: color 0.25s ease;
}

/* Radio Checked State */
.radio-tile input[type="radio"]:checked + .tile-content {
    border-color: var(--primary, #134074);
    background-color: var(--accent-light, #eef6ff);
    color: var(--primary, #134074);
    box-shadow: 0 4px 12px rgba(19, 64, 116, 0.1);
}

.radio-tile input[type="radio"]:checked + .tile-content i {
    color: var(--primary, #134074);
}

.radio-tile:hover .tile-content {
    border-color: var(--primary, #134074);
}

/* --------------------------------------------------------------------------
   4. BUTTON & UTILITIES
   -------------------------------------------------------------------------- */
.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   5. SIDEBAR STYLING
   -------------------------------------------------------------------------- */
.appointment-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color, #eef2f6);
}

/* Emergency Banner Card */
.emergency-card {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border: 1px solid #fca5a5;
    text-align: center;
}

.emergency-card .card-icon {
    width: 52px;
    height: 52px;
    background-color: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.emergency-card h3 {
    color: #991b1b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.emergency-card p {
    font-size: 0.85rem;
    color: #7f1d1d;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #dc2626;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-emergency:hover {
    background-color: #b91c1c;
}

/* Policy List */
.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.policy-list li strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dark, #1e293b);
    margin-bottom: 0.2rem;
}

.policy-list li p {
    font-size: 0.825rem;
    color: var(--text-muted, #64748b);
    margin: 0;
    line-height: 1.4;
}

/* Help Box */
.help-card {
    text-align: center;
    background-color: #f8fafc;
}

.help-icon {
    font-size: 2rem;
    color: var(--primary, #134074);
    margin-bottom: 0.75rem;
}

.help-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.35rem;
}

.help-card p {
    font-size: 0.825rem;
    color: var(--text-muted, #64748b);
    margin-bottom: 0.75rem;
}

.phone-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary, #134074);
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.phone-link:hover {
    color: var(--accent, #0077b6);
    text-decoration: underline;
}

.time-text {
    font-size: 0.78rem;
    color: var(--text-muted, #94a3b8);
}

/* --------------------------------------------------------------------------
   6. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .appointment-grid {
        grid-template-columns: 1fr;
    }

    .appointment-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .appointment-form-card {
        padding: 1.5rem;
    }

    .radio-tile-group {
        grid-template-columns: 1fr;
    }

    .appointment-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SummitCare Medical Center - Services Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. MAIN SERVICES GRID
   -------------------------------------------------------------------------- */
.services-main-section {
    padding: 4rem 0 5rem;
    background-color: #ffffff;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted, #64748b);
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary, #134074);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light, #eef6ff);
    color: var(--primary, #134074);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary, #134074);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-dark, #334155);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: #10b981; /* Success checkmark color */
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary, #134074);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
    color: var(--accent, #0077b6);
    gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   2. EMERGENCY CALLOUT BANNER
   -------------------------------------------------------------------------- */
.emergency-callout-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.callout-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2.5rem 3rem;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.callout-text h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.callout-text p {
    color: #94a3b8;
    margin: 0;
    font-size: 1rem;
    max-width: 600px;
}

.btn-emergency-call {
    background-color: #dc2626;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-emergency-call:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   3. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item.active {
    border-color: var(--primary, #134074);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark, #1c2a39);
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary, #134074);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary, #134074);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
    background-color: #ffffff;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--text-muted, #64748b);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .callout-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .callout-text p {
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.75rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
}


/* ==========================================================================
   SummitCare Medical Center - About Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. STORY & MISSION SECTION
   -------------------------------------------------------------------------- */
.about-story-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.sub-heading {
    display: inline-block;
    color: var(--primary, #134074);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.story-content p {
    color: var(--text-muted, #64748b);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.mission-vision-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

.mv-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.mv-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--accent-light, #eef6ff);
    color: var(--primary, #134074);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.mv-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.25rem;
}

.mv-item p {
    margin: 0;
    font-size: 0.925rem;
}

.story-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary, #134074) 0%, #0b2545 100%);
    border-radius: 20px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(19, 64, 116, 0.15);
}

.experience-badge {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    width: 100%;
}

.exp-years {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #38bdf8;
}

.exp-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #e2e8f0;
}

/* --------------------------------------------------------------------------
   2. STATS COUNTER BAR
   -------------------------------------------------------------------------- */
.stats-counter-section {
    padding: 3.5rem 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color, #e2e8f0);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary, #134074);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark, #1c2a39);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted, #64748b);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   3. CORE VALUES SECTION
   -------------------------------------------------------------------------- */
.core-values-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 56px;
    height: 56px;
    background-color: var(--accent-light, #eef6ff);
    color: var(--primary, #134074);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.6rem;
}

.value-card p {
    color: var(--text-muted, #64748b);
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   4. LEADERSHIP TEAM SECTION
   -------------------------------------------------------------------------- */
.leadership-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.leader-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.25rem;
}

.leader-role {
    display: block;
    color: var(--primary, #134074);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-info p {
    color: var(--text-muted, #64748b);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   5. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 576px) {
    .story-content h2 {
        font-size: 1.75rem;
    }

    .exp-years {
        font-size: 3.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}


/* ==========================================================================
   SummitCare Medical Center - Insurance Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SEARCH & PROVIDERS GRID
   -------------------------------------------------------------------------- */
.insurance-search-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.insurance-search-box {
    position: relative;
    max-width: 540px;
    margin: 2rem auto 0;
}

.insurance-search-box .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted, #64748b);
    font-size: 1.1rem;
    pointer-events: none;
}

.insurance-search-box input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.25rem;
    border: 2px solid var(--border-color, #e2e8f0);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.insurance-search-box input:focus {
    border-color: var(--primary, #134074);
    box-shadow: 0 0 0 4px rgba(19, 64, 116, 0.1);
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.provider-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary, #134074);
}

.provider-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-badge.badge-gov {
    background-color: #e0f2fe;
    color: #0369a1;
}

.provider-icon {
    width: 54px;
    height: 54px;
    background-color: var(--accent-light, #eef6ff);
    color: var(--primary, #134074);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.provider-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.6rem;
}

.provider-card p {
    color: var(--text-muted, #64748b);
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plan-type {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #134074);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.no-results-msg {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted, #64748b);
    font-size: 1.1rem;
}

.no-results-msg i {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
    display: block;
}

/* --------------------------------------------------------------------------
   2. FINANCIAL AID & VERIFICATION FORM
   -------------------------------------------------------------------------- */
.financial-aid-section {
    padding: 5rem 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

.financial-aid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.aid-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 1rem;
}

.aid-content p {
    color: var(--text-muted, #64748b);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.aid-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aid-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.aid-features li i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    color: var(--primary, #134074);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.aid-features h4 {
    font-size: 1.1rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.25rem;
}

.aid-features p {
    margin: 0;
    font-size: 0.9rem;
}

/* Verification Form Card */
.verification-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.verification-form-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark, #1c2a39);
    margin-bottom: 0.5rem;
}

.verification-form-card p {
    color: var(--text-muted, #64748b);
    font-size: 0.925rem;
    margin-bottom: 1.75rem;
}

.insurance-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark, #334155);
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color, #cbd5e1);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: var(--primary, #134074);
    box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.btn-primary {
    background-color: var(--primary, #134074);
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #0b2545;
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
}

/* --------------------------------------------------------------------------
   3. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .financial-aid-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 576px) {
    .verification-form-card {
        padding: 1.75rem 1.25rem;
    }

    .aid-content h2 {
        font-size: 1.75rem;
    }
}