/* readyni - 메인 페이지 */

/* ===== CSS 변수 ===== */
:root {
    --mint: #2DD4A8;
    --mint-dark: #20B090;
    --mint-light: #E8FBF6;
    --mint-xlight: #F0FDF9;
    --text-primary: #1A2332;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --bg-section: #F8FAFB;
    --white: #FFFFFF;
    --border: #dddddd;
    --border-light: #EDF2F7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font-display: 'Noto Sans KR', 'Pretendard', -apple-system, sans-serif;
}

/* ===== 리셋 ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: var(--font-display); */
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
}


/* ===== 히어로 섹션 ===== */
.hero-section {
    background: url(https://d1dog91m7ampnt.cloudfront.net/static/image/main-bg01.png);
    padding: 72px 24px 80px;
    min-height: 640px;
    display: flex;
    align-items: center;
    width:95%;
    margin:0 auto;
    border-radius:50px;
}

.hero-inner {
    max-width: 1400px;
    padding:0 15px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
}

/* 히어로 텍스트 */
.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--mint-dark);
    /* border: 1px solid rgba(255, 255, 255, 0.35); */
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.1px;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 0 10px #00000033;
}

.hero-title em {
    font-style: normal;
    color: #3bfcc9;
    font-weight:800;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    /* max-width: 420px; */
    font-weight: 500;
    word-break: keep-all;
}

/* 히어로 폼 카드 */
.hero-form-card {
    background: #ffffffe3;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-card-header {
    display: flex;
    border-bottom: 1px solid var(--border-light);
}

.form-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    transition: color 0.18s, border-color 0.18s;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

.form-tab svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.form-tab.active {
    color: var(--mint-dark);
    border-bottom-color: var(--mint);
}

.form-card-body {
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* 폼 필드 */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-wrap svg {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    color: var(--text-muted);
    pointer-events: none;
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
}

.form-input:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(45, 212, 168, 0.14);
}

.form-input::placeholder {
    color: #CBD5E0;
}

/* 인원 섹션 */
.pax-section {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: visible;
}

.pax-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    border-radius: var(--radius-sm);

}

.pax-header svg {
    width: 18px;
    height: 18px;
    color: var(--mint-dark);
}

.pax-header .pax-chevron {
    margin-left: auto;
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.pax-header.open .pax-chevron {
    transform: rotate(180deg);
}

.pax-body {
    /* display: none 제거 — JS에서 is-hidden 클래스로 초기 숨김 처리 */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 36px -18px rgba(15, 23, 42, 0.32);
    z-index: 20;
}

.pax-body.is-hidden {
    display: none;
}

.pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pax-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.pax-sub {
    font-size: 14px;
    color: var(--text-muted);
}

.pax-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pax-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
}

.pax-btn:hover:not(:disabled) {
    border-color: var(--mint);
    background: var(--mint-xlight);
    color: var(--mint-dark);
}

.pax-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.pax-count {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 20px;
    text-align: center;
}

/* 여행 목적 */
.purpose-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.purpose-label {
    font-size: 15px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.purpose-buttons {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-y;
}

.purpose-buttons::-webkit-scrollbar {
    display: none;
}

.purpose-buttons.is-dragging {
    cursor: grabbing;
}

.purpose-custom-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.purpose-btn {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.purpose-btn:hover {
    border-color: var(--mint);
    color: var(--mint-dark);
}

.purpose-btn.active {
    border-color: var(--mint);
    background: var(--mint-light);
    color: var(--mint-dark);
    font-weight: 600;
}

.purpose-custom-wrap {
    flex: 1;
}

.purpose-add-btn {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-section);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.purpose-add-btn:hover {
    border-color: var(--mint);
    background: var(--mint-light);
    color: var(--mint-dark);
}

.purpose-add-btn:active {
    background: var(--mint);
    color: var(--white);
}

.purpose-custom-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.18s;
    font-family: inherit;
    background:#fff;
}

.purpose-custom-input:focus {
    border-color: var(--mint);
}

.purpose-custom-input::placeholder {
    color: #CBD5E0;
}

/* 제출 버튼 */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--mint);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.18s, transform 0.12s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-submit:hover {
    background: var(--mint-dark);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    width: 17px;
    height: 17px;
}

/* ===== 통합 여행 서비스 섹션 ===== */

/* 슬라이드 */

.slick-center {box-shadow:0 0 5px #ffffff99;}

.slick-dots {display: none !important;}

.slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border: none;
    background: transparent;
    color: var(--mint);
    font-family: monospace;
    font-size: 60px;
    z-index: 300;
    outline: none;

}


.slick-prev {
  left: -80px
}

.slick-next {
  right: -60px;
}

.con-wrap.slick-slide {
    width:480px;
    height:500px !important;
    transition: transform .3s;
    position:relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slick-slide:after {
  content:'';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.35);
  transition: transform .4s;
  /* display: none; */
}

.service-name, .service-desc {text-shadow: 0 0 5px #00000066;}

.con-wrap.slick-slide {
  transform: scale(0.7)  translate(640px);
}

.con-wrap.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-250px);
  z-index: 10;
}

.con-wrap.slick-slide.slick-center + .slick-slide + .con-wrap.slick-slide {
  transform: scale(0.7)  translate(-640px);
  z-index: 5;
}

.con-wrap.slick-slide.slick-active {
  transform: scale(0.8) translate(250px);
}

.con-wrap.slick-slide.slick-center {
  /* margin: 0 -10%; */
  transform: scale(1);
  z-index: 30;
}

.slick-center:after {
  display: none;
}




/*  */



.services-section {
    padding: 100px 24px;
    /* background: var(--white); */
}

/* .services-section .section-inner {max-width:1600px;} */

/* .services-section {position:relative;}
.services-section::after {
    display: block;
    content:"";
    background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/bg-pt.png);
    width:400px;
    background-size: cover;
    aspect-ratio: 1/1;
    position: absolute;
    top:150px;right:100px;
    z-index: -1;
    opacity:0.3;
} */

.section-inner {
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}


.section-title {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.section-title::before {
    display: block;
    content:"";
    width:40px;
    height:40px;
    background:var(--mint-light);
    border-radius:var(--radius-full);
    position: absolute;
    z-index: -1;
    top: 0;
    left: -15px;
}

.section-title em {
    color:var(--mint);
    font-weight:700;
}

.section-desc {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    word-break: keep-all;
}

/* 서비스 카드 그리드 */
/* .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
} */

.slider {margin-top:50px;}

.services-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: calc(66.66% + 10px);
    /* 가운데 정렬 */
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
    padding: 45px 45px; 
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
} 

.service-airplane a {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/slide01.png)}

.service-room a {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/slide02.png)}

.service-car a {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/slide03.png)}

.service-duty a {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/slide04.png)}

.service-activity a {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/slide05.png)}

.service-ssg a {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/ssg.png)}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--mint-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-wrap svg {
    width: 26px;
    height: 26px;
    color: var(--mint-dark);
}

.service-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.service-desc {
    font-size: 20px;
    color:#fff;
    font-weight:600;
    line-height: 1.5;
    word-break: keep-all;
}

.service-link-hint {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    background: var(--mint);
    color:#fff;
    border-radius:6px;
    padding:8px 20px;
    font-weight:600;
}

.service-link-hint i {
    font-size:12px;
    font-weight:600;
}

.service-link-hint svg {
    width: 13px;
    height: 13px;
}

/* ===== AI 기능 소개 섹션 ===== */
.ai-section {
    padding: 80px 24px;
    position:relative;
}

.ai-section .section-title::before {
    /* display: none; */
}

.ai-section {position:relative;}
.ai-section::after {
    display: block;
    content:"";
    background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/bg-pt02.png);
    width:500px;
    background-size: cover;
    aspect-ratio: 1/1;
    position: absolute;
    bottom:100px;right:50%;
    z-index: -1;
    opacity:0.3;
}

.ai-section .section-header span {
    background: var(--mint);
    padding:8px 20px;
    border-radius:5px;
    margin-top:15px;
    width:fit-content;
    font-weight:600;
}

.ai-section .section-header span i {
    font-weight:500;
    font-size:14px;
    padding-left:5px;
}

/* .ai-section::after {
    display: block;
    content: "";
    width:100%;
    height:50%;
    background:var(--mint);
    position:absolute;
    transform: translateY(-50%);
    z-index: -1;
    left:0;
} */

.ai-section .section-inner {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 30px;
    align-items: end;
}

.ai-section .section-header {
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; */
    color:#fff;
    /* background:var(--mint); */
    /* padding:30px; */
    border-radius:15px;
    height:100%;
}

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

.ai-card {
    display: flex;
    flex-direction: column; 
    justify-content: flex-end;
    gap: 5px;
    padding: 40px 35px; 
    /* border-radius: var(--radius-lg); */
    border: 3px solid #fff;
    transition: 0.2s;
    min-height:270px;
}


.ai-card:nth-child(1) {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/ai01.png) center center / cover}

.ai-card:nth-child(2) {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/ai02.png) center center / cover}

.ai-card:nth-child(3) {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/ai03.png) center center / cover}

.ai-card:nth-child(4) {background:url(https://d1dog91m7ampnt.cloudfront.net/static/image/ai04.png) center center / cover}

.ai-card:nth-child(1), .ai-card:nth-child(4) {
    border-radius:0 60px 0 60px;
}

.ai-card:nth-child(2), .ai-card:nth-child(3) {
    border-radius:60px 0 60px 0;
}

.ai-card:hover {
    border: 3px solid var(--mint);
    transition: 0.2s;
}

.ai-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    color:#fff;
}

.ai-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.4;
    color:#fff;
    word-break: keep-all;
    font-weight:600;
}

/* ===== 반응형 ===== */


@media (max-width: 1400px) {


.ai-section .section-inner {
    grid-template-columns: 0.7fr 1fr;
}





}

@media (max-width: 1200px) {

    .slick-arrow {display: none !important;}

    .hero-section {
        background-size: cover;
        background-position: center;
    }

    .hero-inner {
        display: block;
    }

    .hero-form-card {margin-top:30px;}

    /* .hero-inner {width:100%;max-width: calc(100% - 100px)} */

.ai-section .section-inner {
    grid-template-columns: 0.5fr 1fr;
}

    
    /* .hero-form-card {width:100%;max-width: calc(100% - 100px)} */
}





/* 태블릿 (768px) */
@media (max-width: 1024px) {




    .ai-section .section-inner {
        grid-template-columns: 1fr;
    }



    /* .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 8px;
    }

    .hero-section {
        padding: 48px 24px 56px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-form-card {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    } */

    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-row-2 {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {font-size:30px;}
    .section-desc {font-size:18px;}



    .con-wrap.slick-slide {width:400px;height:380px !important;}

    .service-card {
        padding:35px;
    }

    .service-name {font-size:26px;}

    .service-desc {font-size:18px;}

    .slick-arrow {display: none !important;}

}

/* 모바일 (375px ~ 767px) */
@media (max-width: 767px) {

    .service-card {
        padding:25px;
    }

    .service-name {font-size:24px;}

    .service-desc {font-size:16px;}

    .service-link-hint {font-size:14px;padding:5px 15px;}


    .con-wrap.slick-slide {
        width:320px;
        height:350px !important
    }


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

    .hero-inner {padding: 0 20px;gap:30px;}

    .hero-badge {padding:5px 15px; font-size:16px;}

    .hero-section {
        padding: 36px 20px 44px;
    }

    .hero-title {
        font-size: 30px; 
        margin-bottom:15px;
    }

    .hero-desc {
        font-size: 17px;
        line-height: 1.4;
    }

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

    .services-section {
        padding: 56px 16px;
    }

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

    .services-row-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .ai-section {
        padding: 56px 16px;
    }

    .ai-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .ai-card {
        padding: 25px;
    }

    .ai-card:nth-child(1), .ai-card:nth-child(4) {
        border-radius:0 25px 0 25px;
    }

    .ai-card:nth-child(2), .ai-card:nth-child(3) {
        border-radius:25px 0 25px 0;
    }



    .ai-icon-circle {
        width: 52px;
        height: 52px;
    }

    .ai-icon-circle svg {
        width: 24px;
        height: 24px;
    }
    .section-inner {padding: 0;}

    .section-title::before {width:25px;height:25px;top:-5px;left:-5px;}

    .section-desc {line-height:1.4}

}

@media (max-width: 650px) {

    .ai-grid {grid-template-columns: 1fr;}
    .ai-card:nth-child(1), .ai-card:nth-child(3) {border-radius:0 25px ;}
    .ai-card:nth-child(2), .ai-card:nth-child(4) {border-radius:0 25px ;}



}

@media (max-width: 500px) {

    .con-wrap.slick-slide {width:250px;height:300px !important}

    .hero-section {border-radius:30px;}

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

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

    .hero-inner {padding: 0 10px;}

    .hero-title {font-size:24px;}

    .form-input {padding:8px 13px;}

    .pax-header {padding: 9px 13px;}

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




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




/* ===== 모바일(480px) 전용 추가 수정 ===== */
@media (max-width: 480px) {

    /* Travel Purpose 버튼: 2x2 그리드로 변경 */
    .purpose-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow-x: visible;
        flex-wrap: unset;
        gap: 8px;
        padding-bottom: 0;
    }

    .purpose-btn {
        white-space: normal;
        text-align: center;
        padding: 10px 8px;
        font-size: 13px;
    }

    /* 캐러셀 카드: 최소 너비 조정 */
    .con-wrap.slick-slide {
        width: 220px;
        height: 270px !important;
    }

    /* 피처(ai) 카드 텍스트 가독성 */
    .ai-card {
        min-height: 200px;
        padding: 20px;
    }

    .ai-card-title {
        font-size: 17px;
        text-shadow: 0 1px 4px rgba(0,0,0,0.55);
    }

    .ai-card-desc {
        font-size: 13px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    /* 히어로 섹션 최소화 */
    .hero-section {
        min-height: auto;
        padding: 28px 16px 36px;
        border-radius: 24px;
    }

    /* 서비스 섹션 패딩 */
    .services-section {
        padding: 40px 12px;
    }

    /* ai 섹션 패딩 */
    .ai-section {
        padding: 40px 12px;
    }
}

/* ===== 유틸리티 ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ===== 공항 자동완성 드롭다운 ===== */
.airport-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border: 1px solid #dddddd;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 240px;
    overflow-y: auto;
}

.airport-option {
    padding: 10px 14px;
    font-size: 15px;
    color: #2D3748;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.airport-option:hover {
    background: #F0FDF4;
    color: #20B090;
}

.airport-dropdown::-webkit-scrollbar {
    width: 5px;
}

.airport-dropdown::-webkit-scrollbar-thumb {
    background: #CBD5E0;
    border-radius: 3px;
}

.airport-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

/* ===== 배너 슬라이더 영역 ===== */
.banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 24px;
    box-sizing: border-box;
}

.banner-inner {
    width: 100%;
    max-width: 1400px;
}

.banner-slider {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
}

.banner-slide a,
.banner-slide div {
    display: block;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.banner-section-middle {
    padding-top: 0;
    padding-bottom: 0;
}

.banner-section-bottom {
    padding-top: 0;
    padding-bottom: 20px;
}

/* 배너 반응형 - 모바일 */
@media (max-width: 767px) {
    .banner-section {
        padding: 12px 16px;
    }

    .banner-img {
        border-radius: 8px;
    }

    .banner-slider {
        border-radius: 8px;
    }
}
