* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #58a77c;
    --secondary-color: #FF751F;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo a{
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:not(.btn-contact):hover {
    color: var(--secondary-color);
}

.nav-menu a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-contact):hover::after {
    width: 100%;
}

.btn-contact {
    padding: 10px 24px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--secondary-color);
}

.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    padding: 8px 10px;
    background: transparent;
    color: var(--white);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Raleway', sans-serif;
}

.lang-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.navbar.scrolled .lang-btn {
    border-color: rgba(44, 95, 78, 0.3);
    color: var(--text-dark);
}

.navbar.scrolled .lang-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.navbar.scrolled .lang-btn.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.lang-btn img {
    width: 30px;
    height: auto;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 95, 78, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.3);
}

.btn-hero:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 165, 116, 0.4);
}

/* Hero social icons (Telegram & WhatsApp) */
.hero-social {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.social-link {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.social-link svg {
    width: 22px;
    height: 22px;
    display: block;
}

.social-link.telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

@keyframes heroFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-social .social-link {
    animation: heroFloat 3.6s ease-in-out infinite;
}

.hero-social .social-link:nth-child(2) {
    animation-delay: 0.5s;
}

/* hide on small screens to keep layout clean */
@media (max-width: 900px) {
    .hero-social {
        display: none;
    }
}

/* Floating action button for mobile */
.fab-social {
    position: fixed;
    right: 18px;
    bottom: 10%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
    z-index: 1200;
}

.fab-toggle {
    width: 56px;
    height: 56px;
    border-radius: 20px 5px 20px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-toggle svg {
    width: 22px;
    height: 22px;
}

.fab-toggle:active {
    transform: scale(0.98);
}

.fab-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform-origin: top right;
    transition: transform 260ms cubic-bezier(.2, .9, .25, 1), opacity 200ms ease;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
}

.fab-social.open .fab-actions {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.social-link.fab {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.social-link.email {
    background: linear-gradient(135deg, #7f7fd5, #86a8e7);
}

@media (max-width: 900px) {
    .hero-social {
        display: none;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .btn-hero {
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .hero-content {
        padding-bottom: 80px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 3;
}

.scroll-indicator span {
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(15px);
        opacity: 0.3;
    }
}

.photo-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 20px;
    transform: translateY(-50%);
}

/* .slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
} */

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.modal-header {
    padding: 40px 30px 30px;
    border-bottom: 2px solid var(--bg-light);
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.modal-header h2 span {
    color: var(--secondary-color);
}

.booking-form {
    padding: 30px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(44, 95, 78, 0.1);
}

.booking-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    margin-bottom: 20px;
}

/* Payment Modal Tabs */
.payment-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--bg-light);
    padding: 0 30px;
}

.payment-tab-btn {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.payment-tab-btn:hover {
    color: var(--primary-color);
}

.payment-tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.payment-tab-content {
    display: none;
    animation: slideUp 0.3s ease;
}

.payment-tab-content.active {
    display: block;
}

/* Bank Transfer Info Styles */
.bank-info {
    padding: 30px;
}

/* Bank transfer sub-tabs (USD / EUR / UZS) */
.bank-subtabs {
    display: flex;
    gap: 8px;
    margin: 16px 0 20px;
}

.bank-subtab-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.bank-subtab-btn:hover {
    color: var(--primary-color);
}

.bank-subtab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.bank-subtab-content {
    display: none;
    animation: slideUp 0.25s ease;
}

.bank-subtab-content.active {
    display: block;
}

/* Responsive adjustments for bank transfer options */
.bank-subtabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 720px) {
    .bank-subtabs {
        flex-direction: column;
        gap: 10px;
    }

    .bank-subtab-btn {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        background: rgba(44, 95, 78, 0.03);
        border-radius: 6px;
        border-bottom: 3px solid transparent;
    }

    .bank-subtab-btn.active {
        border-bottom-color: transparent;
        border-left: 4px solid var(--secondary-color);
        color: var(--primary-color);
        background: rgba(44, 95, 78, 0.04);
    }

    .bank-details {
        padding: 12px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 0;
    }

    .bank-note {
        font-size: 0.95rem;
    }
}

@media (min-width: 721px) {
    .bank-details {
        max-width: 680px;
        margin: 0;
        padding: 20px;
    }

    .detail-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
    }
}

.bank-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.bank-details {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: var(--primary-color);
    flex: 0 0 36%;
    max-width: 36%;
}

.detail-row .value {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1 1 64%;
    text-align: right;
}

.bank-note {
    background: #e8f4f0;
    border-left: 4px solid var(--secondary-color);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.payment-form {
    padding: 30px;
}

/* Make payment form inputs/layout match booking form */
.payment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Make form inputs stack on small screens for better tap targets */
@media (max-width: 720px) {
    .payment-form .form-row {
        grid-template-columns: 1fr;
    }

    .payment-form input,
    .payment-form select,
    .payment-form textarea {
        font-size: 1rem;
        padding: 14px;
    }

    .detail-row .label,
    .detail-row .value {
        flex: none;
        text-align: left;
        width: 100%;
    }
}

.payment-form input,
.payment-form select,
.payment-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.payment-form input:focus,
.payment-form select:focus,
.payment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(44, 95, 78, 0.1);
}

.payment-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    margin-bottom: 20px;
}


.btn-book {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 78, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 64px;
    font-style: italic;
}

.payment-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.destinations {
    padding: 120px 0;
    background: var(--bg-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.destination-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.destination-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 78, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.btn-explore {
    padding: 12px 32px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.btn-explore:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

.destination-info {
    padding: 24px;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.destination-info p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.destination-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

/* Collapsed info (details) styling for destination cards */
details.collapsed-info {
    margin-bottom: 16px;
}

details.collapsed-info summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 12px;
    background: rgba(44, 95, 78, 0.04);
    border: 1px solid rgba(44, 95, 78, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

details.collapsed-info summary:hover {
    background: rgba(44, 95, 78, 0.06);
}

/* Hide default marker and use custom caret */
details.collapsed-info summary::-webkit-details-marker {
    display: none;
}

details.collapsed-info summary::after {
    content: '▾';
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-left: 12px;
    transition: transform 0.2s ease;
}

details.collapsed-info[open] summary::after {
    transform: rotate(180deg);
}

details.collapsed-info ul {
    margin-top: 12px;
    padding-left: 20px;
    color: var(--text-light);
}

details.collapsed-info li {
    margin-bottom: 8px;
}


.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.destination-meta span {
    font-size: 0.9rem;
    font-weight: 600;
}

.duration {
    color: var(--text-light);
}

.price {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.destination-reviews {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
}

.review-stars {
    font-size: 1rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.review-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.experiences {
    padding: 120px 0;
    background: var(--white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.experience-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 8px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.experience-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.experience-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.experience-card:hover .experience-icon {
    transform: rotateY(360deg);
}

.experience-icon svg {
    width: 40px;
    height: 40px;
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.experience-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.about-content.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    background: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--bg-light);
    margin-bottom: 20px;
}

.info-group p {
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.8;
}

.info-group p strong {
    color: var(--bg-light);
}

.social-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--white);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.whatsapp:hover {
    background: #1fa857;
    transform: translateY(-3px);
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.telegram:hover {
    background: #0066a0;
    transform: translateY(-3px);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.instagram:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

/* Payment section styles */
.payment-methods {
    padding: 60px 0 120px;
    background: var(--bg-light);

}

.payment-section {
    margin-top: 40px;
}

.payment-title {
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: left;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.payment-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.payment-card h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.payment-card .muted {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.card-payment-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Make payment section typography match the rest of the site */
.payment-card {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
}

.payment-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin: 0 0 8px 0;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.card-icon svg {
    width: 56px;
    height: 35px;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 12px;
}

.payment-logos img {
    width: 60px;
    height: auto;
}

.payment-logos2 {
    display: flex;
    columns: 2;
    gap: 20px;
    align-items: center;
    margin-top: 8px;

}

.payment-logos2 img {
    width: 130px;
    height: auto;
}


/* Supported payment method badges */
.supported-methods {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.supported-methods .method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.visa,
.mastercard,
.humo,
.uzcard {
    width: 40px;
    height: auto;
}

/* Ensure inputs use the same body font */
.card-payment-form input {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
}

.btn-pay {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.form-row.small {
    display: flex;
    gap: 12px;
}

.form-row.small input {
    flex: 1;
}

.btn-pay {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pay:hover {
    transform: translateY(-3px);
}

.bank-details {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 12px 0;
}

.bank-details li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 24px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #999;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

@media (max-width: 930px) {
    .language-selector {
        gap: 4px;
        margin-right: 16px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .modal-content {
        max-width: 95%;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-header {
        padding: 30px 20px 20px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .booking-form {
        padding: 20px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        padding: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text-dark);
        font-size: 1.5rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .experiences-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .social-contact {
        justify-content: flex-start;
    }

    .social-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.reviews-carousel {
    overflow: hidden;
    border-radius: 8px;
}

.review-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 20px;
}

.reviewer-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.reviewer-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.review-rating .star {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.review-prev,
.review-next {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    gap: 12px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.review-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.review-dot:hover {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }

    .review-card {
        padding: 24px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-rating {
        margin-top: 12px;
    }

    .review-prev,
    .review-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviews-controls {
        gap: 20px;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d3e 100%);
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    height: fit-content;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.btn-subscribe {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #c89460;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.8;
    opacity: 0.85;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.7;
    margin-top: 12px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: slideInUp 0.6s ease forwards;
}

/* Button Enhancements */
.btn-book,
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-book::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-book:active::before,
.btn-submit:active::before {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.destination-card,
.experience-card {
    position: relative;
    overflow: hidden;
}

.destination-card::before,
.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.destination-card:hover::before,
.experience-card:hover::before {
    left: 100%;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 50%;
    right: 18px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        animation: slideInDown 0.8s ease;
    }

    .hero-subtitle {
        animation: slideInUp 0.8s ease 0.2s both;
    }

    .btn-hero {
        animation: zoomIn 0.8s ease 0.4s both;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Accessibility Focus Styles */
body.tab-navigation *:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Print Styles */
@media print {

    .navbar,
    .footer,
    .contact,
    .newsletter,
    .btn-explore,
    .btn-contact {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}

/* Performance: Optimize for 4G */
@media (prefers-reduced-data: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}