:root {
    --primary-color: #4a6fa5;
    --primary-dark: #3a5a80;
    --primary-light: #6d8fc7;
    --secondary-color: #ff7e5f;
    --secondary-dark: #e06a4e;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --max-width: 1200px;
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    width: 100%;
}
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.explorer-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.explorer-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
}

.container {
    display: flex;
    flex-direction: column; /* Все элементы в колонку */
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Первая строка - лого и бургер */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem; /* Отступ перед меню */
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-svg {
    transition: var(--transition);
}

.logo:hover .logo-svg {
    transform: rotate(15deg);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Стили для бургер-кнопки */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* для позиционирования меню */
}

/* Бургер — обычный inline элемент */
.mobile-menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 10;
}

/* Меню скрыто по умолчанию */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;        /* начинается прямо под контейнером с бургером и логотипом */
  right: 0;
  width: 250px;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  padding: 10px;
  z-index: 9;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

/* Меню открыто */
.main-nav.open {
  display: block;
}

/* Адаптив — на больших экранах меню всегда видно */
@media (min-width: 768px) {
  .main-nav {
    position: static;
    display: block !important;
    width: auto;
    max-height: none;
    box-shadow: none;
    padding: 0;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;

}

.mobile-menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;   /* ширина бургера */
  height: 22px;  /* высота бургера */
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  box-sizing: content-box;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Анимация крестика при активном классе */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Скрываем кнопку-бургер на ширине экрана от 768px и выше */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}
/* Скрываем кнопку-бургер на ширине экрана от 768px и выше */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}
/* Стили для меню */
.main-nav {
    width: 100%;
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-nav a {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--primary-color);
}

/* Десктопная версия */
@media (min-width: 768px) {
    .main-nav ul {
        flex-direction: row;
        gap: 2rem;

    }
}

/* Мобильная версия */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
}
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.blur-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.age-modal h2 {
    margin-top: 0;
    color: #333;
}

.age-modal p {
    margin-bottom: 25px;
    color: #666;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.age-button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-button {
    background-color: #4CAF50;
    color: white;
}

.no-button {
    background-color: #f44336;
    color: white;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
        url('images/bg/1.webp') center/cover no-repeat;
    min-height: 70vh;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center; 
    justify-content: center; 
    padding: 1rem;
    position: relative;
    text-align: center;
}

.container {
    width: 100%;
    padding: 0 1rem;
}

.hero-content {
    max-width: 95%;
    margin: 0 auto;
    transform: translateY(-10%); 
}

.hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    line-height: 1.25;
    margin: 0 auto 0.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.hero-text {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    max-width: 36ch; 
}

.explorer-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    font-size: clamp(0.85rem, 3vw, 1rem);
    background-color: #4a6fa5;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

@media (max-width: 320px) {
    .hero {
        min-height: 60vh;
        padding: 0.5rem;
    }
    
    .hero-content {
        transform: translateY(-5%);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .explorer-btn {
        padding: 0.6rem 1.5rem;
    }
}
@media (min-width: 768px) {
    .hero {
        min-height: 60vh;
        background-image: url('images/bg/1.webp');
    }
    
    .hero-content {
        max-width: 80%;
        transform: translateY(0);
    }
    
    .hero-text {
        max-width: 45ch;
    }
}

@media (min-width: 1024px) {
    .hero {
        background-image: url('images/bg/1.webp');
        min-height: 65vh;
    }
    
    .hero-content {
        max-width: 700px;
    }
}
.featured-destinations {
    padding: 5rem 0;
}

.featured-destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.why-choose-us {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-card svg {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonials {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial blockquote::before {
    top: -1rem;
    left: 0;
}

.testimonial blockquote::after {
    bottom: -3rem;
    right: 0;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--primary-dark);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--light-color);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.store-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg/2.webp') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.store-hero .container {
    max-width: 100%;
    padding: 0 15px;
}

.store-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--white);
    font-family: var(--font-secondary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.store-hero p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 375px) {
    .store-hero h2 {
        font-size: 2rem;
    }
    .store-hero p {
        font-size: 1.05rem;
    }
}

@media (min-width: 480px) {
    .store-hero h2 {
        font-size: 2.2rem;
    }
    .store-hero p {
        font-size: 1.1rem;
        max-width: 85%;
    }
    .store-hero .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .store-hero {
        background-image: url('images/bg/2.webp');
        padding: 100px 0 60px;
    }
    .store-hero h2 {
        font-size: 2.5rem;
    }
    .store-hero p {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

@media (min-width: 992px) {
    .store-hero h2 {
        font-size: 3rem;
    }
    .store-hero .container {
        max-width: var(--max-width);
    }
}
.package-filters {
    padding: 3rem 0;
    background-color: var(--white);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.filter-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-group select {
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
}

.filter-btn {
    align-self: flex-end;
}

.package-grid-section {
    padding: 3rem 0 5rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-info {
    padding: 1.5rem;
}

.package-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.package-highlights {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.package-highlights li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.package-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.custom-trip {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.custom-trip h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.custom-trip p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.custom-trip .explorer-btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.custom-trip .explorer-btn:hover {
    background-color: var(--light-gray);
    color: var(--primary-dark);
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg/2.webp') no-repeat center center/cover;
    color: var(--white);
    padding: 70px 0 40px;
    text-align: center;
    position: relative;
}

.about-hero .container {
    max-width: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.about-hero h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: var(--white);
    font-family: var(--font-secondary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.about-hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 360px) {
    .about-hero h2 {
        font-size: 1.9rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
}

@media (min-width: 480px) {
    .about-hero {
        padding: 90px 0 50px;
    }
    .about-hero h2 {
        font-size: 2.1rem;
    }
    .about-hero p {
        font-size: 1.1rem;
        max-width: 85%;
    }
    .about-hero .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .about-hero {
        background-image: url('images/bg/2.webp');
        padding: 120px 0 70px;
    }
    .about-hero h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .about-hero p {
        font-size: 1.2rem;
        max-width: 70%;
    }
}

@media (min-width: 992px) {
    .about-hero h2 {
        font-size: 3rem;
    }
    .about-hero .container {
        max-width: var(--max-width);
    }
}
.our-mission {
    padding: 5rem 0;
    background-color: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.mission-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.our-values {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card svg {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.our-team {
    padding: 5rem 0;
    background-color: var(--white);
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-member .title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.our-partners {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.our-partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.our-partners p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--box-shadow);
}

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg/2.webp') no-repeat center center/cover;
    color: var(--white);
    padding: 70px 0 40px;
    text-align: center;
    position: relative;
}

.contact-hero .container {
    max-width: 100%;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.contact-hero h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: var(--white);
    font-family: var(--font-secondary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.contact-hero p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 360px) {
    .contact-hero h2 {
        font-size: 1.9rem;
    }
    .contact-hero p {
        font-size: 1rem;
    }
}

@media (min-width: 480px) {
    .contact-hero {
        padding: 90px 0 50px;
    }
    .contact-hero h2 {
        font-size: 2.1rem;
    }
    .contact-hero p {
        font-size: 1.1rem;
        max-width: 85%;
    }
    .contact-hero .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .contact-hero {
        background-image: url('images/bg/2.webp');
        padding: 120px 0 70px;
    }
    .contact-hero h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .contact-hero p {
        font-size: 1.2rem;
        max-width: 70%;
    }
}

@media (min-width: 992px) {
    .contact-hero h2 {
        font-size: 3rem;
    }
    .contact-hero .container {
        max-width: var(--max-width);
    }
}
.contact-options {
    padding: 30px 0;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-method svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-method p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-method .explorer-btn {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    word-break: break-word;
    white-space: normal;
}

@media (max-width: 320px) {
    .contact-options {
        padding: 20px 0;
    }
    
    .contact-method {
        padding: 15px 10px;
    }
    
    .contact-method svg {
        width: 36px;
        height: 36px;
    }
    
    .contact-method h3 {
        font-size: 16px;
    }
    
    .contact-method p {
        font-size: 13px;
    }
    
    .contact-method .explorer-btn {
        font-size: 11px;
        padding: 6px 8px;
    }
}

@media (min-width: 375px) {
    .contact-method h3 {
        font-size: 17px;
    }
    
    .contact-method p {
        font-size: 14px;
    }
    
    .contact-method .explorer-btn {
        font-size: 13px;
    }
}

@media (min-width: 480px) {
    .contact-method {
        padding: 25px 20px;
    }
    
    .contact-method svg {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 768px) {
    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-method {
        flex: 1 1 300px;
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .contact-methods {
        gap: 30px;
    }
    
    .contact-method {
        padding: 30px 25px;
    }
}
.contact-form-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: var(--white);
    border: none;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question .faq-icon {
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.policy-hero,
.terms-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg/3.webp') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
}

.policy-hero h2,
.terms-hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--white);
    font-family: var(--font-secondary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.policy-hero p,
.terms-hero p {
    font-size: 1.2rem;
}

.policy-content,
.terms-content {
    padding: 5rem 0;
    background-color: var(--white);
}

.policy-section,
.terms-section {
    margin-bottom: 3rem;
}

.policy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-section h3,
.terms-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.policy-section ul,
.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

address {
    font-style: normal;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        order: -1;
    }
}

@media (max-width: 768px) {
   
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 80vh;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .destination-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-btn {
        align-self: stretch;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .policy-hero h1,
    .terms-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 320px) {
    .brand-name {
        font-size: 1.2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .explorer-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
.travel-guides {
    padding: 5rem 0;
    background-color: var(--white);
}

.travel-guides h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.guides-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.guide-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.guide-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.guide-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.guide-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.guide-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.guide-content li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.guide-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-box svg {
    margin-bottom: 1.5rem;
}

.cta-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .explorer-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.cta-box .explorer-btn:hover {
    background-color: var(--light-gray);
}

@media (max-width: 768px) {
    .travel-guides {
        padding: 3rem 0;
    }
    
    .travel-guides h2 {
        font-size: 2rem;
    }
    
    .guide-card {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .guides-container {
        grid-template-columns: 1fr;
    }
    
    .guide-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 320px) {
    .travel-guides h2 {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .guide-card {
        padding: 1.2rem;
    }
    
    .guide-content li {
        font-size: 0.9rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-box .explorer-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
.travel-insights {
    padding: 5rem 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.travel-insights::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,111,165,0.1) 0%, rgba(74,111,165,0) 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.compass-icon {
    margin: 1.5rem 0;
    animation: spin 12s linear infinite;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.insight-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.card-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.pulse-icon, .globe-icon, .stats-icon {
    animation: pulse 2s infinite;
}

.card-content p {
    margin-bottom: 1.5rem;
}

.animated-list {
    margin: 1.5rem 0;
}

.animated-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInRight 0.5s ease forwards;
}

.animated-list li:nth-child(1) {
    animation-delay: 0.1s;
}
.animated-list li:nth-child(2) {
    animation-delay: 0.3s;
}
.animated-list li:nth-child(3) {
    animation-delay: 0.5s;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.highlight-text {
    background-color: rgba(74, 111, 165, 0.1);
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    font-style: italic;
}

.destination-spotlight {
    margin-bottom: 1.5rem;
}

.destination-spotlight h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stats-card .stat-item {
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.footnote {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 2rem;
}

.knowledge-base {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.knowledge-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74,111,165,0.05) 0%, rgba(74,111,165,0) 100%);
    z-index: 0;
}

.book-icon {
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
}

.knowledge-content {
    position: relative;
    z-index: 1;
}

.knowledge-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.knowledge-content p {
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 992px) {
    .knowledge-base {
        flex-direction: column;
        text-align: center;
    }
    
    .book-icon {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .travel-insights {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .insight-card {
        padding: 1.5rem;
    }
    
    .knowledge-base {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .insight-card {
        padding: 1.2rem;
    }
    
    .knowledge-base {
        padding: 1.5rem;
    }
    
    .knowledge-content h3 {
        font-size: 1.5rem;
    }
}
.cultural-immersion {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.cultural-immersion::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,111,165,0.1) 0%, rgba(74,111,165,0) 70%);
    z-index: 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-intro h2 {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.culture-icon {
    animation: float 4s ease-in-out infinite;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.divider {
    margin: 0 auto;
    width: 120px;
}

.divider-svg {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: draw 2s ease-out forwards;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.culture-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.culture-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-align: center;
}

.content-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.content-scroll::-webkit-scrollbar {
    width: 5px;
}

.content-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.content-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.content-scroll p {
    margin-bottom: 1.5rem;
}

.content-scroll ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-scroll li {
    margin-bottom: 0.8rem;
    position: relative;
}

.immersion-tips {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.immersion-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.tips-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tips-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
}

.tips-icon {
    animation: pulse 2s infinite;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tip-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.tip-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.7;
}

.tip-text {
    font-size: 0.95rem;
}

.tips-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

.culture-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out;
}
.culture-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}
.culture-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .culture-grid {
        gap: 2rem;
    }
    
    .immersion-tips {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cultural-immersion {
        padding: 3rem 0;
    }
    
    .section-intro h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .culture-card {
        padding: 1.5rem;
    }
    
    .content-scroll {
        max-height: 300px;
    }
    
    .tips-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-content {
        grid-template-columns: 1fr;
    }
    
    .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .culture-card {
        padding: 1.2rem;
    }
    
    .immersion-tips {
        padding: 1.5rem;
    }
    
    .tips-header h3 {
        font-size: 1.5rem;
    }
    
    .tip-text {
        font-size: 0.9rem;
    }
    
    .tips-footer p {
        font-size: 0.9rem;
    }
}
.timeline-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-icon {
    animation: float 4s ease-in-out infinite;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.header-divider {
    margin: 0 auto;
    width: 120px;
}

.draw {
    animation: draw 1.5s ease-out forwards;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}



.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

.timeline-point {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-details p {
    margin-bottom: 1.5rem;
}

.timeline-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-details li {
    margin-bottom: 0.8rem;
    position: relative;
}

.timeline-cta {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.timeline-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.cta-icon {
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.timeline-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.timeline-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.timeline-cta .explorer-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.timeline-cta .explorer-btn:hover {
    background-color: var(--light-gray);
}
.checkbox.asdfg {
    display: flex;
    align-items: center;
}

.checkbox.asdfg input {
    width: auto;
    margin-right: 10px;
}

.checkbox.asdfg label {
    margin-bottom: 0;
    font-weight: 400;
}
/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .timeline-point {
        margin: 0 0 1rem 20px;
        align-self: flex-start;
    }
    
    .timeline-content {
        margin-left: 80px !important;
        text-align: left !important;
    }
    
    .timeline-content::before {
        top: -15px;
        left: 30px !important;
        right: auto !important;
        border-width: 15px 15px 0 15px !important;
        border-color: var(--white) transparent transparent transparent !important;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-cta {
        padding: 2rem;
    }
    
    .timeline-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        margin-left: 60px !important;
    }
    
    .section-header h2 {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 320px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
        margin-left: 50px !important;
    }
    
    .timeline-point {
        width: 30px;
        height: 30px;
        margin-left: 15px;
    }
    
    .timeline-cta {
        padding: 1.5rem;
    }
    
    .timeline-cta h3 {
        font-size: 1.3rem;
    }
    
    .timeline-cta p {
        font-size: 0.9rem;
    }
}
.destination-comparison {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compare-icon {
    animation: float 4s ease-in-out infinite;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.header-divider {
    margin: 0 auto;
    width: 120px;
}

.draw {
    animation: draw 1.5s ease-out forwards;
}

.comparison-tabs {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.tab-label {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    margin-right: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--light-gray);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: all 0.3s ease;
    position: relative;
    top: 1px;
    z-index: 1;
}

.tab-icon {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.tab-label:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.tab-label:hover .tab-icon {
    transform: scale(1.1);
}

.comparison-tabs input[type="radio"] {
    display: none;
}

.comparison-tabs input[type="radio"]:checked + .tab-label {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--white);
}

.comparison-tabs input[type="radio"]:checked + .tab-label .tab-icon {
    transform: rotate(15deg);
}

.tab-content {
    display: none;
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
    animation: fadeIn 0.5s ease-out;
}

.comparison-tabs input[type="radio"]:checked ~ .tab-content {
    display: block;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.destination-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.destination-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.price-range {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--light-gray);
}

.price-label {
    font-weight: 600;
}

.price-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.detail-list {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.detail-icon {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.destination-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-cta {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.cta-icon {
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.comparison-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.comparison-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.comparison-cta .explorer-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.comparison-cta .explorer-btn:hover {
    background-color: var(--light-gray);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .destination-comparison {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tab-label {
        display: flex;
        margin-right: 0;
        margin-bottom: 0.5rem;
        border-radius: var(--border-radius);
    }
    
    .tab-content {
        border-radius: var(--border-radius);
    }
    
    .comparison-cta {
        padding: 2rem;
    }
    
    .comparison-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .destination-card {
        padding: 1.5rem;
    }
    
    .comparison-cta {
        padding: 1.5rem;
    }
    
    .comparison-cta h3 {
        font-size: 1.4rem;
    }
    
    .comparison-cta p {
        font-size: 0.9rem;
    }
}
.our-journey {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.our-journey::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,111,165,0.1) 0%, rgba(74,111,165,0) 70%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.journey-icon {
    animation: float 4s ease-in-out infinite;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.divider {
    margin: 0 auto;
    width: 120px;
}

.draw {
    animation: draw 1.5s ease-out forwards;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding-left: 1.5rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

.timeline-year {
    position: absolute;
    left: -6.5rem;
    top: 0;
    width: 5rem;
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-content {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-marker {
    position: absolute;
    left: -2.25rem;
    top: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    z-index: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-text p {
    margin-bottom: 1rem;
}

.timeline-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.timeline-text li {
    margin-bottom: 0.5rem;
    position: relative;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.journey-cta {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.cta-icon {
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.journey-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.journey-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.journey-cta .explorer-btn {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
}

.journey-cta .explorer-btn:hover {
    background-color: var(--light-gray);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .timeline-year {
        position: static;
        text-align: left;
        width: auto;
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .our-journey {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .journey-timeline {
        padding-left: 1rem;
    }
    
    .timeline-marker {
        left: -1.75rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .journey-cta {
        padding: 2rem;
    }
    
    .journey-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .journey-timeline::before {
        left: 0.5rem;
    }
    
    .timeline-marker {
        left: -1.25rem;
        width: 1rem;
        height: 1rem;
        top: 1rem;
    }
}

@media (max-width: 320px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .journey-cta {
        padding: 1.5rem;
    }
    
    .journey-cta h3 {
        font-size: 1.4rem;
    }
    
    .journey-cta p {
        font-size: 0.9rem;
    }
}
.thanks-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.checkmark {
    color: #4CAF50;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.thanks-card h1 {
    color: #2c3e50;
    margin: 0 0 1rem;
    font-size: 1.8rem;
}

.thanks-card p {
    margin: 0 0 2rem;
    line-height: 1.5;
    color: #555;
}

.home-link {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.home-link:hover {
    background: #2980b9;
}