/*
Theme Name: 한국금거래소 안성공도점
Theme URI: http://anseonggold.co.kr
Author: Anseong Gold
Description: 한국금거래소 안성공도점 공식 홈페이지 워드프레스 테마
Version: 1.0.0
Text Domain: anseonggold
*/

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

:root {
    --gold: #D4AF37;
    --gold-light: #F5E6A3;
    --gold-dark: #B8960C;
    --dark: #1a1a1a;
    --dark-bg: #111111;
    --dark-card: #1e1e1e;
    --dark-border: #333333;
    --white: #ffffff;
    --gray: #999999;
    --gray-light: #cccccc;
    --text: #e0e0e0;
    --font-main: 'Noto Sans KR', sans-serif;
    --font-title: 'Noto Serif KR', serif;
    --max-width: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-border);
    transition: background 0.3s ease;
}

.header-top {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--dark-border);
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-top-info {
    display: flex;
    gap: 20px;
    color: var(--gray);
}

.header-top-info a {
    color: var(--gray);
    font-size: 0.85rem;
}

.header-top-info a:hover {
    color: var(--gold);
}

.header-main {
    padding: 0;
    height: var(--header-height);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .logo-img {
    height: 40px;
    width: auto;
}

.site-logo .branch-name {
    font-size: 0.85rem;
    color: var(--gray-light);
    letter-spacing: 2px;
    font-weight: 500;
    border-left: 1px solid var(--dark-border);
    padding-left: 10px;
}

.header-phone {
    font-size: 0.9rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--dark-border);
    letter-spacing: 1px;
}
.header-phone:hover {
    color: var(--gold-light);
}

.header-hours {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid var(--dark-border);
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 0;
}

.main-nav ul li a {
    display: block;
    padding: 0 22px;
    line-height: var(--header-height);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--gold);
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 60%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
    transition: all 0.3s ease;
}

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

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

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

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .gold {
    color: var(--gold);
    display: block;
    font-size: 4.5rem;
    margin-top: 5px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 15px;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-open-date {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    margin-top: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-contact {
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-contact a:hover {
    background: var(--gold);
    color: var(--dark);
}

.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero-scroll-down span {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Countdown ===== */
.countdown-wrap {
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.7s both;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-number {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 4px;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.5;
    margin-top: -12px;
}

/* ===== Progress Timeline ===== */
.progress-section {
    background: var(--dark-bg);
    position: relative;
}

.progress-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.progress-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 40px;
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--dark-bg);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.timeline-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.timeline-card:hover .timeline-img img {
    transform: scale(1.05);
}

.timeline-content {
    padding: 20px;
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 6px;
    padding: 2px 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

.timeline-content h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Section Common ===== */
.section {
    padding: 100px 0;
}

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

.section-header .section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 0;
}

/* ===== Gold Price Section ===== */
.gold-price-section {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.price-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    background: var(--dark-card);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table thead {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
}

.price-table th {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    border-bottom: 2px solid var(--gold);
    letter-spacing: 1px;
}

.price-table th .th-sub {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 2px;
}

.price-table th.col-metal {
    text-align: left;
    width: 30%;
}

.price-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
    font-size: 1rem;
    transition: background 0.3s ease;
}

.price-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.metal-label {
    text-align: left !important;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.metal-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gold-dot { background: #D4AF37; }
.gold18-dot { background: #E8C252; }
.gold14-dot { background: #F0D68A; }
.pt-dot { background: #A0A0A0; }
.silver-dot { background: #C0C0C0; }

.buy-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.05rem;
}

.product-price-note {
    color: var(--gray) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    font-style: italic;
}

.sell-price {
    color: #3498db;
    font-weight: 700;
    font-size: 1.05rem;
}

.change-val {
    font-weight: 600;
    font-size: 0.9rem;
}

.change-val.up {
    color: #e74c3c;
}

.change-val.down {
    color: #3498db;
}

.price-notice {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}

@media (max-width: 600px) {
    .price-table th, .price-table td {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
    .buy-price, .sell-price {
        font-size: 0.9rem;
    }
    .metal-label {
        font-size: 0.85rem;
    }
}

/* ===== Services Section ===== */
.services-section {
    background: var(--dark-bg);
}

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

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image .placeholder-img {
    font-size: 4rem;
    opacity: 0.3;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.about-content h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content h3 span {
    color: var(--gold);
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--dark-card);
    border-radius: 8px;
    border: 1px solid var(--dark-border);
}

.about-feature-item .check-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.about-feature-item span {
    font-size: 0.9rem;
    color: var(--text);
}

/* ===== Products Section ===== */
.products-section {
    background: var(--dark-bg);
}

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

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-card .product-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-info h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.product-card .product-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== Location Section ===== */
.location-section {
    background: var(--dark);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/14;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 30px;
}

.location-detail {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--dark-border);
}

.location-detail:last-child {
    border-bottom: none;
}

.location-detail .detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.location-detail .detail-content h4 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.location-detail .detail-content p {
    font-size: 1rem;
    color: var(--white);
}

.location-detail .detail-content a {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ===== Directions Box ===== */
.directions-box {
    margin-top: 24px;
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
}

.directions-box h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.directions-input-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.directions-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s;
}

.directions-input:focus {
    border-color: var(--gold);
}

.directions-input::placeholder {
    color: var(--gray);
}

.gps-btn {
    padding: 10px 14px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-main);
    transition: opacity 0.3s;
}

.gps-btn:hover {
    opacity: 0.85;
}

.gps-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.directions-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.dir-btn {
    flex: 1;
    padding: 10px 8px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.dir-btn:hover,
.dir-btn.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.directions-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.dir-label {
    width: 100%;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.dir-step {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.map-link {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.map-link:hover {
    opacity: 0.8;
}

.map-link.kakao {
    background: #FEE500;
    color: #191919;
}

.map-link.naver {
    background: #03C75A;
    color: #fff;
}

.map-link.tmap {
    background: #EF4123;
    color: #fff;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--dark);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* ===== Footer ===== */
.site-footer {
    background: #0a0a0a;
    padding: 60px 0 0;
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-border);
}

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

.footer-brand .footer-logo .footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-brand .footer-logo .logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark);
    font-size: 1.1rem;
}

.footer-brand .footer-logo span {
    font-family: var(--font-title);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

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

.footer-col ul li a {
    color: var(--gray);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #555;
}

.footer-business-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--dark-border);
}

.footer-business-info p {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.8;
}

/* ===== Page Template ===== */
.page-hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    background: var(--dark);
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
}

.page-hero h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--gray);
    font-size: 1rem;
}

.page-content {
    padding: 60px 0;
}

.page-content .container {
    max-width: 900px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .header-top {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-bg);
        border-left: 1px solid var(--dark-border);
        transition: right 0.3s ease;
        padding-top: var(--header-height);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li a {
        padding: 15px 30px;
        line-height: 1.5;
        border-bottom: 1px solid var(--dark-border);
    }

    .main-nav ul li a::after {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .gold {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .price-card {
        padding: 20px 15px;
    }

    .price-card .price-value {
        font-size: 1.3rem;
    }

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

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    /* Timeline mobile */
    .progress-timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 12px;
        right: auto;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-title .gold {
        font-size: 2.2rem;
    }

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

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

    .site-logo .logo-text .brand-name {
        font-size: 1rem;
    }
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}

/* Scroll animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
