/**
 * 스마일대부 02 - 스타일시트
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

    /* Colors */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --accent-yellow: #fff676;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* 데스크톱/모바일 배경 이미지 전환 */
.bg-mobile {
    display: none;
}

ul, ol {
    list-style: none;
}

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

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* 상단 정보바 */
.header-top {
    background: #2173ff;
    padding: 10px 0;
    text-align: center;
}

.header-top p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* 메인 헤더 */
.header-main {
    background: #fff;
    padding: 15px 0;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #2173ff;
    letter-spacing: -1px;
}

/* 전화번호 */
.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: #2173ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon i {
    font-size: 20px;
    color: #fff;
}

.phone-24 {
    position: absolute;
    top: -13px;
    right: -5px;
    background: #fff;
    color: #2173ff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 4px;
    border: 2px solid #2173ff;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 14px;
    color: #6b7280;
}

.phone-number {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
}

/* Header 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .header-inner {
        padding: 0 30px;
    }

    .logo {
        font-size: 26px;
    }

    .phone-icon {
        width: 40px;
        height: 40px;
    }

    .phone-icon i {
        font-size: 18px;
    }

    .phone-number {
        font-size: 20px;
    }
}

/* Header 반응형 - 모바일 */
@media (max-width: 768px) {
    /* 모바일 배경 이미지 전환 */
    .bg-desktop {
        display: none;
    }
    .bg-mobile {
        display: block;
    }

    .header-top p {
        font-size: 10px;
        padding: 0 15px;
        line-height: 1.4;
    }

    .header-inner {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    /* 전화번호 - 아이콘만 표시 */
    .phone-icon {
        width: 40px;
        height: 40px;
    }

    .phone-icon i {
        font-size: 18px;
    }

    .phone-24 {
        display: none;
    }

    .phone-info {
        display: none;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    overflow: hidden;
    margin-top: 48px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    object-position: center;
}

/* 좌측 텍스트 */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    padding-top:120px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hero-title .highlight {
    display: block;
    color: var(--accent-yellow);
    text-underline-offset: 8px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Hero 버튼들 */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn-kakao {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fee500;
    padding: 18px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.4);
}

.btn-kakao:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.5);
}

.btn-kakao i {
    font-size: 24px;
    color: #3c1e1e;
}

.btn-kakao span {
    font-size: 18px;
    font-weight: 700;
    color: #3c1e1e;
}

.btn-consult {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #f0f7ff;
}

.btn-consult i {
    font-size: 20px;
    color: #2173ff;
}

.btn-consult span {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

/* Hero 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 150px 0 100px;
    }

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

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

    .hero-title .highlight {
        display: inline;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .btn-kakao,
    .btn-consult {
        padding: 14px 28px;
    }

    .btn-kakao i,
    .btn-consult i {
        font-size: 20px;
    }

    .btn-kakao span,
    .btn-consult span {
        font-size: 16px;
    }
}

/* Hero 반응형 - 모바일 */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 80px;
        overflow: visible;
    }

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

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

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .btn-kakao,
    .btn-consult {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .btn-kakao i,
    .btn-consult i {
        font-size: 18px;
    }

    .btn-kakao span,
    .btn-consult span {
        font-size: 15px;
    }
}

/* ========================================
   Section 2: Features
   ======================================== */
.features {
    background: #fff;
    padding: 120px 0;
}

.features-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* 상단 타이틀 */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.features-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

.features-title span {
    color: #2173ff;
}

/* 카드 컨테이너 */
.features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 개별 카드 */
.feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* 카드 헤더 */
.feature-card-header {
    padding: 20px 24px;
    text-align: center;
}

.feature-card-header.blue {
    background: linear-gradient(135deg, #2173ff 0%, #1a5fd4 100%);
}

.feature-card-header.sky {
    background: linear-gradient(135deg, #4da6ff 0%, #2173ff 100%);
}

.feature-card-header span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* 카드 본문 */
.feature-card-body {
    padding: 32px 24px 40px;
    text-align: center;
}

.feature-card-body p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 4px;
}

.feature-card-body .highlight-text {
    font-size: 17px;
    font-weight: 700;
    color: #2173ff;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Features 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .features {
        padding: 80px 0;
    }

    .features-inner {
        padding: 0 30px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .features-title {
        font-size: 32px;
    }

    .features-cards {
        gap: 20px;
    }

    .feature-card-header {
        padding: 16px 20px;
    }

    .feature-card-header span {
        font-size: 18px;
    }

    .feature-card-body {
        padding: 24px 20px 32px;
    }

    .feature-card-body p {
        font-size: 15px;
    }

    .feature-card-body .highlight-text {
        font-size: 16px;
    }
}

/* Features 반응형 - 모바일 */
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .features-inner {
        padding: 0 20px;
    }

    .features-header {
        margin-bottom: 32px;
    }

    .features-subtitle {
        font-size: 14px;
    }

    .features-title {
        font-size: 26px;
    }

    .features-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        border-radius: 16px;
    }

    .feature-card-header {
        padding: 14px 16px;
    }

    .feature-card-header span {
        font-size: 16px;
    }

    .feature-card-body {
        padding: 20px 16px 28px;
    }

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

    .feature-card-body .highlight-text {
        font-size: 15px;
    }
}

/* ========================================
   Section 3: Services
   ======================================== */
.services {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-bg img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.services-inner {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 60px;
}

/* 좌측 텍스트 */
.services-text {
    max-width: 500px;
}

.services-subtitle {
    font-size: 20px;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 16px;
}

.services-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.services-title span {
    color: var(--accent-yellow);
}

.services-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 우측 카드들 */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 140px;
}

.service-card:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-card-number {
    font-size: 28px;
    font-weight: 800;
    color: #2173ff;
    flex-shrink: 0;
    min-width: 50px;
}

.service-card-content {
    flex: 1;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.service-card-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.service-card-desc strong {
    color: #2173ff;
    font-weight: 600;
}

/* Services 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .services {
        min-height: auto;
    }

    .services-inner {
        grid-template-columns: 1fr;
        padding: 80px 30px;
        gap: 50px;
    }

    .services-text {
        max-width: 100%;
        text-align: center;
    }

    .services-title {
        font-size: 36px;
    }

    .services-subtitle {
        font-size: 18px;
    }

    .service-card {
        padding: 24px 28px;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-card-number {
        font-size: 22px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-desc {
        font-size: 14px;
    }
}

/* Services 반응형 - 모바일 */
@media (max-width: 768px) {
    .services-inner {
        padding: 60px 20px;
        gap: 40px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-desc {
        font-size: 14px;
    }

    .service-card {
        padding: 20px 24px;
        gap: 16px;
    }

    .service-card-number {
        font-size: 20px;
    }

    .service-card-title {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .service-card-desc {
        font-size: 13px;
    }

    .service-card-desc br {
        display: none;
    }
}

/* ========================================
   Section 4: Loan Info
   ======================================== */
.loan-info {
    background: #fff;
    padding: 100px 0;
}

.loan-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 상단 타이틀 */
.loan-info-header {
    text-align: center;
    margin-bottom: 50px;
}

.loan-info-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.loan-info-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.loan-info-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* 3개 카드 */
.loan-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.loan-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.loan-info-card-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    padding: 8px 20px;
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 20px;
}

.loan-info-card-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

/* 하단 배너 */
.loan-info-banner {
    background: linear-gradient(135deg, #2173ff 0%, #1a5fd4 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.loan-info-banner-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.loan-info-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Loan Info 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .loan-info {
        padding: 80px 0;
    }

    .loan-info-inner {
        padding: 0 30px;
    }

    .loan-info-title {
        font-size: 32px;
    }

    .loan-info-desc {
        font-size: 14px;
    }

    .loan-info-cards {
        gap: 16px;
    }

    .loan-info-card {
        padding: 28px 20px;
    }

    .loan-info-card-value {
        font-size: 24px;
    }

    .loan-info-banner {
        padding: 32px;
    }

    .loan-info-banner-title {
        font-size: 28px;
    }
}

/* Loan Info 반응형 - 모바일 */
@media (max-width: 768px) {
    .loan-info {
        padding: 60px 0;
    }

    .loan-info-inner {
        padding: 0 20px;
    }

    .loan-info-header {
        margin-bottom: 40px;
    }

    .loan-info-subtitle {
        font-size: 14px;
    }

    .loan-info-title {
        font-size: 26px;
    }

    .loan-info-desc {
        font-size: 13px;
    }

    .loan-info-desc br {
        display: none;
    }

    .loan-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .loan-info-card {
        padding: 24px 20px;
    }

    .loan-info-card-label {
        font-size: 13px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .loan-info-card-value {
        font-size: 22px;
    }

    .loan-info-banner {
        padding: 28px 20px;
    }

    .loan-info-banner-title {
        font-size: 22px;
    }

    .loan-info-banner-desc {
        font-size: 14px;
    }
}

/* ========================================
   Section 5: Realtime (실시간 신청현황)
   ======================================== */
.realtime {
    background: linear-gradient(135deg, #2173ff 0%, #1a5fd4 100%);
    padding: 100px 0;
}

.realtime-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 상단 타이틀 */
.realtime-header {
    text-align: center;
    margin-bottom: 40px;
}

.realtime-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.realtime-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

/* 실시간 현황 카드 */
.realtime-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* 테이블 헤더 */
.realtime-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.realtime-table-header span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray);
}

.realtime-table-header span:first-child {
    min-width: 60px;
}

.realtime-table-header span:nth-child(2) {
    flex: 1;
    text-align: center;
}

.realtime-table-header span:last-child {
    min-width: 80px;
    text-align: center;
}

.realtime-list-container {
    height: 360px;
    overflow: hidden;
}

.realtime-list {
    animation: scrollUp 15s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.realtime-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.realtime-item:last-child {
    border-bottom: none;
}

.realtime-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 60px;
}

.realtime-amount {
    font-size: 18px;
    font-weight: 700;
    color: #2173ff;
    flex: 1;
    text-align: center;
}

.realtime-status {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
}

/* 상태별 색상 */
.status-complete {
    background: #dcfce7;
    color: #166534;
}

.status-consulting {
    background: #fef3c7;
    color: #92400e;
}

.status-done {
    background: #dbeafe;
    color: #1e40af;
}

.status-waiting {
    background: #f3e8ff;
    color: #7c3aed;
}

.status-apply {
    background: #fee2e2;
    color: #dc2626;
}

/* Realtime 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .realtime {
        padding: 80px 0;
    }

    .realtime-inner {
        padding: 0 30px;
    }

    .realtime-title {
        font-size: 32px;
    }

    .realtime-card {
        padding: 24px;
    }

    .realtime-list-container {
        height: 320px;
    }

    .realtime-item {
        padding: 14px 16px;
    }

    .realtime-name {
        font-size: 15px;
    }

    .realtime-amount {
        font-size: 16px;
    }

    .realtime-status {
        font-size: 13px;
        padding: 5px 12px;
    }

    .realtime-table-header {
        padding: 14px 16px;
    }

    .realtime-table-header span {
        font-size: 13px;
    }
}

/* Realtime 반응형 - 모바일 */
@media (max-width: 768px) {
    .realtime {
        padding: 60px 0;
    }

    .realtime-inner {
        padding: 0 20px;
    }

    .realtime-header {
        margin-bottom: 30px;
    }

    .realtime-subtitle {
        font-size: 16px;
    }

    .realtime-title {
        font-size: 26px;
    }

    .realtime-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .realtime-list-container {
        height: 280px;
    }

    .realtime-item {
        padding: 12px 12px;
    }

    .realtime-name {
        font-size: 14px;
        min-width: 50px;
    }

    .realtime-amount {
        font-size: 15px;
    }

    .realtime-status {
        font-size: 12px;
        padding: 4px 10px;
        min-width: 70px;
    }

    .realtime-table-header {
        padding: 12px 12px;
        margin-bottom: 12px;
    }

    .realtime-table-header span {
        font-size: 12px;
    }

    .realtime-table-header span:first-child {
        min-width: 50px;
    }

    .realtime-table-header span:last-child {
        min-width: 70px;
    }
}

/* ========================================
   Section 6: Contact (간편상담신청)
   ======================================== */
.contact {
    background: #f8fafc;
    padding: 100px 0;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* 좌측: 대출 정보 */
.contact-info {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: #fff;
}

.contact-info-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-info-title {
    font-size: 42px;
    font-weight: 800;
    color: #60d5f7;
    margin-bottom: 40px;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 80px;
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.info-phone .info-value {
    color: #60d5f7;
    font-size: 20px;
    font-weight: 700;
}

.btn-kakao-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fee500;
    color: #3c1e1e;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-kakao-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 229, 0, 0.3);
}

.btn-kakao-contact i {
    font-size: 20px;
}

/* 우측: 신청 폼 */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: #2173ff;
    margin-bottom: 12px;
}

.form-desc {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2173ff;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.btn-submit {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #2173ff 0%, #1a5fd4 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(33, 115, 255, 0.3);
}

.btn-submit i {
    font-size: 16px;
}

/* Contact 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .contact {
        padding: 80px 0;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .contact-info {
        padding: 40px 32px;
    }

    .contact-info-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .contact-form-wrap {
        padding: 40px 32px;
    }

    .form-title {
        font-size: 28px;
    }
}

/* Contact 반응형 - 모바일 */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

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

    .contact-info {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-info-label {
        font-size: 14px;
    }

    .contact-info-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .contact-info-list li {
        padding: 12px 0;
    }

    .info-label {
        font-size: 14px;
        min-width: 70px;
    }

    .info-value {
        font-size: 14px;
    }

    .info-phone .info-value {
        font-size: 18px;
    }

    .btn-kakao-contact {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .contact-form-header {
        margin-bottom: 32px;
    }

    .form-subtitle {
        font-size: 14px;
    }

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

    .form-desc {
        font-size: 13px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #4a4a4a;
    padding: 60px 0 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    margin: 0;
}

.footer-notice {
    margin-bottom: 30px;
    padding: 20px 0;
}

.footer-notice p {
    font-size: 13px;
    color: #ef4444;
    line-height: 1.8;
    margin: 0;
}

.footer-terms {
    margin-bottom: 30px;
}

.footer-terms p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-inner {
        padding: 0 30px;
    }

    .footer-info p,
    .footer-notice p,
    .footer-terms p {
        font-size: 12px;
    }
}

/* Footer 반응형 - 모바일 */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 30px;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .footer-info p,
    .footer-notice p,
    .footer-terms p {
        font-size: 11px;
        line-height: 1.7;
    }

    .footer-copyright p {
        font-size: 11px;
    }
}
