/*
 * style.css - 메인 스타일시트
 * 은퇴후창업 - 하이엔드 아트월 & 가구 리폼
 * Dark Immersive + Gold Color Scheme (Spotify-inspired)
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-dark: #996F0A;
    --gold-accent: #C9960C;
    --gold-muted: #A07A0E;

    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7F5;
    --bg-surface: #F0EDE8;
    --bg-card: #FFFFFF;
    --bg-elevated: #F2F0EC;
    --bg-hover: #EAE7E1;

    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-dim: #BBBBBB;

    --border: rgba(0,0,0,0.08);
    --border-light: rgba(0,0,0,0.1);

    --gradient-gold: linear-gradient(135deg, #C9960C 0%, #D4A843 50%, #B8860B 100%);
    --gradient-dark: linear-gradient(180deg, #FFFFFF 0%, #F7F7F5 100%);
    --gradient-card: linear-gradient(145deg, rgba(212,168,67,0.06) 0%, rgba(255,215,0,0.02) 100%);
    --gradient-hero: linear-gradient(135deg, #FAFAF8 0%, #FFF8E7 50%, #FAFAF8 100%);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(184,134,11,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font-primary: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

ul, ol {
    list-style: none;
}

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

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(184,134,11,0.25));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: var(--gold-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav .nav-list a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--text-primary);
    background: var(--bg-elevated);
}

.main-nav .nav-cta {
    background: var(--gradient-gold) !important;
    color: var(--bg-primary) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.main-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 10px 16px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 13px !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--bg-primary);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,67,0.2);
    border: 1px solid rgba(212,168,67,0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #F0D078;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.slide-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    word-break: keep-all;
}

.slide-title .gold {
    color: #F0D078;
    background: linear-gradient(135deg, #F0D078 0%, #FFD700 50%, #D4A843 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(212,168,67,0.3);
    border-color: var(--gold);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212,168,67,0.5);
    transform: scale(1.2);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.4);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.15);
}

.btn-outline:hover {
    background: rgba(0,0,0,0.03);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Hero slider specific - keep white outline for dark overlay */
.hero-slider .btn-outline {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.3);
}

.hero-slider .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.btn-dark {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-dark:hover {
    background: var(--bg-hover);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 120px 24px;
    position: relative;
}

.section-dark {
    background: var(--bg-primary);
}

.section-surface {
    background: var(--bg-secondary);
}

.section-gradient {
    background: var(--gradient-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,134,11,0.08);
    border: 1px solid rgba(184,134,11,0.18);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    word-break: keep-all;
}

.section-title .gold {
    color: var(--gold);
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(184,134,11,0.15);
    box-shadow: var(--shadow-md);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== GRID LAYOUTS ==================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 80px 24px 30px;
    color: var(--text-secondary);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-contact li {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--gold);
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.scroll-top {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    opacity: 0;
    pointer-events: none;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.phone-btn {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ==================== ANTIGRAVITY CANVAS ==================== */
.antigravity-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

/* ==================== PAGE HEADER (non-home) ==================== */
.page-header {
    padding: 160px 24px 80px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,134,11,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.page-breadcrumb a {
    color: var(--text-secondary);
}

.page-breadcrumb span {
    color: var(--gold);
}

/* ==================== COMMON ELEMENTS ==================== */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 16px auto;
}

.text-gold {
    color: var(--gold);
}

.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== FORM STYLES ==================== */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==================== STAT COUNTER ==================== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== REVIEW CARD ==================== */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184,134,11,0.12);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    word-break: keep-all;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 16px;
}

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

.review-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== PRICING TABLE ==================== */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(184,134,11,0.04) 0%, var(--bg-card) 100%);
}

.pricing-card.featured::before {
    content: '추천';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin: 20px 0;
}

.pricing-price .unit {
    font-size: 16px;
    color: var(--text-muted);
    font-family: var(--font-primary);
}

.pricing-features {
    text-align: left;
    margin: 28px 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '&#10003;';
    color: var(--gold);
    font-weight: 700;
}

/* ==================== FAQ ==================== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(184,134,11,0.15);
}

.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-arrow {
    font-size: 20px;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== PARTNER LOGOS ==================== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partner-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
}

.partner-item:hover {
    border-color: rgba(184,134,11,0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.partner-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.partner-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== MAP ==================== */
.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) invert(92%) contrast(90%);
}

/* ==================== TABLE STYLES ==================== */
.content-table {
    width: 100%;
    border-collapse: collapse;
}

.content-table th,
.content-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.content-table th {
    color: var(--gold);
    font-weight: 600;
    background: var(--bg-surface);
}

.content-table td {
    color: var(--text-secondary);
}

.content-table tr:hover td {
    background: var(--bg-surface);
}

/* ==================== BLOG SECTION ==================== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(184,134,11,0.12);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-elevated);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(184,134,11,0.06);
    border: 1px solid rgba(184,134,11,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.4);
}

/* ==================== SITEMAP ==================== */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sitemap-group h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sitemap-group ul li {
    margin-bottom: 10px;
}

.sitemap-group a {
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-group a:hover {
    color: var(--gold);
}

.sitemap-group a::before {
    content: '>';
    color: var(--text-dim);
    font-size: 12px;
}

/* ==================== LEGAL PAGES ==================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin: 28px 0 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
    margin: 12px 0 20px 24px;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

/* ==================== PROCESS TIMELINE ==================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.process-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== PROCESS DETAIL ==================== */
.process-detail-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-detail-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.process-detail-item {
    display: flex;
    gap: 36px;
    margin-bottom: 48px;
    position: relative;
}

.process-detail-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.process-detail-content {
    flex: 1;
    padding-top: 12px;
}

.process-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* ==================== HISTORY TIMELINE ==================== */
.history-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.history-item {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
    position: relative;
}

.history-year {
    width: 80px;
    min-width: 80px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    padding-top: 8px;
    position: relative;
    z-index: 1;
}

.history-year::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--bg-primary);
}

.history-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.history-content:hover {
    border-color: rgba(212,168,67,0.2);
}

.history-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.history-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== PORTFOLIO FILTER ==================== */
.portfolio-filter .btn-dark.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}
