/* --- [Kindergarten] Hero Section: Creative Style --- */

.kinder-hero-section {
    position: relative;
    height: 90vh;
    min-height: 800px;
    background: #ffffff;
    /* 하얀색에서 아래 그라데이션으로 자연스럽게 연결 */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    /* 헤더 공간 */
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* 텍스트 영역 */
.hero-text-area {
    flex: 1;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: #FFF5EC;
    color: var(--kinder-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.2;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 30px;
}

.hero-title .highlight {
    color: var(--kinder-orange);
    position: relative;
}

.hero-desc {
    font-size: 20px;
    color: #636366;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* 이미지 영역: 오가닉 쉐이프 (Blob) */
.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.blob-frame {
    position: relative;
    width: 500px;
    height: 500px;
    background: var(--kinder-orange);
    /* 댕댕이 엉덩이처럼 포근한 비정형 곡선 */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s linear infinite;
    overflow: visible;
    /* 정보 카드가 튀어나와야 하므로 */
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.main-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    /* 부모의 구불구불한 선을 따라감 */
    border: 10px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* 이미지 위 플로팅 카드 */
.floating-info-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20;
    animation: float-y 3s ease-in-out infinite;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--kinder-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 배경 데코레이션 */
.hero-deco {
    position: absolute;
    font-size: 40px;
    color: var(--kinder-orange);
    opacity: 0.1;
    z-index: 1;
}

.deco-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-20deg);
}

.deco-2 {
    top: 20%;
    right: 15%;
    transform: rotate(15deg);
}

.deco-3 {
    bottom: 20%;
    left: 45%;
}

/* 스크롤 유도 */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #86868b;
    font-size: 14px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #86868b;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #86868b;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* 모바일 대응 */
@media (max-width: 1024px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding-top: 24px;
    }

    .hero-desc {
        margin-bottom: 18px;
    }

    .blob-frame {
        width: 300px;
        height: 300px;
    }

    .floating-info-card {
        left: 50%;
        width: min(310px, calc(100vw - 48px));
        box-sizing: border-box;
        min-height: 86px;
        justify-content: center;
        padding: 16px 18px;
        translate: -50% 0;
        bottom: -20px;
        text-align: left;
        white-space: nowrap;
    }

    .floating-info-card > div:last-child {
        min-width: 0;
    }

    .floating-info-card strong {
        display: block;
        font-size: clamp(0.88rem, 3.8vw, 1rem);
        line-height: 1.3;
    }

    .floating-info-card p {
        margin: 4px 0 0;
        font-size: clamp(0.8rem, 3.4vw, 0.9rem);
        line-height: 1.35;
    }
}

/* --- [Kindergarten] Premium Style Guide --- */
:root {
    --kinder-orange: #E67E22;
    --kinder-bg: #ffffff;
    --kinder-light-grey: #F5F5F7;
    --kinder-text-black: #1d1d1f;
    --kinder-text-grey: #86868b;
}

/* Base Layout */
.kinder-page-wrapper {
    font-family: 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
}

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

.kinder-section {
    padding: 120px 0;
}

.kinder-checklist-section {
    padding: 112px 0;
    background: #fff;
}

.kinder-checklist-wrapper {
    padding: 72px 58px;
    border: 2px solid #eee;
    border-radius: 42px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(29, 29, 31, 0.04);
}

.kinder-checklist-wrapper h2 {
    margin: 0;
    color: var(--kinder-text-black);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 850;
    text-align: center;
}

.kinder-checklist-wrapper h2 strong {
    color: var(--kinder-orange);
}

.kinder-check-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 48px 0;
}

.kinder-check-item {
    position: relative;
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 20px 26px 20px 58px;
    border-radius: 20px;
    background: #f8f8f8;
    color: var(--kinder-text-black);
    font-weight: 800;
    line-height: 1.45;
    word-break: keep-all;
}

.kinder-check-item::before {
    position: absolute;
    left: 24px;
    color: var(--kinder-orange);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 1rem;
    font-weight: 900;
}

.kinder-check-footer {
    padding-top: 34px;
    border-top: 1px solid #eee;
    text-align: center;
}

.kinder-check-footer p {
    margin: 0;
    color: var(--kinder-text-grey);
    font-size: 1rem;
    line-height: 1.7;
}

.kinder-check-footer strong {
    color: var(--kinder-orange);
    font-size: 1.24rem;
}

.kinder-check-footer span {
    color: #aaa;
    font-size: 0.86rem;
}

.kinder-sec-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--kinder-text-black);
}

.kinder-sec-desc {
    text-align: center;
    color: var(--kinder-text-grey);
    font-size: 18px;
    margin-bottom: 80px;
    line-height: 1.6;
}

/* 1. Hero Section: Glassmorphism & Background */
.kinder-hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://picsum.photos/1920/1080?dog=1') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.kinder-hero-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kinder-hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* --- [Section 2 FINAL] Monthly Activity --- */

.monthly-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.full-wide-swiper {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
}

.monthly-swiper {
    padding: 60px 0 100px 0 !important;
    width: 100%;
    overflow: visible !important;
}

/* 카드 너비 고정 및 수축 방지 (루프 계산의 핵심) */
.monthly-swiper .swiper-slide {
    width: 360px;
    flex-shrink: 0;
    /* GPT 추천: 크기 유지 */
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.monthly-swiper .swiper-slide-active {
    transform: scale(1.15);
    z-index: 10;
}

/* [디자인 보존] 순정 명품 카드 */
.activity-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: none !important;
    height: 100%;
}

.activity-img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.activity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-info {
    padding: 35px 30px;
    text-align: center;
}

.activity-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.sub-copy {
    font-size: 14px;
    color: #86868b;
}

/* 상세 설명 (14px 일반 텍스트) */
.detail-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.4s;
}

.swiper-slide-active .detail-text {
    max-height: 120px;
    opacity: 1;
    margin-top: 15px;
}

.detail-text p {
    font-size: 14px !important;
    color: #636366 !important;
    line-height: 1.6;
    margin: 0;
}

.swiper-slide-active h3 {
    color: #E67E22;
}

/* [오렌지 타원 점] */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    opacity: 1;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    width: 24px !important;
    height: 10px !important;
    border-radius: 5px !important;
    background: #E67E22 !important;
}

.monthly-swiper .swiper-button-next,
.monthly-swiper .swiper-button-prev {
    color: #E67E22 !important;
}

/* --- [Kindergarten] 3. Doggy Adventure Map (Final & Fixed) --- */

:root {
    --kinder-orange: #E67E22;
}

.schedule-bg-full {
    /* [핵심] 배경 그라데이션을 브라우저 끝까지 확장 */
    background:
        radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom,
            #FFF9E6 0%,
            /* 아침 */
            #E6F7FF 25%,
            /* 오전 */
            #BAE7FF 50%,
            /* 낮 */
            #FFD8B8 75%,
            /* 오후 */
            #FF9A9E 90%,
            /* 저녁 */
            #2C3E50 100%
            /* 밤 */
        ) !important;
    background-size: 40px 40px, 100% 100% !important;
    padding: 120px 0;
}

/* 기존 wrapper의 배경과 border-radius는 삭제하거나 투명하게 만듭니다 */
.kinder-schedule-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent !important;
    /* 배경은 밖으로 나갔으니 투명하게 */
}

/* --- [하이라이트] 배경 거대 텍스트 스타일 --- */
.time-bg-text {
    position: absolute;
    font-size: clamp(150px, 20vw, 350px);
    /* 화면 크기에 따라 유동적으로 변함 */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    /* 아주 은은하게 */
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    /* 클릭 방지 */
    text-transform: uppercase;
    font-style: italic;
    /* 약간의 속도감 추가 */
}

/* --- [수정] Morning 글자 확실하게 보이게 하기 --- */
.time-bg-text.morning {
    top: 150px;
    left: 8%;
    /* 화면 안쪽으로 좀 더 당겼습니다 */

    /* [핵심] 배경 연노랑색보다 확실히 진한 '음영' 색상으로 교체 */
    color: rgba(230, 126, 34, 0.12) !important;
    /* 50K 오렌지색에 투명도 12% */

    font-weight: 950;
    /* 더 두껍게! */
    letter-spacing: -5px;
    /* 글자 간격을 좁혀서 더 덩어리감 있게 */
    display: block !important;
    /* 혹시 안 보일까봐 강제 표시 */
}

/* Afternoon과 Night도 밸런스를 맞추기 위해 살짝 보정 */
.time-bg-text.afternoon {
    top: 42%;
    right: 5%;
    color: rgba(255, 255, 255, 0.2) !important;
    /* 흰색 투명도 높임 */
}

.time-bg-text.night {
    bottom: 5%;
    left: 8%;
    color: rgba(255, 255, 255, 0.1) !important;
}

/* S자 경로 SVG */
.kinder-map-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.kinder-journey-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.kinder-step {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
}

/* S자 배치를 위한 황금 비율 */
.pos-1 {
    justify-content: flex-start;
    padding-left: 5%;
}

.pos-2 {
    justify-content: flex-end;
    padding-right: 8%;
}

.pos-3 {
    justify-content: center;
}

.pos-4 {
    justify-content: flex-start;
    padding-left: 12%;
}

.pos-5 {
    justify-content: flex-end;
    padding-right: 5%;
}

/* --- [핵심 수정 1] 카드 자체는 overflow를 풀어서 팝업이 나오게 함 --- */
.kinder-travel-card {
    width: 420px;
    background: #ffffff;
    border-radius: 30px;
    /* Outer border-radius */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: visible !important;
    /* [해결] 아이콘 튀어나오게 허용 */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kinder-travel-card:hover {
    transform: translateY(-15px) rotate(-1deg);
    box-shadow: 0 35px 70px rgba(230, 126, 34, 0.12);
}

/* --- [핵심 수정 2] 이미지 부분에만 overflow: hidden을 적용 --- */
.kinder-card-img-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 40px 40px 0 0;
    /* Rounded top corners only */
    overflow: hidden;
    /* [해결] 이미지만 둥글게 컷트 */
    position: relative;
}

.kinder-travel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kinder-travel-card:hover .kinder-travel-img {
    transform: scale(1.05);
    /* 이미지 살짝 확대 */
}

.kinder-card-content {
    padding: 30px;
}

.kinder-card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.kinder-card-content p {
    font-size: 15px;
    color: #86868b;
    line-height: 1.6;
}

/* --- [Kindergarten] 3. Ultimate Adventure Map (6-Card Version) --- */

:root {
    --kinder-orange: #E67E22;
}

.kinder-schedule-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    /* 지도 느낌의 배경 패턴 */
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 50px 50px;
}

/* S자 경로 SVG - 6개 카드를 위해 길이를 2500으로 확장 */
.kinder-map-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.kinder-journey-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 100px;
    /* 카드 사이의 수직 간격 */
}

.kinder-step {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
}

/* [정밀 배치] 6개 카드를 위한 S자 지그재그 위치 */
.pos-1 {
    justify-content: flex-start;
    padding-left: 5%;
}

/* 왼쪽 상단 */
.pos-2 {
    justify-content: flex-end;
    padding-right: 10%;
}

/* 오른쪽 */
.pos-3 {
    justify-content: center;
    padding-left: 15%;
}

/* 중앙 살짝 왼쪽 */
.pos-4 {
    justify-content: center;
    padding-right: 15%;
}

/* 중앙 살짝 오른쪽 */
.pos-5 {
    justify-content: flex-start;
    padding-left: 8%;
}

/* 다시 왼쪽 */
.pos-6 {
    justify-content: flex-end;
    padding-right: 5%;
}

/* 마지막 오른쪽 */

/* --- [중요] 팝업 아이콘이 보이게 하는 카드 구조 --- */
.kinder-travel-card {
    width: 360px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    /* overflow: hidden; 을 절대 쓰지 마세요! 아이콘이 잘립니다. */
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kinder-travel-card:hover {
    transform: translateY(-15px) rotate(-1.5deg);
    box-shadow: 0 35px 70px rgba(230, 126, 34, 0.15);
}

/* 이미지만 따로 감싸서 위쪽만 둥글게 깎기 */
.kinder-card-img-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    /* 여기서 이미지만 컷팅 */
    position: relative;
}

.kinder-travel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kinder-travel-card:hover .kinder-travel-img {
    transform: scale(1.08);
}

.kinder-card-content {
    padding: 30px;
}

.kinder-card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.kinder-card-content p {
    font-size: 15px;
    color: #86868b;
    line-height: 1.6;
}

/* [해결] 강아지 팝업 아이콘 - 흰색 원 안에 아이콘이 보이도록 수정 */
.kinder-pop-icon {
    position: absolute;
    top: -35px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--kinder-orange);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 10;

    opacity: 0;
    transform: scale(0.1) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.kinder-travel-card:hover .kinder-pop-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* [해결] 뭉쳐있던 데코 아이콘 위치 정밀 분산 */
.kinder-status-icon {
    position: absolute;
    z-index: 5;
    font-size: 35px;
    animation: kinder-bounce 3s infinite ease-in-out;
}

/* 전체 높이에 맞춰 아이콘들을 골고루 배치 */
.icon-water {
    top: 10%;
    left: 15%;
    color: #3498db;
}

.icon-sun {
    top: 25%;
    right: 15%;
    color: #f1c40f;
}

.icon-ball {
    top: 50%;
    left: 10%;
    color: #22C55E;
}

.icon-bone {
    top: 75%;
    right: 20%;
    color: #e74c3c;
}

.icon-heart {
    top: 90%;
    left: 20%;
    color: #ff7675;
}

@keyframes kinder-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* 모바일 대응 */
@media (max-width: 1024px) {
    .kinder-step {
        justify-content: center !important;
        padding: 0 !important;
    }

    .kinder-map-svg {
        display: none;
    }

    .kinder-travel-card {
        width: 90%;
        max-width: 400px;
    }
}

/* 4. Branch Info: Flex Row */
.kinder-branch-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.kinder-branch-btn {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.kinder-branch-btn:hover {
    border-color: var(--kinder-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.kinder-branch-btn i {
    font-size: 32px;
    color: var(--kinder-orange);
    margin-bottom: 15px;
}

@media (max-width: 1024px) {

    .kinder-card-grid,
    .kinder-branch-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .kinder-timeline::before {
        left: 20px;
    }

    .kinder-time-node,
    .kinder-time-node:nth-child(even) {
        flex-direction: row;
        padding-left: 50px;
    }

    .kinder-time-node .time-content {
        width: 100%;
    }

    .kinder-time-node .time-img {
        width: 100px;
        height: 100px;
        position: absolute;
        left: -30px;
    }
}

/* ============================= */
/* --- [Section 3] 50K Bold Brand Color Cards --- */

.edu-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.edu-card {
    position: relative;
    height: 420px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

/* 1. 평소 컬러 배경 설정 (로고 기반) */
.color-orange {
    background-color: #E67E22;
}

.color-blue {
    background-color: #3B82F6;
}

.color-yellow {
    background-color: #FACC15;
}

.color-pink {
    background-color: #D980FA;
}

.color-green {
    background-color: #22C55E;
}

.color-gray {
    background-color: #4B5563;
}

/* 2. 숨겨진 사진 레이어 */
.edu-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* 평소엔 안 보임 */
    transform: scale(1.1);
    transition: all 0.6s ease;
}

/* 3. 호버 시 사진 위에 씌워질 어두운 그라데이션 필터 */
.edu-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: 0.4s;
    z-index: 2;
}

/* 4. 카드 내부 콘텐츠 (흰색 고정) */
.edu-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    /* 평소에도 컬러풀하므로 텍스트는 흰색이 가장 예쁨 */
    text-align: center;
    padding: 30px;
    transition: 0.4s;
}

.edu-icon {
    font-size: 56px;
    margin-bottom: 20px;
    transition: 0.5s;
}

.edu-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff !important;
    /* 제목 화이트 */
}

.edu-card p {
    font-size: 16px;
    color: #ffffff !important;
    /* 제목 화이트 */
    opacity: 0.9;
    line-height: 1.4;
    word-break: keep-all;
}

/* --- [HOVER EFFECT] --- */

.edu-card:hover {
    transform: translateY(-10px);
}

/* 사진이 슥 나타나면서 줌인 */
.edu-card:hover .edu-photo {
    opacity: 1;
    transform: scale(1);
}

/* 그라데이션 필터가 켜지며 사진 위 글자를 선명하게 */
.edu-card:hover::after {
    opacity: 1;
}

/* 아이콘 툭 튀어나오는 효과 */
.edu-card:hover .edu-icon {
    transform: translateY(-10px) scale(1.15);
}

@media (max-width: 1024px) {
    .edu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edu-grid {
        grid-template-columns: 1fr;
    }

    .edu-card {
        height: 210px;
        border-radius: 28px;
    }

    .edu-content {
        padding: 20px;
    }

    .edu-icon {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .edu-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .edu-card p {
        font-size: 14px;
    }
}

/* ==================================== */
/* --- [Section 4] Sleek Branch Cards with Dual Actions --- */

.inquiry-section {
    padding: 120px 0;
    background-color: #fff;
}

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

.branch-card {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
}

.branch-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.branch-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.branch-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--50k-orange);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.branch-body {
    padding: 35px 30px;
    flex-grow: 1;
    text-align: center;
}

.branch-body h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.branch-addr {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 10px;
    line-height: 1.4;
    word-break: keep-all;
}

.branch-hash {
    font-size: 13px;
    color: var(--50k-orange);
    font-weight: 600;
}

/* --- [핵심] 하단 듀얼 버튼 레이아웃 --- */
.branch-footer {
    display: flex;
    border-top: 1px solid #f0f0f0;
}

.branch-footer a {
    flex: 1;
    padding: 20px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-detail {
    color: #1d1d1f;
    background-color: #fff;
    border-right: 1px solid #f0f0f0;
}

.btn-chat {
    color: var(--50k-orange);
    background-color: #fff;
}

/* 호버 시 인터랙션 */
.branch-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.branch-card:hover .branch-img-box img {
    transform: scale(1.1);
}

.btn-detail:hover {
    background-color: #f9f9f9;
    color: #000;
}

.btn-chat:hover {
    background-color: var(--50k-orange);
    color: #fff;
}

/* 모바일 대응 */
@media (max-width: 992px) {
    .branch-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .branch-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .kinder-checklist-section {
        padding: 82px 0;
    }

    .kinder-checklist-wrapper {
        padding: 42px 20px;
        border-radius: 30px;
    }

    .kinder-check-items {
        grid-template-columns: 1fr;
        margin: 36px 0;
    }

    .kinder-check-item {
        min-height: 64px;
        padding: 18px 18px 18px 52px;
    }

    .kinder-check-item::before {
        left: 22px;
    }
}
