:root {
    --gold: #D4AF37;
    --gold-light: #f3c63a;
    --bg-darkest: #050505;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-section: #0f0f0f;
    --text-white: #f5f5f5;
    --text-light: #cccccc;
    --text-muted: #999999;
    --border: #222222;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #ffffff; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 8px; color: var(--gold); }
.section-subtitle { text-align: center; font-size: 15px; color: var(--text-muted); margin-bottom: 50px; }
.gold { color: var(--gold); }
.en { color: var(--text-muted); font-size: 0.85em; font-style: italic; }

.lang-switch { display: flex; gap: 6px; margin-left: 24px; }
.lang-switch a { padding: 4px 12px; border-radius: 3px; font-size: 13px; }
.lang-switch a.active { background: var(--gold); color: #000; font-weight: bold; }
.lang-switch a:not(.active) { color: var(--text-muted); border: 1px solid var(--border); }

/* ===== Header ===== */
header {
    background: rgba(0,0,0,0.95);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { width: 40px; height: 40px; border-radius: 50%; }
.logo-text { font-size: 24px; font-weight: bold; color: var(--gold); letter-spacing: 3px; }
.logo-text small { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 0; font-weight: normal; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 15px; color: var(--text-light); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}
.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 25%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 40%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 55%; animation-delay: 0.5s; }
.hero-particles span:nth-child(5) { left: 70%; animation-delay: 3s; }
.hero-particles span:nth-child(6) { left: 85%; animation-delay: 1.5s; }
.hero-particles span:nth-child(7) { left: 50%; animation-delay: 4s; }
.hero-particles span:nth-child(8) { left: 95%; animation-delay: 2.5s; }
@keyframes float-particle {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-20vh); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.hero h1 { font-size: 48px; color: var(--gold); margin-bottom: 15px; line-height: 1.2; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero .sub-title { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.hero .en-title { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
.hero .tagline { font-size: 15px; color: var(--gold); letter-spacing: 4px; margin-bottom: 30px; }
.hero p { font-size: 17px; color: var(--text-light); margin-bottom: 40px; max-width: 750px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.btn-primary:hover { background: var(--gold-light); color: #000; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }
.btn-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 38px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: #000; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); } 50% { box-shadow: 0 0 20px 5px rgba(212,175,55,0.15); } }

/* ===== Trust Bar ===== */
.trust-bar {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px 35px; }
.trust-item { font-size: 14px; font-weight: bold; color: var(--text-white); white-space: nowrap; }
.trust-item span { color: var(--gold); margin-right: 6px; }

/* ===== About ===== */
.about { padding: 80px 0; background: var(--bg-section); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-text h2 { font-size: 30px; color: var(--gold); margin-bottom: 20px; }
.about-text p { color: var(--text-light); font-size: 15px; margin-bottom: 15px; }
.about-text .about-link {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: var(--gold);
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}
.about-text .about-link:hover { background: var(--gold-light); }

/* ===== Stats ===== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .stat-number { font-size: 48px; font-weight: bold; color: var(--gold); display: block; }
.stat-item .stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* ===== Advantages ===== */
.advantages { padding: 80px 0; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.adv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.adv-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.adv-card:hover::before { opacity: 1; }
.adv-card .icon { font-size: 45px; margin-bottom: 18px; display: block; }
.adv-card h3 { color: var(--gold); font-size: 22px; margin-bottom: 12px; }
.adv-card .en-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
.adv-card p { color: var(--text-light); font-size: 14px; line-height: 1.8; }

/* ===== Companions ===== */
.companions { padding: 80px 0; background: var(--bg-section); }
.comp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.comp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s;
}
.comp-card:hover { transform: translateY(-8px) scale(1.02); border-color: var(--gold); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.comp-img {
    width: 100%;
    height: 340px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 13px;
    text-align: center;
    padding: 10px;
    overflow: hidden;
}
.comp-img img { width: 100%; height: 100%; object-fit: cover; }
.comp-info { padding: 20px; }
.comp-info h3 { font-size: 18px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.comp-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 5px; }
.badge { background: rgba(212,175,55,0.15); color: var(--gold); padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: bold; }
.comp-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-size: 14px; color: var(--gold); }
.comp-rating .stars { letter-spacing: 1px; }
.comp-rating .score { font-weight: bold; }
.comp-rating .review-count { color: var(--text-muted); font-size: 12px; }
.comp-cta { text-align: center; margin-top: 40px; }
.comp-cta a { display: inline-block; padding: 14px 35px; border: 2px solid var(--gold); color: var(--gold); font-weight: bold; border-radius: 6px; transition: all 0.3s; }
.comp-cta a:hover { background: var(--gold); color: #000; }

/* ===== Services ===== */
.services { padding: 80px 0; }
.srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.srv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.4s;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.srv-card:hover { border-color: var(--gold); transform: translateX(5px); }
.srv-icon { font-size: 36px; flex-shrink: 0; }
.srv-card h3 { color: var(--gold); font-size: 20px; margin-bottom: 8px; }
.srv-card .en-sub { color: var(--text-muted); font-size: 12px; margin-bottom: 12px; }
.srv-card p { color: var(--text-light); font-size: 14px; margin-bottom: 8px; }
.srv-card a { color: var(--gold); font-size: 13px; margin-top: 10px; display: inline-block; }
.srv-card a:hover { text-decoration: underline; }

/* ===== Districts ===== */
.districts { padding: 80px 0; background: var(--bg-section); }
.dist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.dist-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.dist-card:hover { transform: scale(1.03); border-color: var(--gold); }
.dist-card img { width: 100%; height: 100%; object-fit: cover; }
.dist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}
.dist-overlay h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.dist-overlay .en-name { color: var(--gold); font-size: 12px; margin-bottom: 8px; }
.dist-overlay p { color: var(--text-light); font-size: 13px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--gold); }
.faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-white);
}
.faq-q .icon-toggle { color: var(--gold); font-size: 20px; transition: transform 0.3s; }
.faq-q .en-q { font-size: 12px; color: var(--text-muted); font-weight: normal; margin-left: 10px; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 28px 22px; }
.faq-item.open .icon-toggle { transform: rotate(45deg); }
.faq-a p { color: var(--text-light); font-size: 14px; margin-bottom: 8px; }

/* ===== Footer ===== */
footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-brand .f-logo img { width: 36px; height: 36px; border-radius: 50%; }
.footer-brand .f-logo span { font-size: 22px; font-weight: bold; color: var(--gold); letter-spacing: 2px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; line-height: 1.8; }
.footer-col h4 { color: var(--gold); font-size: 16px; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
}
.footer-bottom p { margin-bottom: 6px; }
.footer-seo { color: var(--text-muted); font-size: 11px; margin-top: 10px; opacity: 0.6; }

/* ===== Scroll to top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .comp-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; gap: 10px; }
    .nav-right { flex-direction: column; align-items: center; gap: 10px; }
    .nav-links { gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 13px; }
    .nav-links a { font-size: 13px; }
    .lang-switch { position: fixed; right: 12px; top: 50%; transform: translateY(-50%); flex-direction: column; margin-left: 0; z-index: 1100; gap: 4px; }
    .hero h1 { font-size: 30px; }
    .hero .en-title { font-size: 15px; }
    .hero p { font-size: 15px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { grid-template-columns: 1fr; }
    .comp-grid { grid-template-columns: 1fr; }
    .srv-grid { grid-template-columns: 1fr; }
    .dist-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 26px; }
    .stat-item .stat-number { font-size: 36px; }
}
