/* ===== ROOT VARIABLES ===== */
:root {
    --primary-blue: #003D82;
    --dark-blue: #002855;
    --light-blue: #E8F1F8;
    --accent-blue: #0066CC;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-gray: #F5F7FA;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

.logo {
    animation: fadeIn 0.5s ease;
}

.brand-text {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}

.nav-appointment {
    background: var(--light-blue);
    color: var(--primary-blue) !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    border: none !important;
}

.nav-appointment:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
}

.nav-login {
    color: var(--accent-blue) !important;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #003D82 0%, #0066CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="600"/><circle cx="800" cy="200" r="300" fill="rgba(255,255,255,0.03)"/><circle cx="400" cy="450" r="200" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ===== ALPHABET SEARCH ===== */
.alphabet-search {
    padding: 60px 0;
    background: var(--white);
}

.alphabet-search h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

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

.alphabet-grid button {
    padding: 12px;
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alphabet-grid button:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.search-box button {
    padding: 12px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--dark-blue);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: var(--bg-gray);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.content-text {
    animation: fadeIn 0.8s ease;
}

.large-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.highlight {
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e7ef 0%, #c4d3e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.healthcare-professional {
    background: linear-gradient(135deg, #2c5f87 0%, #1a3d5c 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="200" cy="150" r="80" fill="rgba(255,255,255,0.1)"/><rect x="120" y="250" width="160" height="150" rx="10" fill="rgba(255,255,255,0.1)"/></svg>');
    background-blend-mode: overlay;
}

.patient-care {
    background: linear-gradient(135deg, #4a7c9e 0%, #2d5975 100%);
}

.medical-consultation {
    background: linear-gradient(135deg, #5a8dad 0%, #3b6b8a 100%);
}

.consultation {
    background: linear-gradient(135deg, #6a9dbd 0%, #4b7d9a 100%);
}

.nurse-care {
    background: linear-gradient(135deg, #3a6d8e 0%, #2b5d7e 100%);
}

.laboratory {
    background: linear-gradient(135deg, #2a5d7e 0%, #1b4d6e 100%);
}

.research-team {
    background: linear-gradient(135deg, #4a7d9e 0%, #3a6d8e 100%);
}

.community-care {
    background: linear-gradient(135deg, #5a8dae 0%, #4a7d9e 100%);
}

.medical-professional {
    background: linear-gradient(135deg, #6a9dbe 0%, #5a8dae 100%);
}

/* ===== LOCATIONS ===== */
.locations-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.locations-section h2 {
    margin-bottom: 20px;
}

.locations-section > .container > p {
    max-width: 700px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.location-card {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
}

.location-card.arizona {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, #d4925f 0%, #b87333 100%);
}

.location-card.florida {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, #5fa7d4 0%, #3385b8 100%);
}

.location-card.minnesota {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, #7aa75f 0%, #4d8533 100%);
}

.location-card.health-system {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, #a75f92 0%, #853375 100%);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
}

.location-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

/* ===== FEATURED CARE ===== */
.featured-care {
    padding: 80px 0;
}

.featured-care h2 {
    margin-bottom: 15px;
}

.featured-care > .container > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
}

.care-item {
    background: var(--white);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.care-item:hover {
    background: var(--light-blue);
}

.care-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.care-item span {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--dark-blue);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.modal-footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.modal-footer-text a {
    color: var(--accent-blue);
    font-weight: 600;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

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

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

/* ===== PAGE SPECIFIC STYLES ===== */

/* Patient Care Page */
.page-header {
    padding: 80px 0 60px;
    background: var(--bg-gray);
}

.page-header h1 {
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 900px;
    line-height: 1.7;
}

.video-section {
    padding: 60px 0;
}

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

.img-wrapper {
    width: 100%;
    height: 400px;          
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 0.5rem;
}

.img-wrapper img {
    height: 100%;
    object-fit: cover;    
    object-position: center;

}

.video-caption {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.video-subtitle {
    color: var(--text-gray);
}

.link-arrow {
    color: var(--accent-blue);
    font-weight: 500;
    display: inline-block;
    margin-top: 15px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.testimonial-section {
    padding: 80px 0;
    background: var(--light-blue);
}

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

.testimonial p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial footer div {
    text-align: left;
}

.testimonial footer strong {
    display: block;
    margin-bottom: 5px;
}

.testimonial footer span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.next-steps {
    padding: 80px 0;
    background: var(--bg-gray);
}

.next-steps h2 {
    margin-bottom: 10px;
}

.next-steps h3 {
    margin-bottom: 40px;
    color: var(--text-gray);
}

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

.step-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h4 {
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Page */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #003D82 0%, #0066CC 100%);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.hero-subtitle-large {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
}

.about-hero-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, #4a7d9e 0%, #2d5975 100%);
    margin-top: 60px;
}

.mission-section {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-gray);
}

.mission-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.7;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 40px;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0 40px;
}

.feature-item h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.stats-section {
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 400px;
    margin: 0 auto;
}

.community-section {
    padding: 60px 0;
    background: var(--bg-gray);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.community-image,
.community-image-2 {
    height: 350px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5a8dae 0%, #3a6d8e 100%);
}

.people-section {
    padding: 80px 0;
}

.quote-section {
    padding: 80px 0;
    background: var(--bg-gray);
    text-align: center;
}

.quote-section blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.quote-section p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.quote-section footer {
    text-align: center;
}

.quote-section strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.quote-section span {
    color: var(--text-gray);
}

.discover-section {
    padding: 80px 0;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.discover-card {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-card:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.discover-card h4 {
    margin-bottom: 15px;
}

.discover-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-header {
    padding: 80px 0;
    background: var(--light-blue);
    text-align: center;
}

.logo-large {
    margin: 0 auto 30px;
}

.contact-header h1 {
    margin-bottom: 15px;
}

.appointment-options {
    padding: 60px 0;
}

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

.option-card {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.option-card h3 {
    margin-bottom: 15px;
}

.option-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.option-card .arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.appointment-form-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-description {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.phone-scheduling {
    padding: 80px 0;
}

.location-contacts {
    margin: 40px 0;
}

.location-contacts h3 {
    margin-bottom: 20px;
}

.contact-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.contact-location h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.hours {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-location h5 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.health-system-info {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.international-patients {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.resources-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

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

.resource-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.resource-card h4 {
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.resource-card .arrow {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        height: 500px;
    }

    .alphabet-grid {
        grid-template-columns: repeat(9, 1fr);
    }

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

    .contact-locations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .alphabet-grid {
        grid-template-columns: repeat(7, 1fr);
    }

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

    .modal-content {
        padding: 30px 20px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .stat-number {
        font-size: 3rem;
    }
}