/*
* 파일명: domain-parking.css
* 경로: /assets/css/
* 기능: 도메인 파킹 페이지 스타일시트
* 작성일: 2025-09-01
*/

/* ======== [1차] 기본 설정 ======== */
:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BC62;
    --accent-color: #1e4a20;
    --light-green: #C5D3A8;
    --success-color: #4ade80;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f5e8 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ======== [1차] 히어로 섹션 ======== */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(151, 188, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 188, 98, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.domain-name {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #ffffff, var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* ======== [1차] 메인 콘텐츠 섹션 ======== */
.main-content {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- [2차] 특징 카드 ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ======== [1차] 구매 양식 & FAQ 섹션 ======== */
.inquiry-faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f9f0 100%);
}

.inquiry-card, .faq-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 100%;
}

.inquiry-header, .faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.inquiry-header h2, .faq-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.inquiry-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.1);
}

.form-control:disabled {
    background: var(--bg-light);
    color: var(--text-light);
}

.price-input-group {
    position: relative;
}

.price-input-group::before {
    content: '$';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--primary-color);
    z-index: 1;
}

.price-input-group .form-control {
    padding-left: 2rem;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ---- [2차] 캡챠 스타일 ---- */
.captcha-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-green));
    border-radius: 10px;
    justify-content: center;
}

.math-equation {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.captcha-refresh {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
}

.captcha-refresh i {
    font-size: 1rem;
}

.captcha-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}


/* ---- [2차] FAQ 스타일링 ---- */
.accordion {
    --bs-accordion-border-radius: 12px;
    --bs-accordion-border-color: var(--border-color);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ======== [1차] 통계 섹션 ======== */
.stats-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-item p {
    opacity: 0.9;
    font-size: 1rem;
}

/* ======== [1차] 푸터 ======== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    opacity: 0.7;
}

/* ======== [1차] 고객 리뷰 섹션 ======== */
.reviews-section {
    padding: 6rem 0;
    background: var(--white);
}

.reviews-summary {
    text-align: center;
    margin-top: 1rem;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reviews-count {
    color: var(--text-light);
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}


/* ======== [1차] 반응형 디자인 ======== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .main-content,
    .inquiry-faq-section,
    .reviews-section {
        padding: 3rem 0;
    }
    
    .inquiry-card, .faq-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
		}
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .inquiry-card, .faq-card {
        padding: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        gap: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .domain-name {
        font-size: 2rem;
    }
}

/* ---- [2차] 애니메이션 ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}