@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #002e5d; /* Darker, richer navy from screenshot */
    --accent-blue: #0ea5e9;
    --accent-blue-light: #38bdf8;
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-gray: #f9fafb;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --section-padding: 120px 0; /* More generous white space */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

/* ==========================================
   SECTION 1: HERO
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 40px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    line-height: 1.35;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.btn-inquiry {
    display: inline-block;
    padding: 16px 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-inquiry:hover {
    background: #fff;
    color: #1a427a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* ==========================================
   SECTION 2: INTRO TAGLINE
   ========================================== */
.intro-tagline {
    padding: 90px 0;
    text-align: center;
    background: var(--bg-light);
}

.intro-tagline h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ==========================================
   SECTION 3: STATISTICS
   ========================================== */
.stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #162d4f 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.stats-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 50px;
    font-weight: 500;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    padding: 20px 10px;
    border-radius: 0;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.stat-item h3 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: var(--text-light);
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.stat-item h3 sup {
    font-size: 0.45em;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-left: 2px;
}

.stat-item p {
    font-size: 0.75rem;
    opacity: 0.75;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================
   SECTION 4: DIRECTOR PROFILE
   ========================================== */
.director {
    position: relative;
    padding: 120px 0;
    background-image: url('image/image 144.png');
    background-size: cover;
    background-position: left center; /* Prioritize showing the doctor on the left */
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Gradient Overlay - Reversed to cover right side for text readability */
.director::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; 
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.8) 60%, transparent 100%);
    z-index: 1;
}

.director-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end; /* Align content to the far right */
    max-width: 100% !important; /* Break container limit to stick to edge */
    padding-right: 5%; /* Leave just a small professional margin */
    width: 100%;
}

.director-info-box {
    max-width: 700px; /* Allow a bit more width for the box */
    padding: 0;
    background: transparent; /* Transparent to let gradient show through */
    border: none;
    box-shadow: none;
    text-align: right; /* Align all text to the right as in photo */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Push all items (logo, grid) to the right */
}

.director-logo {
    margin-bottom: 28px;
    max-width: 200px;
    margin-right: 0;
}

.director-name-box {
    margin-bottom: 24px;
}

.director-name-box .title-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.director-name-box h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--text-dark);
    letter-spacing: -0.02em;
    font-weight: 800;
}

.director-desc {
    font-size: 1.4rem;
    color: #111; /* Darker, more professional text */
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 500;
}

.director-desc strong {
    font-weight: 800;
    color: var(--text-dark);
}

.director-sub-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 450px; 
}

.director-sub-images img {
    border-radius: 0;
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.director-sub-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .director::before {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .director {
        padding: 80px 0;
        background-position: center;
    }
    .director::before {
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
    }
    .director-content {
        justify-content: center;
        text-align: center;
    }
    .director-info-box {
        max-width: 100%;
    }
    .director-sub-images {
        margin: 0 auto;
    }
}

/* ==========================================
   SECTION 5: COMMITMENT GALLERY
   ========================================== */
.commitment {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.commitment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/3DED5C63-749F-4A48-A357-847525BB1292_1_105_c (1).png');
    background-size: cover;
    background-position: center 20%;
    filter: brightness(0.35) blur(8px);
    z-index: 1;
    transform: scale(1.1);
}

.commitment-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px !important;
}

.commitment-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.commitment-subtitle {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--text-light);
    margin-bottom: 70px;
    font-weight: 500;
    opacity: 0.95;
}

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

.commitment-item {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.commitment-item:hover {
    transform: translateY(-8px);
}

.commitment-item img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.commitment-item:hover img {
    transform: scale(1.05);
}

.commitment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 24px;
    z-index: 3;
    pointer-events: none;
}

.commitment-item:hover .commitment-overlay,
.commitment-item.active .commitment-overlay {
    opacity: 1;
}

.overlay-number {
    width: 44px;
    height: 44px;
    border: 2px solid var(--accent-blue-light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.overlay-text {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.overlay-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    line-height: 1.4;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.15s;
}

.commitment-item:hover .overlay-number,
.commitment-item:hover .overlay-text,
.commitment-item:hover .overlay-desc,
.commitment-item.active .overlay-number,
.commitment-item.active .overlay-text,
.commitment-item.active .overlay-desc {
    transform: translateY(0);
}

/* ==========================================
   SECTION 6: REPEATED TAGLINE
   ========================================== */
.repeated-tagline {
    padding: 120px 0;
    text-align: center;
    background: #fff;
}

.repeated-tagline h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* ==========================================
   SECTION 7: DOCTORS TEAM
   ========================================== */
.doctors {
    padding: 120px 0;
    background: #fff;
    text-align: center;
    width: 100%;
}

.doctors .container {
    max-width: 1600px;
    width: 95%;
}

.doctors-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 80px;
    font-weight: 700;
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.doctor-card {
    position: relative;
    text-align: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.doctor-card:hover {
    transform: none;
    box-shadow: none;
}

.doctor-img-wrap {
    width: 100%;
    margin-bottom: 24px;
}

.doctor-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: none;
}

.doctor-card:hover img {
    transform: none;
}

.doctor-info {
    padding: 10px 0;
}

.doctor-name {
    position: static;
    background: none;
    color: var(--text-dark);
    padding: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* ==========================================
   SECTION 8: PARTNER HOSPITALS
   ========================================== */
.partners {
    padding: 0;
}

.partners-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3050 100%);
    color: var(--text-light);
    padding: 48px 0;
    text-align: center;
}

.partners-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 70px 0;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    max-height: 80px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partners-grid img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
}

/* ==========================================
   SECTION 9: SURGERY VISUAL
   ========================================== */
.surgery-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 85vh;
    min-height: 600px;
}

.surgery-visual .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.surgery-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.surgery-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 1000px;
}

.surgery-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.surgery-content p {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ==========================================
   SECTION 10: EQUIPMENT SHOWCASE
   ========================================== */
.equipment {
    padding: 100px 0;
    background: #f5f2eb;
}

.equipment-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.equipment-text {
    flex: 1;
    text-align: left;
}

.equipment-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.equipment-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.equipment-visual {
    flex: 1.2;
}

.equipment-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.equip-img {
    background: #fff;
    padding: 24px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    transition: var(--transition);
}

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

.equip-img img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/* ==========================================
   SECTION 11: HEALING QUOTE
   ========================================== */
.healing {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #162d4f 100%);
    color: var(--text-light);
    padding: 120px 0;
    text-align: center;
}

.healing-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.healing-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ==========================================
   SECTION 12: CLINIC INTERIOR
   ========================================== */
.interior {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.interior-title-box {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.interior-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #1a427a; /* Darker blue */
    font-weight: 800;
    line-height: 1.25;
}

.interior-subtitle {
    font-size: 1.1rem;
    color: #4a7ab5; /* Softer blue */
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.6;
    font-weight: 400;
}

.interior-carousel-wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.interior-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-interior 40s linear infinite;
}

.interior-slide {
    width: 350px;
    height: 500px;
    flex-shrink: 0;
}

.interior-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

@keyframes scroll-interior {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-370px * 4)); }
}

/* Removed pause on hover as requested */
/* .interior-track:hover {
    animation-play-state: paused;
} */

/* ==========================================
   SECTION 13: VISION STATEMENT
   ========================================== */
.vision {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligned to left */
    text-align: left;
    overflow: hidden;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Slightly lighter as requested by visual? No, keeping 0.5-0.6 for contrast */
    z-index: 1;
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.vision-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 90%;
    max-width: 1200px;
    margin-left: 10%; /* Proper spacing from left edge */
}

.vision-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.vision-name {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ==========================================
   SECTION 14: MEDIA / EDUCATION
   ========================================== */
.media {
    padding: 100px 0;
    background: #fff;
}

.media-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #1a427a;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 60px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.media-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #000;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}

.media-item:hover img {
    opacity: 1;
}

/* Play Button Overlay */
.media-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    z-index: 2;
    transition: var(--transition);
}

.media-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid var(--primary-blue);
    z-index: 3;
    transition: var(--transition);
}

.media-item:hover::before {
    background: #FF0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.media-item:hover::after {
    border-left-color: #fff;
}

/* ==========================================
   SECTION 15: FOOTER VISUAL
   ========================================== */
.footer-visual {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.footer-contact-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.contact-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.contact-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    min-width: 220px;
    font-size: 1.1rem;
}

.btn-contact.kakao {
    background: #FEE500;
    color: #191919;
}

.btn-contact.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    filter: brightness(1.05);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    padding: 48px 0;
    text-align: center;
    background: var(--primary-blue);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .director-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stat-item h3 {
        font-size: 1.8rem;
    }
    .container {
        padding: 0 16px;
    }
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 8px;
    }
    .equipment-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .equipment-text {
        text-align: center;
    }
    .equipment-collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .interior-slide {
        width: 250px;
        height: 380px;
    }
    @keyframes scroll-interior {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-270px * 4)); }
    }
    .doctors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .doctors-section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    .doctor-name {
        font-size: 1.2rem;
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .director-info-box {
        padding: 32px;
    }
    .healing {
        padding: 80px 0;
    }
    .vision {
        padding: 80px 0;
        justify-content: center;
        text-align: center;
    }
    .vision-content {
        margin-left: 0;
    }
    .repeated-tagline {
        padding: 80px 0;
    }
    .intro-tagline {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .stat-item h3 {
        font-size: 1.5rem;
    }
    .commitment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 4px;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
