:root {
    --bg: #ffffff;
    --card: #12192b;
    --muted: #8892a6;
    --text: #e8ecf3;
    --accent: #35d7bb;
    --accent-2: #6aa8ff;
    --ring: 0 0 0 3px rgba(53, 215, 187, 0.35);
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.18);
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    background: linear-gradient(180deg, #0b1020, #0d1426 30%, #0e1428);
    color: var(--text);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
    border-radius: 14px;
}
.container {
    width: min(1100px, 92%);
    margin-inline: auto;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid #243049;
    color: #bcd0ff;
    border-radius: 999px;
    background: #0f1630;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: #06231e;
    font-weight: 700;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    border: 0;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn.secondary {
    background: #1a2338;
    color: #ffffff;
    border: 1px solid #263353;
    background-color: rgb(0, 98, 255)
}
.btn.ghost {
    background: transparent;
    border: 1px solid #2a375c;
    color: #bcd0ff;
}
.tag {
    font-size: 0.8rem;
    color: #bcd0ff;
    background: #142040;
    border: 1px solid #24345e;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 12, 24, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.brand .logo {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50vh;
    background: white;
    box-shadow: 0 6px 16px rgba(53, 215, 187, 0.35);
}
.brand span span {
    font-size: 12px;
    font-weight: normal;
}
nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
nav a {
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    color: #cfe3ff;
}
nav a:hover {
    background: #121a33;
}
.actions {
    display: flex;
    gap: 0.6rem;
}

.documents {
    padding: 100px 0;
    background: rgba(0,0,0,.15);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    max-width: 1000px;
    margin: 40px auto 0;
}

.doc-card {
    display: block;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;
    overflow: hidden;

    text-decoration: none;
    color: inherit;

    transition: .3s;
}

.doc-card:hover {
    transform: translateY(-5px);
}

.doc-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.doc-info {
    padding: 20px;
    text-align: center;
}

.doc-info h3 {
    margin-bottom: 8px;
}

.doc-info span {
    color: #888;
    font-size: 14px;
}
.doc-card img {
    aspect-ratio: 210 / 297;
    height: auto;
    object-fit: cover;
}

/* Mobile nav */
#menu-toggle {
    display: none;
}
.menu-btn {
    display: none;
    padding: 0.55rem 0.8rem;
    border: 1px solid #2a375c;
    border-radius: 12px;
}
@media (max-width: 860px) {
    nav ul {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #0f1630;
        border-bottom: 1px solid #1f2b4a;
        padding: 1rem 0.9rem;
    }
    #menu-toggle:checked + label + nav ul {
        display: flex;
        flex-direction: column;
    }
    .menu-btn {
        display: inline-flex;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 400px;
    background: #000;
    overflow: hidden;  
    text-align: left;
}
.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #000 0%,
        rgba(0,0,0,.8) 20%,
        rgba(0,0,0,0) 50%
    );

    z-index: 2;
}

.hero-grid {
    position: relative;
    z-index: 3;

    color: #fff;
    padding: 0 20px;
    max-width: 600px;
}
.hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.15;
    margin: 0.3rem 0 0.6rem;
}
.hero p {
    color: var(--muted);
    max-width: 640px;
}
.hero .cta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.counter-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counter-item i {
    font-size: 24px;
    color: #30c3ff;
}

.counter-content {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.counter-title {
    font-size: 14px;
    color: #ccc;
    margin-top: 4px;
}

.hero-services {
    position: absolute;
    bottom: 30px;
    right: 40px;

    width: 700px;
    max-width: calc(60% - 80px);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: rgba(0, 102, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;

    z-index: 5;
    overflow: hidden;
}
.service-item {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 25px 15px;
    gap: 12px;

    color: #fff;
    text-align: center;

    transition: .3s;
}

.service-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.1);
}

.service-item:hover {
    background: rgba(255,255,255,.08);
}

.service-item i {
    font-size: 28px;
    color: #6bb8ff;
}

.service-item span {
    font-size: 14px;
    font-weight: 600;
}

.reviews {
    padding: 100px 0;
    background: #0f172a;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 10px;
}

.section-title p {
    color: #94a3b8;
}

.reviews-grid {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;
    padding: 25px;

    backdrop-filter: blur(12px);

    transition: .3s;
}

.review-card:hover {
    transform: translateY(-6px);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.review-text {
    color: #d6d6d6;
    line-height: 1.7;
    min-height: 90px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.review-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user h4 {
    color: #fff;
    margin: 0;
}

.review-user span {
    color: #94a3b8;
    font-size: 14px;
}

.stats {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    padding: 60px 40px;

    background: linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 42px;
    margin-bottom: 15px;

    background: linear-gradient(
        135deg,
        #38bdf8,
        #2563eb
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-title {
    margin-top: 10px;
    color: #cbd5e1;
    font-size: 16px;
}
@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

/* Sections */
section {
    padding: 48px 0;
}
h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin: 0 0 14px;
}
.sub {
    color: #a9b7d3;
    margin: 0 0 22px;
}

/* Services */
.grid {
    display: grid;
    gap: 16px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
.card {
    background: var(--card);
    border: 1px solid #1c2744;
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.card h3 {
    margin: 0.2rem 0 0.4rem;
    font-size: 1.05rem;
}
.card p {
    color: var(--muted);
    font-size: 0.95rem;
}
.icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, rgba(53, 215, 187, 0.15), rgba(106, 168, 255, 0.15));
    border: 1px solid #25365e;
}
.icon svg {
    width: 22px;
    height: 22px;
}

/* Destinations */
.dest img {
    height: 180px;
}
.dest .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.6rem;
}

/* Packages */
.pkg img {
    height: 160px;
    object-fit: cover;
}
.price {
    font-weight: 800;
    color: #9be8da;
}

.card.dest {
    overflow: hidden;
    border-radius: 20px;
}

.card.dest img {
    width: 100%;
    height: 220px;

    display: block;

    object-fit: cover;
    object-position: center;
}

#vizaxizmatlari .card.dest img{
    width:100%;
    height:180px;
    object-fit:cover;
    background:#fff;
}
/* Testimonials */
.testimonial {
    display: flex;
    gap: 14px;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #35d7bb, #6aa8ff);
}
.tcard {
    background: #10172b;
    border: 1px solid #1d2a4a;
    padding: 16px;
    border-radius: 16px;
}

/* CTA strip */
.strip {
    background: linear-gradient(90deg, #102038, #0e1c30);
    border: 1px solid #1f2b4a;
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Contact */
form {
    display: grid;
    gap: 12px;
}
input,
select,
textarea {
    background: #0f1730;
    border: 1px solid #233153;
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    color: #cfe3ff;
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    box-shadow: var(--ring);
    border-color: #2f9f90;
}
textarea {
    min-height: 120px;
}

/* Footer */
footer {
    padding: 30px 0 60px;
    color: #a8b7d3;
}
.fgrid {
    display: grid;
    gap: 16px;
    grid-template-columns: 2fr 1fr 1fr;
}
.fgrid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.credits {
    margin-top: 22px;
    font-size: 0.9rem;
    color: #8393b8;
}
@media (max-width: 800px) {
    .fgrid {
        grid-template-columns: 1fr;
    }
}

/* Helpers */
.row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.between {
    justify-content: space-between;
}
.muted {
    color: var(--muted);
}
.mt-2 {
    margin-top: 10px;
}
.mt-3 {
    margin-top: 16px;
}
.mt-4 {
    margin-top: 22px;
}
.center {
    text-align: center;
}

@media (max-width: 750px) {
    .hero-services {
        display: none;  
    }
    
    
}

@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .stats {
        grid-template-columns: 1fr;
    }
}