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

:root {
    --gold: #C9A84C;
    --blue: #1B3A6B;
    --terra: #C4622D;
    --dark: #0e0e0e;
    --dark2: #161616;
    --card-bg: #1a1a1a;
    --text: #e8e0d0;
    --text-muted: #a09880;
    --white: #fff;
    --radius: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 60px;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold);
    white-space: nowrap;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.burger {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Registan_Samarkand.jpg/1280px-Registan_Samarkand.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(15px, 2.5vw, 20px);
    color: var(--text);
    margin-bottom: 36px;
    opacity: 0.9;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 22px;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 32px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: #e0bb5e;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 20px;
}

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

.section-gold {
    background: linear-gradient(135deg, #1a1200 0%, #0e0e0e 100%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(26px, 5vw, 44px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 40px;
    font-size: 16px;
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, 0.3);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 14px;
}

.card-gold {
    background: rgba(201, 168, 76, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.card-gold .card-body h3 {
    color: var(--gold);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 2px solid rgba(201, 168, 76, 0.3);
}

.tl-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 20px;
}

.tl-dot {
    position: absolute;
    left: -37px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--dark2);
}

.tl-content h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 6px;
}

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

/* ===== CITY GRID ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.city-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.city-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.city-card:hover .city-img {
    transform: scale(1.04);
}

.city-card p {
    text-align: center;
    padding: 10px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 14px;
    background: var(--card-bg);
}

/* ===== TWO COL ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

.col-img img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.col-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    color: var(--text);
    font-size: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

/* ===== STATS ===== */
.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ===== FIGURES ===== */
.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.figure-card {
    padding: 24px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.figure-card:hover {
    border-color: var(--gold);
}

.figure-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.figure-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.figure-dates {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 10px;
}

.figure-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== MYTHS ===== */
.myths-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.myth-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: start;
}

.myth-col {
    padding: 20px;
    border-radius: var(--radius);
}

.myth-col.myth {
    background: rgba(196, 98, 45, 0.08);
    border: 1px solid rgba(196, 98, 45, 0.2);
}

.myth-col.fact {
    background: rgba(46, 160, 80, 0.08);
    border: 1px solid rgba(46, 160, 80, 0.2);
}

.myth-col p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
}

.arrow {
    color: var(--gold);
    font-size: 24px;
    padding-top: 24px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
}

.tag-red {
    background: rgba(196, 98, 45, 0.2);
    color: #e07050;
}

.tag-green {
    background: rgba(46, 160, 80, 0.2);
    color: #50c070;
}

/* ===== BLOG ===== */
card-img
.blog-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
/* s */
.read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    letter-spacing: 1px;
}

/* ===== CONTACT ===== */
.contact-wrap {
    max-width: 600px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.input:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

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

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #080808;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-sub {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(201, 168, 76, 0.4);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(14, 14, 14, 0.98);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        font-size: 15px;
        padding: 10px 16px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .myth-item {
        grid-template-columns: 1fr;
    }

    .arrow {
        display: none;
    }

    .section {
        padding: 60px 16px;
    }
}

@media (max-width: 480px) {
    .city-grid {
        grid-template-columns: 1fr;
    }

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

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

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* ===== ABOUT SECTION ===== */

.about-section {
    display: flex;
    min-height: 580px;
    background: #0a0a0a;
}

/* LEFT — katta rasm */
.about-left {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    background: #0c0b08;
    border-right: 1px solid #1e1e1e;
    overflow: hidden;
}

.about-img-box {
    width: 100%;
    height: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.85);
}

.about-ph-icon {
    font-size: 5rem;
    color: #c9a227;
    opacity: 0.25;
    line-height: 1;
}

.about-ph-text {
    font-size: 0.65rem;
    color: #2e2e2e;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
}

.about-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.about-name-overlay .about-name {
    font-size: 1.7rem;
    font-family: Georgia, serif;
    font-style: italic;
    color: #e8e0cc;
}

.about-name-overlay .about-title {
    font-size: 0.62rem;
    color: #c9a227;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* RIGHT — ma'lumot + ijtimoiy */
.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.8rem 2.5rem;
}

.about-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.about-heading {
    font-size: 1.7rem;
    font-family: Georgia, serif;
    color: #e8e0cc;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-heading em {
    font-style: italic;
    color: #c9a227;
}

.about-line {
    width: 36px;
    height: 2px;
    background: #c9a227;
    opacity: 0.6;
    margin-bottom: 1.2rem;
}

.about-desc {
    font-size: 0.83rem;
    line-height: 1.85;
    color: #777;
    margin-bottom: 0.8rem;
    font-family: Arial, sans-serif;
}

.about-desc strong {
    color: #c9a227;
    font-weight: normal;
}

.about-sep {
    width: 100%;
    height: 1px;
    background: #1a1a1a;
    margin: 1.8rem 0 1.4rem;
}

.about-soc-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.9rem;
    font-family: Arial, sans-serif;
}

/* Social cards */
.about-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-soc {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0e0e0e;
    border: 1px solid #1e1e1e;
    padding: 0.75rem 1.1rem;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.about-soc:hover {
    border-color: #c9a227;
    background: #111008;
}

.about-soc:hover .about-soc-name {
    color: #c9a227;
}

.about-soc:hover .about-soc-icon {
    opacity: 1;
}

.about-soc:hover .about-soc-arr {
    color: #c9a227;
}

.about-soc:hover .about-soc-icon-box {
    border-color: #c9a227;
}

.about-soc-icon-box {
    width: 38px;
    height: 38px;
    border: 1px solid #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.about-soc-icon {
    width: 20px;
    height: 20px;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.about-soc-info {
    flex: 1;
}

.about-soc-name {
    font-size: 0.82rem;
    font-weight: bold;
    color: #c8bca0;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    display: block;
    transition: color 0.2s;
    font-family: Arial, sans-serif;
}

.about-soc-handle {
    font-size: 0.68rem;
    color: #3a3a3a;
    display: block;
    margin-top: 2px;
    font-family: Arial, sans-serif;
}

.about-soc-arr {
    font-size: 0.9rem;
    color: #2a2a2a;
    transition: color 0.2s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
    }

    .about-img-box {
        min-height: 320px;
    }

    .about-right {
        padding: 2rem 1.5rem;
    }

    .about-heading {
        font-size: 1.4rem;
    }
}