/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #5B7B2D;
    --green-dark: #3E5A1A;
    --green-light: #7A9E4A;
    --gold: #B8963E;
    --gold-light: #D4B65E;
    --dark: #222222;
    --dark-bg: #2C2C2C;
    --gray: #666666;
    --gray-light: #F5F5F3;
    --white: #FFFFFF;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-desktop ul {
    display: flex;
    gap: 8px;
}

.nav-desktop ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-desktop ul li a:hover {
    color: var(--green);
    background: rgba(91, 123, 45, 0.06);
}

/* Dropdown Sub-menu */
.nav-desktop ul li.has-sub {
    position: relative;
}

.nav-desktop .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #1e3a0a;
    border-radius: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform-origin: top center;
    transition: opacity 0.3s ease, visibility 0.3s, max-height 0.4s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-desktop ul li.has-sub:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
}

.nav-desktop .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav-desktop .sub-menu li:last-child {
    border-bottom: none;
}

.nav-desktop .sub-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 1px rgba(255,255,255,0.5);
    white-space: nowrap;
    border-radius: 0;
    letter-spacing: 0.3px;
}

.nav-desktop .sub-menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.btn-reserve {
    background: var(--green);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-reserve:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--green);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--green-dark);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-header .logo img {
    height: 32px;
}

.close-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.mobile-nav ul li a:hover {
    color: var(--green);
    padding-left: 8px;
}

/* Mobile sub-menu accordion */
.mo-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.mo-arrow {
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
}

.mo-has-sub.active .mo-arrow {
    transform: rotate(45deg);
}

.mo-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
    list-style: none;
    padding: 0;
    background: #f8f8f6;
    border-radius: 8px;
    margin-bottom: 4px;
}

.mo-has-sub.active .mo-sub-menu {
    max-height: 500px;
}

.mo-sub-menu li a {
    padding: 11px 20px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--gray) !important;
    border-bottom: 1px solid #eee !important;
}

.mo-sub-menu li:last-child a {
    border-bottom: none !important;
}

.mo-sub-menu li a:hover {
    color: var(--green) !important;
    padding-left: 26px !important;
}

.btn-reserve-mobile {
    display: block;
    text-align: center;
    background: var(--green);
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    transition: var(--transition);
}

.btn-reserve-mobile:hover {
    background: var(--green-dark);
}

/* ===== Floating Social ===== */
.floating-social {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.social-icon:hover {
    transform: scale(1.12);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.naver {
    background: #03C75A;
}

.social-icon.kakao {
    background: #FEE500;
    color: #3C1E1E;
}

.naver-n {
    font-weight: 900;
    font-size: 16px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 450px;
    max-height: 620px;
    overflow: hidden;
    margin-top: 75px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-bg-1,
.hero-bg-white,
.hero-bg-2,
.hero-bg-3,
.hero-bg-4,
.hero-bg-5 {
    background:
        radial-gradient(ellipse at 75% 50%, rgba(91,123,45,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(184,150,62,0.04) 0%, transparent 50%),
        linear-gradient(170deg, #ffffff 0%, #f8f8f5 30%, #f2f1ec 60%, #eceae3 100%);
}

.hero-slide-white .hero-doctor img {
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.18)) drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

/* Photo background slide */
.hero-bg-photo {
    background-size: 60% auto;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero-bg-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.97) 35%, rgba(255,255,255,0.6) 65%, rgba(255,255,255,0) 85%);
}

/* White slide: dark text */
.hero-content-dark .hero-subtitle {
    color: var(--green);
    font-weight: 500;
}

.hero-content-dark .hero-title {
    color: #1a1a1a;
}

.hero-content-dark .hero-desc {
    color: #444444;
}

/* White slide: adjust controls */
.hero-controls.controls-dark .hero-control-btn {
    border-color: #333;
    color: #1a1a1a;
}

.hero-controls.controls-dark .hero-control-btn:hover {
    background: rgba(0,0,0,0.1);
}

.hero-controls.controls-dark .indicator {
    color: #888;
}

.hero-controls.controls-dark .indicator.active {
    color: #1a1a1a;
    font-weight: 700;
}

.hero-controls.controls-dark .indicator.active::after {
    background: #1a1a1a;
}


.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 18%;
    max-width: 55%;
}

/* Hero Doctor Image */
.hero-doctor {
    position: absolute;
    right: 22%;
    top: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-doctor img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3));
}

.hero-subtitle {
    font-size: 16px;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
    white-space: nowrap;
}

.hero-desc {
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
    font-weight: 500;
    white-space: nowrap;
}

/* Hero slide-in animation */
.hero-slide.active .hero-content {
    animation: heroSlideIn 0.8s ease forwards;
}

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

.hero-slide.active .hero-doctor,
.hero-slide.active .hero-side-img {
    animation: heroFadeIn 1s ease 0.2s forwards;
    opacity: 0;
}

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

/* Hero Schedule (Slide 2) */
.hero-schedule {
    margin-top: 16px;
}

.hero-schedule dl {
    display: flex;
    gap: 16px;
    margin-bottom: 6px;
}

.hero-schedule dt {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 110px;
}

.hero-schedule dd {
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

/* Hero Right Image (Slide 2) */
.hero-side-img {
    position: absolute;
    right: 22%;
    top: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-side-img > img {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}


/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 18%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-control-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-control-btn:hover {
    background: rgba(255,255,255,0.15);
}

.hero-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    transition: var(--transition);
}

.indicator.active {
    color: var(--white);
}

.indicator.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--white);
}

/* ===== Staff Section ===== */
.staff-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.staff-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: center;
}

.staff-photo {
    position: relative;
    margin-left: -420px;
    margin-right: 40px;
}

.staff-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.staff-info {
    padding-top: 10px;
}

.staff-label {
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.staff-name {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 36px;
    letter-spacing: 6px;
}

.staff-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.staff-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

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

.staff-details ul li {
    font-size: 14px;
    color: var(--gray);
    line-height: 2;
    padding-left: 16px;
    position: relative;
}

.staff-details ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
}

/* ===== Clinic Carousel Section ===== */
.clinic-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.clinic-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 50px;
}

.clinic-left {
    flex: 0 0 300px;
    padding-top: 0;
    align-self: flex-start;
}

.section-title-large {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}

.text-green {
    color: var(--green);
}

.clinic-nav-arrows {
    display: flex;
    gap: 12px;
}

.clinic-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: var(--white);
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.clinic-nav-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.clinic-right {
    flex: 1;
    overflow: hidden;
}

.clinic-carousel {
    overflow: hidden;
}

.clinic-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.clinic-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    flex-shrink: 0;
}

.clinic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.clinic-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.7);
    position: relative;
}

.clinic-card-color-1 { background: linear-gradient(135deg, #4a6741 0%, #6b8f5e 100%); }
.clinic-card-color-2 { background: linear-gradient(135deg, #3a5a8c 0%, #5a80b0 100%); }
.clinic-card-color-3 { background: linear-gradient(135deg, #d4a053 0%, #e8c47a 100%); }
.clinic-card-color-4 { background: linear-gradient(135deg, #5B7B2D 0%, #7A9E4A 100%); }
.clinic-card-color-5 { background: linear-gradient(135deg, #b05070 0%, #d07090 100%); }
.clinic-card-color-6 { background: linear-gradient(135deg, #8a6aaa 0%, #a88cc8 100%); }
.clinic-card-color-7 { background: linear-gradient(135deg, #555 0%, #888 100%); }
.clinic-card-color-8 { background: linear-gradient(135deg, #8a6a3a 0%, #b89060 100%); }

.clinic-card-body {
    padding: 20px;
}

.clinic-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    background: rgba(91, 123, 45, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.clinic-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.clinic-card-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Interior Photo Section ===== */
.interior-section {
    background: transparent;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.interior-track {
    display: flex;
    gap: 12px;
    will-change: transform;
}

.interior-slide {
    flex: 0 0 auto;
    width: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.8s ease, opacity 0.8s ease, transform 0.5s ease;
}

.interior-slide.active {
    filter: grayscale(0%);
    opacity: 1;
}

.interior-slide:hover {
    transform: scale(1.02);
}

.interior-slide img {
    width: 300px;
    height: 380px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.interior-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.interior-slide.active .interior-label {
    opacity: 1;
}

.interior-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.interior-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--dark);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    pointer-events: all;
}

.interior-nav:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* ===== Location Section ===== */
.location-section {
    padding: 100px 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-map iframe {
    display: block;
}

.location-logo img {
    height: 36px;
    margin-bottom: 24px;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
}

.location-details {
    margin-bottom: 30px;
}

.address {
    font-size: 18px;
    margin-bottom: 8px;
}

.address-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.phone i {
    margin-right: 6px;
    display: inline-block;
    transform: scaleX(-1);
}

.location-hours {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 24px;
}

.location-hours h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.location-hours table {
    width: 100%;
    border-collapse: collapse;
}

.location-hours table tr td {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray);
}

.location-hours table tr td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    padding: 50px 0;
    color: #ffffff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

.footer-logo img {
    height: 180px;
}

.footer-info p {
    font-size: 17px;
    line-height: 2;
}

.copyright {
    margin-top: 12px;
    font-size: 15px !important;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--green);
    color: var(--green);
}

.footer-social .naver-n {
    font-weight: 900;
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .nav-desktop {
        display: none;
    }

    .btn-reserve {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }

    .staff-grid {
        grid-template-columns: 420px 1fr;
        gap: 30px;
    }

    .staff-photo {
        margin-left: -30px;
    }

    .staff-name {
        font-size: 32px;
    }

    .clinic-layout {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .clinic-left {
        flex: none;
        width: 100%;
        position: static;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .clinic-right {
        width: 100%;
        overflow: hidden;
    }

    .clinic-card {
        min-width: 260px;
        max-width: 260px;
    }

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

    .location-map {
        height: 300px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .interior-track {
        gap: 14px;
    }

    .interior-slide {
        width: 260px;
    }

    .interior-slide img {
        width: 260px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 380px;
        max-height: 500px;
        margin-top: 65px;
    }

    .header-inner {
        height: 65px;
        padding: 0 10px;
    }

    .logo img {
        height: 50px;
    }

    .mobile-nav {
        width: 70%;
    }

    .mobile-nav-header .logo img {
        height: 72px;
        width: auto;
        min-width: 180px;
        object-fit: contain;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 22px;
        color: #000 !important;
        font-weight: 900;
        text-shadow: 0 1px 4px rgba(255,255,255,1), 0 0 8px rgba(255,255,255,0.8);
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 13px;
        color: #1a4a00 !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 3px rgba(255,255,255,0.9);
    }

    .hero-desc {
        font-size: 13px;
        color: #111 !important;
        font-weight: 600 !important;
        white-space: normal;
        text-shadow: 0 1px 3px rgba(255,255,255,1);
    }

    .hero-schedule {
        margin-top: 10px;
    }

    .hero-schedule dl {
        gap: 8px;
        margin-bottom: 3px;
    }

    .hero-schedule dt {
        font-size: 12px;
        color: #000 !important;
        font-weight: 700;
        min-width: 85px;
        text-shadow: 0 1px 2px rgba(255,255,255,0.9);
        white-space: nowrap;
    }

    .hero-schedule dd {
        font-size: 12px;
        color: #333 !important;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(255,255,255,0.9);
        white-space: nowrap;
    }

    .hero-bg-photo {
        background-size: cover;
        background-position: center;
        opacity: 0.15;
    }

    .hero-bg-photo::after {
        display: none;
    }

    .hero-doctor {
        opacity: 0.15;
    }

    .hero-controls {
        left: 24px;
        bottom: 24px;
    }

    .staff-grid {
        display: block;
        text-align: left;
    }

    .staff-photo {
        display: none;
    }

    .staff-info {
        width: 100%;
    }

    .staff-label {
        margin-top: 0;
    }

    .staff-name {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .staff-details h4 {
        display: inline-block;
    }

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

    .staff-details ul li {
        text-align: left;
        white-space: nowrap;
        font-size: 13px;
    }

    .hero-doctor {
        right: 2%;
        height: 70%;
    }

    .floating-social {
        right: 12px;
        gap: 8px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .clinic-section,
    .location-section {
        padding: 60px 0;
    }

    .section-title-large {
        font-size: 28px;
    }

    .clinic-carousel-wrapper {
        padding-left: 20px;
    }

    .clinic-card {
        min-width: 260px;
        max-width: 260px;
    }

    .clinic-card-img {
        height: 160px;
    }

    .interior-track {
        gap: 12px;
    }

    .interior-slide {
        width: 220px;
    }

    .interior-slide img {
        width: 220px;
        height: 280px;
    }

    .interior-section {
        padding: 36px 0;
    }

    .interior-nav {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .hero-doctor {
        right: 2%;
        height: 70%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-logo img {
        height: 150px;
    }

    .footer-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .section-title-large {
        font-size: 24px;
    }
}
