:root {
    --text-color: #ffffff;
    --primary-font: 'Outfit', sans-serif;
    --logo-font: 'Satisfy', cursive;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --pill-bg: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: var(--primary-font);
    background-color: #1a1a1a; /* Основной темный фон (для первого блока) */
    color: #eeeeee;
    overflow-x: hidden;
    padding: 0;
}

/* Чередование фонов для разделения блоков */
.activity-section {
    background-color: #f9f9f9; /* Легкое затенение для 2-го блока */
}

.packages-section {
    background-color: #ffffff; /* Белый для 3-го блока */
}

.doc-section {
    background-color: #f5f5f5; /* Чуть более выраженное затенение для 4-го блока */
}

.steps-section {
    background-color: #ffffff; /* Белый для 5-го блока */
}

/* Обертка для футера, чтобы подложка была белой */
.footer-underlay {
    background-color: #ffffff;
    padding-bottom: 40px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background: url('images%20/3R7A5674111big.jpg') no-repeat center center/cover;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Dark overlay gradient */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Navbar Fix: Center menu properly */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 30px 60px;
    width: 100%;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.navbar.scrolled {
    padding: 20px 60px;
}

.navbar>* {
    pointer-events: auto;
}

.logo {
    font-family: var(--logo-font);
    font-size: 2.8rem;
    font-weight: 400;
    color: #eeeeee;
    cursor: pointer;
    text-align: left;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-links a {
    color: #eeeeee;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    background: #eeeeee;
    color: #000;
    font-weight: 600;
}

.btn-book {
    text-decoration: none;
    color: #eeeeee;
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    justify-self: end;
}

.btn-book:hover {
    background: #eeeeee;
    color: #000;
    transform: translateY(-2px);
}

.btn-book .arrow {
    background: #eeeeee;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    justify-self: end;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    display: block;
    border-radius: 2px;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2500;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80vw, 320px);
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 100px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: right 0.3s ease;
    z-index: 3000;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 0;
}

.mobile-nav .btn-book-mobile {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
}

.mobile-nav .btn-book-mobile .arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Hero Content Fix */
.hero-content {
    position: relative;
    z-index: 5;
    padding: 160px 60px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.top-content {
    text-align: center;
}

.tag-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #eeeeee;
}

.main-title {
    font-size: 5.2rem;
    text-align: center;
    line-height: 1.1;
    font-weight: 300;
    background: linear-gradient(180deg, #eeeeee 85%, rgba(238, 238, 238, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.tour-left {
    max-width: 350px;
}

.tour-title {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.tour-date {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.participants {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-right: -12px;
    object-fit: cover;
}

.count {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.joined-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tour-description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 25px;
}

.btn-book-hero {
    display: inline-flex;
    text-decoration: none;
    color: black;
    background: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.btn-book-hero .arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Cards Preview Fix: Smaller cards */
.cards-preview {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.card-item {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    width: 130px;
    height: 280px;
    transition: all 0.5s ease;
}

.card-item.active {
    width: 380px;
    overflow: visible;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

.sunrise-card {
    background-image: url('images%20/027633.jpg');
}

.mountain-card {
    background-image: url('images%20/599A1826111big.jpg');
}

.landscape-card {
    background-image: url('images%20/599A1296111big%201.jpg');
}

.other-card {
    background-image: url('images%20/599A1163111big.jpg');
}

.card-footer {
    padding-top: 20px;
    color: white;
}

.card-footer .card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.card-footer h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

.card-footer .time {
    font-size: 1.1rem;
    opacity: 0.8;
}

.card-footer p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.7;
    max-width: 350px;
}

/* Footer Info Fix */
.hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.pagination {
    font-size: 3.5rem;
    font-weight: 500;
}

.pagination .total {
    font-size: 1.5rem;
    opacity: 0.6;
}

.progress-container {
    flex: 1;
    max-width: 600px;
    margin-left: 100px;
}

.progress-bar-hero {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}

.progress-bar-hero .fill {
    width: 40%;
    height: 100%;
    background: white;
    border-radius: 2px;
    position: absolute;
    right: 0;
}

/* =========================================
   ACTIVITY SECTION STYLES
   ========================================= */

.activity-section {
    padding: 80px 40px;
    text-align: center;
}

.activity-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.plus-icon {
    font-size: 1.2rem;
    line-height: 0.5;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #111;
}

.section-title .highlight {
    color: #666;
}

.activity-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: #f5f5f5;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--primary-font);
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e0e0e0;
}

.filter-btn.active {
    background: #111;
    color: #fff;
}

/* Slider Area */
.activity-slider-container {
    padding: 20px 0;
    overflow-x: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0;
    width: max-content;
    min-width: 100%;
}

/* Cards in slider */
.slide-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.slide-card.small {
    width: 180px;
    height: 350px;
    opacity: 1;
    border-radius: 30px;
}

.slide-card.active-featured {
    width: 350px;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.slide-card.active-featured .slide-image.main {
    height: 350px;
    width: 350px;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.info-top h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-arrow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.slide-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #111;
}

.nav-btn:hover {
    border-color: #111;
    background: #f9f9f9;
}

.slider-progress {
    flex-grow: 1;
    height: 2px;
}

.bar-bg {
    width: 100%;
    height: 2px;
    background: #eee;
    position: relative;
    border-radius: 2px;
}

.bar-fill {
    width: 30%;
    height: 100%;
    background: #111;
    border-radius: 2px;
    position: absolute;
    left: 0;
}

/* --- Packages Section --- */
.packages-section {
    padding: 100px 40px;
}

.packages-section .section-title {
    color: #111;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pkg-card-wrapper {
    position: relative;
    height: 480px;
}

.pkg-card {
    height: 100%;
    border-radius: 80px 30px 30px 140px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    transition: all 0.3s ease;
}

.pkg-card.dark {
    background: #2b2b2b;
    color: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pkg-card.light {
    background: #e0e0e0;
    color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pkg-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.pkg-price-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.pkg-price-area .price {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--primary-font);
}

.pkg-price-area .unit {
    font-size: 1rem;
    opacity: 0.6;
    margin-top: 5px;
    font-weight: 500;
}

.pkg-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
    text-align: left;
    max-width: 180px;
}

.pkg-bottom {
    margin-top: auto;
    padding-bottom: 20px;
    padding-left: 10px;
}

.pkg-title {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    font-family: var(--primary-font);
}

.pkg-action-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 135px;
    height: 135px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    border-radius: 60px 20px 20px 20px;
    z-index: 2;
    text-align: center;
}

.pkg-action-btn.dark-btn {
    background: #444444;
    color: #fff;
    box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.2);
}

.pkg-action-btn.light-btn {
    background: #f5f5f5;
    color: #111;
    box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.05);
}

.pkg-action-btn .arrow-icon {
    font-size: 1.8rem;
    display: block;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* --- Documentation Section --- */
.doc-section {
    padding: 100px 60px;
}

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

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.doc-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.header-desc {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: right;
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.sub-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.sub-label-dark {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.review-text {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
}

.reviewer-loc {
    font-size: 0.85rem;
    color: #888;
}

.tag-row {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
}

.tag-pill-light {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #eee;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
}

.include-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.include-tag {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.include-tag:hover {
    background: #f9f9f9;
    border-color: #ddd;
}

.main-doc-card {
    position: relative;
    height: 550px;
    border-radius: 35px;
    overflow: hidden;
}

.main-doc-card .card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.main-doc-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

.card-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.card-place {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
}

.card-nav {
    display: flex;
    gap: 12px;
}

.doc-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.doc-nav-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.video-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.video-preview {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-info {
    padding: 25px 0;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.video-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

.view-all-wrapper {
    margin-top: 20px;
}

.btn-view-all {
    width: 100%;
    padding: 12px 12px 12px 30px;
    border-radius: 40px;
    border: 1px solid #111;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #111;
    color: #fff;
}

.play-icon-circle {
    width: 45px;
    height: 45px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    padding-left: 2px;
    transition: all 0.3s ease;
}

.btn-view-all:hover .play-icon-circle {
    background: #fff;
    color: #111;
}

/* --- Steps Section --- */
.steps-section {
    padding: 0;
    border-top: 1px solid #eee;
}

.steps-container {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.steps-intro {
    flex: 0 0 35%;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.steps-main-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.steps-intro-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.btn-steps-book {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 10px 10px 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-steps-book:hover {
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-steps-book .arrow-circle {
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-steps-book:hover .arrow-circle {
    transform: rotate(45deg);
}

.steps-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border-left: 1px solid #eee;
}

.step-item {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-item:nth-child(1) { border-bottom: 1px solid #eee; }
.step-item:nth-child(2) { border-left: 1px solid #eee; border-bottom: 1px solid #eee; }
.step-item:nth-child(4) { border-left: 1px solid #eee; }

.step-number {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-desc {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
    }
    .steps-intro {
        flex: 1;
        padding: 80px 40px;
    }
    .steps-grid {
        border-left: none;
        border-top: 1px solid #eee;
    }
}

/* --- Footer Section --- */
.footer-section {
    background-color: #111111;
    color: #eeeeee;
    padding: 80px 60px 40px;
    border-radius: 40px;
    margin: 0 40px;
    position: relative;
    z-index: 10;
    border: none;
}

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

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}

.cta-text p {
    font-size: 1.1rem;
    color: #888;
}

.cta-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 450px;
}

.footer-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 1rem;
    outline: none;
}

.footer-input::placeholder {
    color: #666;
}

.btn-subscribe {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #eeeeee;
    transform: scale(1.05);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer-main {
    display: flex;
    gap: 100px;
    margin-bottom: 80px;
}

.footer-brand {
    flex: 0 0 400px;
}

.footer-brand .logo {
    margin-bottom: 25px;
    font-size: 2.4rem;
    color: #fff;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #888;
    margin-bottom: 25px;
}

.more-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.more-link:hover {
    gap: 12px;
}

.footer-nav-columns {
    flex: 1;
}

.footer-nav-row {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-nav-row a {
    color: #888;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-nav-row a:hover {
    color: #fff;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.info-col p, .info-col a {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.info-col a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #eeeeee;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .footer-main {
        flex-direction: column;
        gap: 60px;
    }
    .footer-brand {
        flex: none;
        max-width: 600px;
    }
}

@media (max-width: 900px) {
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .cta-form {
        width: 100%;
    }
    .footer-nav-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .navbar {
        grid-template-columns: 1fr auto;
        padding: 20px 24px;
    }

    .nav-links,
    .btn-book {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: 75vh;
        border-radius: 24px 24px 0 0;
    }

    .hero-content {
        padding: 120px 24px 24px;
        gap: 30px;
    }

    .tag-pill {
        font-size: 0.9rem;
        padding: 6px 16px;
    }

    .main-title {
        font-size: 3rem;
        line-height: 1.15;
    }

    .bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .tour-left {
        max-width: 100%;
    }

    .cards-preview {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .card-item {
        width: 220px;
        height: 240px;
    }

    .card-item.active {
        width: 260px;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pagination {
        font-size: 2.4rem;
    }

    .progress-container {
        max-width: 100%;
        margin-left: 0;
    }

    .activity-section {
        padding: 60px 24px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .activity-filters {
        justify-content: flex-start;
    }

    .slide-card.small {
        width: 140px;
        height: 220px;
    }

    .slide-card.active-featured {
        width: 260px;
    }

    .slide-card.active-featured .slide-image.main {
        width: 260px;
        height: 260px;
    }

    .slider-controls {
        max-width: 100%;
        gap: 20px;
    }

    .nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .packages-section {
        padding: 70px 24px;
    }

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

    .pkg-card-wrapper {
        height: 420px;
    }

    .pkg-card {
        padding: 30px;
        border-radius: 50px 24px 24px 90px;
    }

    .pkg-title {
        font-size: 1.8rem;
    }

    .pkg-action-btn {
        width: 110px;
        height: 110px;
    }

    .doc-section {
        padding: 70px 24px;
    }

    .doc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-desc {
        text-align: left;
    }

    .doc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-doc-card {
        height: 320px;
    }

    .video-preview {
        height: 180px;
    }

    .steps-container {
        flex-direction: column;
    }

    .steps-intro {
        padding: 60px 24px;
    }

    .steps-main-title {
        font-size: 2.6rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: 1px solid #eee;
    }

    .step-item {
        padding: 40px 24px;
        border-bottom: 1px solid #eee;
    }

    .step-item:nth-child(2),
    .step-item:nth-child(4) {
        border-left: none;
    }

    .step-item:nth-child(4) {
        border-bottom: none;
    }

    .footer-section {
        margin: 0 16px;
        padding: 60px 24px 32px;
        border-radius: 28px;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .cta-form {
        flex-direction: column;
        padding: 12px;
        width: 100%;
    }

    .footer-input {
        padding: 12px 16px;
    }

    .btn-subscribe {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 2.4rem;
    }

    .tag-pill {
        text-align: center;
    }

    .tour-title {
        font-size: 1.4rem;
    }

    .tour-date {
        font-size: 1rem;
    }

    .tour-description {
        font-size: 0.9rem;
    }

    .btn-book-hero {
        padding: 10px 22px;
    }

    .card-item {
        width: 200px;
        height: 220px;
    }

    .card-item.active {
        width: 240px;
    }

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

    .slide-card.small {
        width: 120px;
        height: 200px;
    }

    .slide-card.active-featured {
        width: 230px;
    }

    .slide-card.active-featured .slide-image.main {
        width: 230px;
        height: 230px;
    }

    .pkg-card-wrapper {
        height: 380px;
    }

    .pkg-action-btn {
        width: 96px;
        height: 96px;
    }

    .card-overlay {
        padding: 24px;
    }
}
