/* ========================================
   Main Page CSS - 해운대아산내과의원
   ======================================== */

/* ========================================
   Quick Menu (퀵메뉴)
   ======================================== */
.quick-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    padding: 18px 10px;
    background-color: #d98a3c;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-item:first-child {
    border-radius: 15px 15px 0 0;
}

.quick-item:last-of-type {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

.quick-item {
    position: relative;
    overflow: visible;
}

.quick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c47a2c;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.quick-item:hover::before {
    opacity: 1;
}

.quick-item img,
.quick-item span {
    position: relative;
    z-index: 1;
}


.quick-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    object-fit: contain;
}

.quick-item span {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
}

.quick-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 90px;
    padding: 15px 10px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #333;
    margin-top: -15px;
    border-radius: 0 0 15px 15px;
    position: relative;
    z-index: -1;
    padding-top: 25px;
}

.quick-top:hover {
    background-color: #f5f5f5;
}

/* Quick Menu Responsive */
@media (max-width: 768px) {
    .quick-menu {
        right: 10px;
        border-radius: 8px;
    }

    .quick-item {
        width: 55px;
        padding: 10px 6px;
    }

    .quick-item img {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }

    .quick-item span {
        font-size: 9px;
    }

    .quick-top {
        width: 55px;
        padding: 8px 6px;
        padding-top: 18px;
        margin-top: -10px;
        font-size: 10px;
    }
}

/* ========================================
   Section 1: Hero Slider
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

/* Hero Background Images */
.hero-bg-1 {
    background-image: url('../images/hero-slide-01.png');
}

.hero-bg-2 {
    background-image: url('../images/hero-slide-02.png');
}

.hero-bg-3 {
    background-image: url('../images/clinic-bg.png');
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
}

.hero-content .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 800;
    font-size: 68px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 20;
}

.hero-controls-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.hero-current,
.hero-total {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    min-width: 20px;
}

.hero-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    width: 33.33%;
    background: var(--color-main);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hero-arrows {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

/* ========================================
   Section 2: Director Introduction
   ======================================== */
.director-section {
    position: relative;
    padding: 120px 0 0;
    padding-bottom: 0;
    background: #fff;
    overflow: hidden;
}

.director-bg-text {
    position: absolute;
    top: 25%;
    right: -50px;
    transform: translateY(-50%);
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 900;
    font-size: 300px;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 20px;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.director-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.director-info {
    flex: 1;
    max-width: 500px;
}

.director-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.director-position {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-medium);
}

.director-name {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--color-main);
    letter-spacing: 15px;
}

.career-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-main);
    display: inline-block;
}

.career-list {
    list-style: none;
}

.career-list li {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
}

.career-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: var(--color-main);
    border-radius: 50%;
}

.career-sub {
    font-size: 14px;
    color: var(--text-light);
}

.director-photo {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    align-self: flex-end;
    margin-bottom: 0;
}

.director-photo img {
    max-width: 450px;
    height: auto;
    display: block;
    vertical-align: bottom;
}

/* Research Toggle Button */
.research-toggle {
    position: absolute;
    left: 90px;
    top: calc(50% - 180px);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #222;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.research-toggle:hover {
    background-color: #000;
    transform: translateY(-50%) scale(1.1);
}

.toggle-icon {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.toggle-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.toggle-icon::after {
    width: 2px;
    height: 10px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.research-toggle.active .toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Director Research Section */
.director-research {
    position: absolute;
    right: 780px;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 15;
}

.director-research.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.research-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.research-subtitle {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.research-list {
    list-style: none;
}

.research-list li {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-medium);
    padding-left: 12px;
    position: relative;
    margin-bottom: 5px;
}

.research-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-main);
    font-weight: 700;
}

/* ========================================
   Section 3: Clinic Introduction
   ======================================== */
.clinic-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.clinic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/clinic-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.clinic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.clinic-section .container {
    position: relative;
    z-index: 10;
    max-width: 100%;
    padding: 0;
}

.clinic-header {
    text-align: center;
    margin-bottom: 40px;
}

.clinic-subtitle {
    display: block;
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.clinic-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: #fff;
}

.clinic-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.clinic-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.clinic-image {
    width: 600px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.clinic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.clinic-desc {
    width: 380px;
    flex-shrink: 0;
}

.clinic-desc-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--color-main);
    margin-bottom: 25px;
    transition: opacity 0.5s ease;
}

.clinic-desc-text {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    transition: opacity 0.5s ease;
}

.clinic-menu {
    flex-shrink: 0;
    width: 200px;
}

.clinic-menu-list {
    list-style: none;
    position: relative;
}

/* 세로 연결선 */
.clinic-menu-list::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.clinic-menu-item {
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.menu-text {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.clinic-menu-item.active .menu-dot,
.clinic-menu-item:hover .menu-dot {
    background: var(--color-main);
}

.clinic-menu-item.active .menu-text,
.clinic-menu-item:hover .menu-text {
    color: var(--color-main);
    font-weight: 700;
}

/* ========================================
   Section 4: Equipment Introduction
   ======================================== */
.equipment-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fff 0%, #fff 63%, #F1F1F1 63%, #F1F1F1 100%);
}

.equipment-header {
    text-align: center;
    margin-bottom: 80px;
}

.equipment-subtitle {
    display: block;
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.equipment-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--text-dark);
}

.equipment-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
}

.equipment-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}

.equipment-arrow img {
    width: auto;
    height: auto;
}

.equipment-slider {
    flex: 1;
    overflow: hidden;
    padding-top: 50px;
    margin-top: -50px;
}

.equipment-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    align-items: flex-end;
    padding-top: 50px;
}

.equipment-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.equipment-slide.active {
    transform: translateY(-30px);
    z-index: 10;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.equipment-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAEAEA;
}

.equipment-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.equipment-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    transition: all 0.3s ease;
}

.equipment-slide.active .equipment-info {
    background: var(--color-sub2);
}

.equipment-category {
    display: block;
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.equipment-slide.active .equipment-category {
    color: rgba(255, 255, 255, 0.7);
}

.equipment-name {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.equipment-slide.active .equipment-name {
    color: var(--color-main);
}

/* ========================================
   Section 5: Location & Hours
   ======================================== */
.location-section {
    padding: 0;
    background: #F4ECE7;
}

.location-section .container {
    max-width: 100%;
    padding: 0;
}

.location-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.location-info {
    flex: 1;
    padding: 80px 60px 80px 220px;
    background: #F4ECE7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-block {
    margin-bottom: 40px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 140px;
}

.info-icon {
    width: 24px;
    height: 24px;
}

.info-title {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
}

.info-content {
    flex: 1;
}

.info-address {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.info-sub {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
}

.info-map-small {
    margin-left: 160px;
    margin-top: 20px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.info-map-small img {
    width: 100%;
    height: auto;
}

.hours-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 350px;
}

.hours-table th,
.hours-table td {
    font-family: 'NanumSquareNeo', sans-serif;
    font-size: 15px;
    padding: 6px 0;
    text-align: left;
}

.hours-table th {
    font-weight: 700;
    color: var(--text-medium);
    width: auto;
    padding-right: 15px;
    white-space: nowrap;
}

.hours-table td {
    font-weight: 400;
    color: var(--text-dark);
}

.hours-table th::after {
    content: '|';
    margin-left: 15px;
    color: var(--text-light);
}

.hours-notice {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

.info-phone {
    font-family: 'NanumSquareNeo', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--color-main);
    letter-spacing: 2px;
}

.location-map {
    flex: 1;
    overflow: hidden;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 카카오맵 하단 정보 숨김 */
.location-map .wrap_controllers,
.location-map .cont {
    display: none !important;
}

/* ========================================
   Responsive Adjustments (Desktop First)
   ======================================== */
@media (max-width: 1200px) {
    .director-bg-text {
        font-size: 200px;
    }

    .director-photo img {
        max-width: 350px;
    }

    .clinic-wrapper {
        flex-direction: column;
    }

    .clinic-menu {
        width: 100%;
    }

    .clinic-menu-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .clinic-menu-item {
        flex: 0 0 auto;
        padding: 12px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 30px;
    }

    .clinic-menu-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .location-wrapper {
        flex-direction: column;
    }

    .location-map {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .director-section {
        padding: 80px 0 0;
    }

    .director-wrapper {
        gap: 40px;
    }

    .director-name {
        font-size: 38px;
        letter-spacing: 10px;
    }

    .clinic-section {
        padding: 80px 0;
    }

    .clinic-header {
        margin-left: 40px;
    }

    .clinic-title {
        font-size: 38px;
    }

    .clinic-wrapper {
        gap: 40px;
    }

    .clinic-image {
        width: 450px;
        height: 330px;
    }

    .clinic-desc-title {
        font-size: 24px;
    }

    .clinic-desc-text {
        font-size: 16px;
    }

    .clinic-menu {
        margin-right: 40px;
        width: 180px;
    }

    .menu-text {
        font-size: 16px;
    }

    .equipment-section {
        padding: 80px 0;
    }

    .equipment-title {
        font-size: 38px;
    }

    .location-info {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    /* 히어로 섹션 */
    .hero-section {
        min-height: 500px;
    }

    .hero-content .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-controls-inner {
        padding: 0 20px;
    }

    .hero-progress {
        width: 120px;
    }

    /* 의료진 섹션 */
    .director-section {
        padding: 60px 0 0;
    }

    .director-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .director-info {
        max-width: 100%;
        padding: 0 20px;
    }

    .director-title {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .director-name {
        font-size: 32px;
        letter-spacing: 8px;
    }

    .director-position {
        font-size: 16px;
    }

    .career-title {
        font-size: 20px;
    }

    .career-list li {
        font-size: 14px;
        text-align: left;
    }

    .director-bg-text {
        display: none;
    }

    .director-photo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .director-photo img {
        max-width: 280px;
    }

    .research-toggle {
        left: calc(50% - 30px);
        top: 20px;
        transform: translateX(-50%);
        width: 20px;
        height: 20px;
    }

    .research-toggle:hover {
        transform: translateX(-50%) scale(1.1);
    }

    .toggle-icon {
        width: 8px;
        height: 8px;
    }

    .toggle-icon::before {
        width: 8px;
    }

    .toggle-icon::after {
        height: 8px;
    }

    .director-research {
        position: relative;
        right: auto;
        bottom: auto;
        width: 99%;
        max-width: none;
        margin: 20px auto 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background-color: transparent;
    }

    .director-research.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 25px;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        transform: none;
        text-align: left;
    }

    .research-title {
        font-size: 18px;
        text-align: left;
    }

    .research-subtitle {
        text-align: left;
    }

    .research-list {
        text-align: left;
    }

    .research-list li {
        font-size: 13px;
        text-align: left;
    }

    /* 진료 섹션 */
    .clinic-section {
        padding: 60px 0;
    }

    .clinic-section .container {
        padding: 0;
    }

    .clinic-header {
        margin-left: 20px;
        margin-bottom: 30px;
        text-align: center;
    }

    .clinic-subtitle {
        font-size: 14px;
    }

    .clinic-title {
        font-size: 28px;
    }

    .clinic-wrapper {
        flex-direction: column-reverse;
        padding-right: 0;
        gap: 30px;
    }

    .clinic-content {
        flex-direction: column;
        gap: 20px;
    }

    .clinic-image {
        width: 100%;
        height: 250px;
        border-radius: 0;
    }

    .clinic-desc {
        padding: 0 20px;
        text-align: center;
    }

    .clinic-desc-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .clinic-desc-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .clinic-desc-text br {
        display: none;
    }

    .clinic-menu {
        width: 100%;
        margin-right: 0;
        padding: 0 20px;
    }

    .clinic-menu-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .clinic-menu-list::before {
        display: none;
    }

    .clinic-menu-item {
        flex: 0 0 auto;
        padding: 10px 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
    }

    .clinic-menu-item.active {
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-dot {
        display: none;
    }

    .menu-text {
        font-size: 13px;
    }

    /* 장비 섹션 */
    .equipment-section {
        padding: 60px 0;
    }

    .equipment-header {
        margin-bottom: 40px;
    }

    .equipment-subtitle {
        font-size: 14px;
    }

    .equipment-title {
        font-size: 28px;
    }

    .equipment-slider-wrapper {
        gap: 10px;
        padding: 0 10px;
    }

    .equipment-arrow img {
        width: 30px;
    }

    .equipment-slider {
        overflow: hidden;
        padding-top: 0;
        margin-top: 0;
    }

    .equipment-track {
        gap: 0;
        padding-top: 0;
    }

    .equipment-slide {
        flex: 0 0 100%;
        min-width: 100%;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .equipment-slide.active {
        transform: none !important;
    }

    .equipment-image {
        height: 280px;
    }

    .equipment-info {
        padding: 15px 20px;
    }

    .equipment-category {
        font-size: 12px;
    }

    .equipment-name {
        font-size: 16px;
    }

    /* 위치 섹션 */
    .location-wrapper {
        flex-direction: column;
    }

    .location-info {
        padding: 40px 20px;
    }

    .info-row {
        flex-direction: column;
        gap: 10px;
    }

    .info-header {
        width: auto;
    }

    .info-title {
        font-size: 18px;
    }

    .info-phone {
        font-size: 24px;
    }

    .info-map-small {
        margin-left: 0;
        max-width: 100%;
    }

    .location-map {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .director-name {
        font-size: 26px;
        letter-spacing: 5px;
    }

    .director-photo img {
        max-width: 220px;
    }

    .clinic-title {
        font-size: 24px;
    }

    .equipment-title {
        font-size: 24px;
    }

    .equipment-image {
        height: 250px;
    }
}
