:root {
  --primary: #D4731C;
  --primary-dark: #B8600F;
  --primary-light: #E8892E;
  --secondary: #111111;
  --secondary-dark: #0A0A0A;
  --accent: #D4731C;
  --dark: #111111;
  --dark-light: #222222;
  --text: #2D3436;
  --text-light: #636E72;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --bg-dark: #111111;
  --border: #E9ECEF;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --max-width: 1200px;
  --header-height: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  position: relative;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(212, 115, 28, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(212, 115, 28, 0.4);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(212, 115, 28, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(212, 115, 28, 0.4);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.logo img {
  height: 120px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.15;
  transition: var(--transition);
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.header.scrolled .logo img {
  height: 60px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.header.scrolled .logo-text {
  color: var(--dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  transition: var(--transition);
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .nav a {
  color: var(--text);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active {
  color: var(--primary);
  background: rgba(212, 115, 28, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.header.scrolled .lang-switcher {
  background: rgba(212, 115, 28, 0.08);
  color: var(--primary);
}

.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.25);
}

.header.scrolled .lang-switcher:hover {
  background: rgba(212, 115, 28, 0.15);
}

.lang-switcher .lang-option {
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switcher .lang-option.active {
  background: var(--primary);
  color: #fff;
}

.header.scrolled .lang-switcher .lang-option.active {
  background: var(--primary);
  color: #fff;
}

.nav-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
  background: var(--dark);
}

.mobile-toggle.active span {
  background: #fff !important;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  color: #fff;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.hero-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  animation: scrollBounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: #fff;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 115, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.tour-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tour-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.tour-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-image:hover img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(212, 115, 28, 0.4);
}

.tour-info h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.tour-info p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.tour-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.tour-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.tour-detail i {
  font-size: 1.2rem;
  color: var(--primary);
}

.tour-detail span {
  font-size: 0.95rem;
  font-weight: 500;
}

.tour-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.tour-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--accent);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-author-info h4 {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
}

.testimonials-nav button.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: #fff;
  font-weight: 600;
}

.cta-section {
  background: var(--primary);
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.footer {
  background: var(--primary);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-about .footer-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer-about .footer-logo .logo-text {
  color: #fff;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.footer h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: #fff;
  margin-top: 3px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.page-hero {
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 30px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  height: 300px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 24px;
}

.team-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.team-card-info span {
  font-size: 0.9rem;
  color: var(--primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  color: var(--text);
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-page-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary);
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 30px 24px;
  color: var(--text-light);
  line-height: 1.8;
}

.tour-hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.tour-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.tour-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.tour-sidebar {
  position: sticky;
  top: 160px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.tour-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.tour-sidebar-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.tour-sidebar-detail i {
  color: var(--primary);
  width: 24px;
  text-align: center;
}

.tour-sidebar .tour-price {
  margin: 24px 0;
  text-align: center;
}

.tour-content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.tour-content-section p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.tour-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.tour-include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.tour-include-item i {
  color: #10B981;
  font-size: 1.1rem;
}

.tour-include-item.not-included i {
  color: #EF4444;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 30px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-light);
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 20px 24px;
  z-index: 9998;
  transform: translateY(100%);
  transition: var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 12px;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 9000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(212, 115, 28, 0.3);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.back-to-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--bg-dark);
  padding: 30px 0;
  color: #fff;
  position: fixed;
  width: 260px;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 20px 24px;
  margin-bottom: 30px;
  text-align: center;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.admin-nav a i {
  width: 20px;
  text-align: center;
}

.admin-main {
  margin-left: 260px;
  padding: 30px;
  background: var(--bg-alt);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.admin-header h1 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.admin-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--dark);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 115, 28, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header.menu-open {
    position: fixed;
    inset: 0;
    background: var(--bg-dark) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark);
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1000;
  }

  .nav.mobile-active a {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 36px;
    border-radius: 12px;
    transition: var(--transition);
  }

  .nav.mobile-active a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav.mobile-active a.active {
    color: var(--primary);
    background: rgba(212, 115, 28, 0.12);
    border: 1px solid rgba(212, 115, 28, 0.25);
    font-weight: 600;
  }

  .header.menu-open ~ .back-to-top,
  .header.menu-open ~ .whatsapp-float,
  .header.menu-open ~ .sticky-cta,
  body.menu-open .back-to-top,
  body.menu-open .whatsapp-float,
  body.menu-open .sticky-cta {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .tour-preview,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tour-hero-section {
    grid-template-columns: 1fr;
  }

  .tour-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

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

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .parallax-cta {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 70px;
  }

  .header.scrolled .logo img {
    height: 45px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .footer-about .footer-logo img {
    height: 60px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

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

  .tour-details,
  .tour-includes {
    grid-template-columns: 1fr;
  }

  .tour-hero-section {
    gap: 30px;
  }

  .tour-main-image img {
    height: 300px;
  }

  .tour-sidebar {
    padding: 28px;
  }

  .tour-content-section {
    margin-top: 30px !important;
  }

  .tour-content-section h2 {
    font-size: 1.5rem;
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

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

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-scroll {
    display: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-text::before {
    font-size: 3rem;
    top: -15px;
    left: -5px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
  }

  .about-image img {
    height: 300px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    margin-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 55px;
  }

  .header.scrolled .logo img {
    height: 40px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-text span {
    font-size: 0.6rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .page-hero {
    height: 40vh;
    min-height: 280px;
  }

  .tour-hero-section {
    gap: 20px;
  }

  .tour-main-image img {
    height: 220px;
  }

  .tour-sidebar {
    padding: 20px;
  }

  .tour-sidebar h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
  }

  .tour-sidebar-detail {
    padding: 10px 0;
    font-size: 0.88rem;
  }

  .tour-content-section {
    margin-top: 24px !important;
  }

  .tour-content-section h2 {
    font-size: 1.3rem;
  }

  .tour-content-section p {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .map-wrapper {
    height: 260px;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 24px 16px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 16px 16px;
  }

  .about-image img {
    height: 250px;
  }

  .team-card-img {
    height: 220px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(72,202,228,0.3));
  animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.trust-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.trust-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item-icon.tripadvisor { background: rgba(0,175,135,.1); color: #00AF87; }
.trust-item-icon.google { background: rgba(66,133,244,.1); color: #4285F4; }
.trust-item-icon.safety { background: rgba(16,185,129,.1); color: #10B981; }
.trust-item-icon.eco { background: rgba(34,197,94,.1); color: #22C55E; }

.trust-item-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.2;
}

.trust-item-info span {
  font-size: .78rem;
  color: var(--text-light);
}

.trust-item-info .trust-stars {
  color: #FBBF24;
  font-size: .85rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .trust-grid {
    gap: 16px 24px;
    justify-content: flex-start;
  }
  .trust-item {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
  }
  .trust-item-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .trust-item-info strong {
    font-size: .9rem;
  }
  .trust-item-info span {
    font-size: .7rem;
  }
  .trust-item-info .trust-stars {
    font-size: .75rem;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    gap: 12px 16px;
  }
  .trust-item {
    flex: 0 0 calc(50% - 8px);
    gap: 8px;
  }
  .trust-item-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .trust-item-info strong {
    font-size: .82rem;
  }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 -4px 30px rgba(0,0,0,.08);
  padding: 14px 0;
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-cta-left .tour-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.2;
}

.sticky-cta-left .tour-meta {
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta-left .tour-meta i {
  color: var(--primary);
  margin-right: 3px;
}

.sticky-cta-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  white-space: nowrap;
}

.sticky-cta-price small {
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-light);
}

.proof-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 8998;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  max-width: 340px;
  border-left: 4px solid var(--secondary);
}

.proof-notification.show {
  transform: translateX(0);
}

.proof-notification-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.proof-notification-text strong {
  display: block;
  font-size: .85rem;
  color: var(--dark);
  line-height: 1.3;
}

.proof-notification-text span {
  font-size: .75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.proof-notification-text span i {
  color: #10B981;
  font-size: .65rem;
}

.proof-notification-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: var(--text-light);
  font-size: .7rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.proof-notification-close:hover {
  background: var(--bg-alt);
}

.video-section {
  position: relative;
  padding: 100px 0;
  background: #FFF5ED;
  overflow: hidden;
}

.video-section::after {
  content: none;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: url('../images/gallery/20190301135017.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  transition: var(--transition);
}

.video-placeholder:hover::after {
  background: rgba(0,0,0,.2);
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(212,115,28,.5);
  transition: var(--transition);
  animation: playPulse 2s infinite;
}

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

@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(212,115,28,.4); }
  50% { box-shadow: 0 8px 50px rgba(212,115,28,.6); }
}

.countdown-bar {
  background: var(--bg-dark);
  padding: 16px 0;
  text-align: center;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: #fff;
}

.countdown-label {
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-label i {
  color: var(--primary);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.countdown-timer {
  display: flex;
  gap: 8px;
}

.countdown-unit {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 6px 12px;
  min-width: 50px;
  text-align: center;
}

.countdown-unit strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: block;
  line-height: 1.2;
}

.countdown-unit span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .7;
}

.countdown-spots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(212,115,28,.15);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-light);
}

.countdown-spots i {
  font-size: .7rem;
  animation: blink 1s infinite;
}

.insta-section {
  padding: 60px 0 0;
  text-align: center;
  overflow: hidden;
}

.insta-header {
  margin-bottom: 30px;
}

.insta-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.insta-header h3 i {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insta-header p {
  font-size: .9rem;
  color: var(--text-light);
  margin-top: 6px;
}

.insta-strip {
  display: flex;
  animation: scrollStrip 30s linear infinite;
}

.insta-strip:hover {
  animation-play-state: paused;
}

.insta-strip-item {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.insta-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.insta-strip-item:hover img {
  transform: scale(1.1);
}

.insta-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.insta-strip-item:hover .insta-strip-overlay {
  opacity: 1;
}

@keyframes scrollStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.parallax-cta {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0,175,135,.1), rgba(0,175,135,.05));
  border: 1px solid rgba(0,175,135,.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: #00AF87;
  margin-bottom: 16px;
}

.highlight-badge i {
  font-size: .7rem;
}

@media (max-width: 768px) {
  .sticky-cta-left .tour-name,
  .sticky-cta-left .tour-meta {
    display: none;
  }

  .sticky-cta-inner {
    justify-content: center;
    gap: 14px;
  }

  .proof-notification {
    left: 10px;
    right: 10px;
    bottom: 90px;
    max-width: none;
  }

  .countdown-inner {
    gap: 10px;
    font-size: .82rem;
  }

  .insta-strip-item {
    width: 180px;
    height: 180px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    gap: 10px 12px;
  }

  .trust-item {
    flex: 0 0 calc(50% - 6px);
    min-width: 0;
    justify-content: flex-start;
  }

  .countdown-timer {
    gap: 4px;
  }

  .countdown-unit {
    padding: 4px 8px;
    min-width: 40px;
  }

  .countdown-unit strong {
    font-size: 1rem;
  }
}
