@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-900: #0A1628;
  --primary-800: #0F2140;
  --primary-700: #152D55;
  --primary-600: #1C3D70;
  --primary-500: #254F8A;
  --primary-400: #4A7BB5;
  --primary-300: #7DA6D4;
  --primary-200: #B5CFE8;
  --primary-100: #DCE8F5;
  --primary-50: #F0F5FB;

  --accent-500: #C5A059;
  --accent-600: #B0893E;
  --accent-700: #9A752E;
  --accent-400: #D4B47A;
  --accent-300: #E3CCA0;
  --accent-200: #EFE2C5;
  --accent-100: #F7F0E0;
  --accent-50: #FBF8F0;

  --neutral-50: #FAF9F7;
  --neutral-100: #F0EEEA;
  --neutral-200: #DEDAD3;
  --neutral-300: #BFB9AF;
  --neutral-400: #9E968A;
  --neutral-500: #7A7368;
  --neutral-600: #5A544A;
  --neutral-700: #3C3730;
  --neutral-800: #24211D;
  --neutral-900: #12100D;

  --amber-400: #F59E0B;
  --green-50: #ECFDF3;
  --green-200: #A9E9C5;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065F46;
  --red-50: #FEF2F2;
  --red-200: #FECACA;
  --red-600: #DC2626;
  --red-800: #991B1B;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: #fff;
  color: var(--neutral-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

::selection { background: var(--accent-500); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 48px; }
}

.btn-primary {
  background: var(--accent-500);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(0.22,1,0.36,1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(197,160,89,0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid var(--primary-300);
  color: var(--primary-700);
  background: transparent;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-outline:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
  background: transparent;
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all .3s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-whatsapp:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary-800);
  font-weight: 500;
  font-size: 13px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all .3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-white:hover {
  background: var(--neutral-50);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  transition: all .3s ease;
  background: #fff;
}

.header.scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) {
  .header-inner { padding: 0 40px; }
}

.logo img { height: 80px; width: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-500);
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-500);
  transition: width .3s ease;
  border-radius: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: block;
  padding: 8px;
  color: var(--neutral-500);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--neutral-100);
  padding: 20px 24px 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.mobile-menu.open { display: block; }

.mobile-menu .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: var(--neutral-700);
}

.mobile-menu .nav-link + .nav-link {
  border-top: 1px solid var(--neutral-100);
}

.mobile-menu .btn-primary {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--primary-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,22,40,0.94) 0%,
    rgba(15,33,64,0.6) 45%,
    rgba(10,22,40,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px;
}

@media (min-width: 768px) {
  .hero-content { padding: 180px 40px; }
}

.hero-text { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-300);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 768px) {
  .hero-title { font-size: 64px; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 80px; }
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-top: 24px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 18px; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--accent-400);
  flex-shrink: 0;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 2;
}

.section { padding: 100px 0; }

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.section-gray {
  background: var(--neutral-50);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  position: relative;
  font-family: var(--font-sans);
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent-500);
  margin: 12px auto 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  margin-top: 20px;
  color: var(--primary-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title { font-size: 42px; }
}

.section-desc {
  color: var(--neutral-500);
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .tour-grid { grid-template-columns: repeat(3, 1fr); }
}

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--neutral-100);
  position: relative;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  border-color: var(--accent-200);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(10,22,40,0.12);
}

.tour-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--neutral-100);
}

.tour-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease, transform .8s cubic-bezier(0.22,1,0.36,1);
  transform-origin: center;
  pointer-events: none;
}

.tour-card-image img.active {
  opacity: 1;
  z-index: 1;
}

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

.tour-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.04));
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.85);
  color: var(--neutral-700);
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  opacity: 0;
  transition: opacity .25s, transform .25s;
}

.tour-card-image:hover .slider-arrow { opacity: 1; }

.slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity .25s;
}

.tour-card-image:hover .slider-dots { opacity: 1; }

.slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all .25s;
}

.slider-dots span.active {
  background: #fff;
  transform: scale(1.3);
}

.tour-card-duration {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-800);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  z-index: 6;
  font-family: var(--font-sans);
}

.tour-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  z-index: 1;
}

.tour-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-body .stars {
  margin-bottom: 12px;
  gap: 2px;
}

.tour-card-body .stars .star { font-size: 14px; }
.tour-card-body .stars .star-empty { font-size: 14px; }

.tour-card-body .stars .star-count {
  font-size: 12px;
  color: var(--neutral-400);
  font-weight: 500;
  margin-left: 6px;
}

.tour-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-900);
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.tour-card-dest {
  font-size: 13px;
  color: var(--neutral-500);
  margin: 0 0 14px;
  line-height: 1.6;
}

.tour-card-departure {
  font-size: 13px;
  color: var(--neutral-700);
  margin: 0 0 18px;
  padding: 12px 16px;
  background: var(--primary-50);
  border-radius: 6px;
  border: 1px solid var(--primary-100);
  line-height: 1.5;
  font-weight: 500;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-100);
}

.tour-card-price {
  font-size: 11px;
  color: var(--neutral-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: var(--font-sans);
}

.tour-card-price-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-600);
  margin: 2px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tour-card-price-label {
  font-size: 12px;
  color: var(--neutral-400);
  font-weight: 400;
}

.tour-card-footer .btn-primary {
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}

.star { color: var(--amber-400); font-size: 15px; }
.star-empty { color: var(--neutral-200); font-size: 15px; }
.star-count { color: var(--neutral-400); margin-left: 6px; font-size: 12px; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  padding: 44px 28px;
  border: 1px solid var(--neutral-100);
  transition: all .4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(0.22,1,0.36,1);
}

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

.why-card:hover {
  box-shadow: 0 16px 40px -12px rgba(10,22,40,0.1);
  transform: translateY(-4px);
  border-color: var(--accent-200);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all .4s cubic-bezier(0.22,1,0.36,1);
}

.why-card:hover .why-icon {
  background: var(--accent-500);
  transform: scale(1.05);
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-500);
  transition: color .4s ease;
}

.why-card:hover .why-icon svg {
  color: #fff;
}

.why-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-900);
  font-size: 18px;
}

.why-desc {
  font-size: 14px;
  color: var(--neutral-500);
  margin-top: 8px;
  line-height: 1.7;
}

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

@media (min-width: 768px) {
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
}

.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all .5s cubic-bezier(0.22,1,0.36,1);
  display: block;
}

.dest-card:hover {
  box-shadow: 0 20px 48px -12px rgba(10,22,40,0.2);
  transform: translateY(-4px);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.22,1,0.36,1);
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.05) 50%, transparent 100%);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--accent-400), var(--accent-300)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s ease;
}

.dest-card:hover::after {
  opacity: 1;
}

.dest-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}

.dest-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.dest-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-400);
  transition: width .4s ease;
}

.dest-card:hover .dest-name::after {
  width: 100%;
}

.dest-tours {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 300;
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .test-grid { grid-template-columns: repeat(3, 1fr); }
}

.test-card {
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid var(--neutral-100);
  transition: all .4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}

.test-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-200);
  font-family: var(--font-serif);
  font-style: italic;
  pointer-events: none;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(10,22,40,0.08);
  border-color: var(--accent-200);
}

.test-stars {
  display: flex;
  gap: 3px;
  color: var(--amber-400);
  font-size: 16px;
  margin-bottom: 16px;
}

.test-text {
  font-size: 15px;
  color: var(--neutral-600);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-100);
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-600);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.test-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-900);
}

.test-country {
  font-size: 12px;
  color: var(--neutral-400);
}

.youtube-wrapper { max-width: 720px; margin: 0 auto; }

.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-500);
  margin-bottom: 20px;
}

.youtube-badge svg {
  width: 18px;
  height: 18px;
  color: #EF4444;
}

.youtube-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--neutral-100);
  transition: all .4s cubic-bezier(0.22,1,0.36,1);
}

.youtube-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .youtube-card { padding: 14px; }
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--primary-900);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.youtube-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 14px;
}

@media (min-width: 640px) {
  .youtube-footer { flex-direction: row; }
}

.youtube-author-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.youtube-author-icon svg {
  width: 16px;
  height: 16px;
  color: #EF4444;
}

.cta {
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  border-radius: 12px;
  padding: 80px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta h2 { font-size: 40px; }
}

.cta p {
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer {
  background: var(--primary-900);
  color: rgba(255,255,255,0.45);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

@media (min-width: 768px) {
  .footer-inner { padding: 80px 40px; }
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-desc {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.3);
  transition: color .2s;
}

.footer-social a:hover {
  color: var(--accent-400);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--accent-500);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}

.footer ul li a:hover {
  color: #fff;
}

.footer-contact {
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 48px;
  padding-top: 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: all .3s cubic-bezier(0.22,1,0.36,1);
  border: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes checkPop { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in-down { animation: fadeInDown 0.6s ease forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }
.animate-slide-up { animation: slideUp 0.4s ease forwards; }

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.gradient-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}

.itinerary-line {
  background: linear-gradient(to bottom, var(--primary-200) 0%, var(--primary-500) 50%, var(--primary-200) 100%);
}

.page-header { padding-top: 80px; padding-bottom: 64px; }
.page-title { font-family: var(--font-serif); font-size: 38px; font-weight: 700; color: var(--primary-900); margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.15; }
.page-subtitle { color: var(--neutral-500); font-size: 17px; margin-bottom: 40px; max-width: 640px; line-height: 1.7; font-weight: 300; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-form { max-width: 640px; }

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
  color: var(--neutral-800);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-400);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.08);
}

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

.admin-body { background: var(--neutral-50); }

.admin-header {
  background: var(--primary-800);
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 { font-size: 18px; font-weight: 700; }
.admin-header a { color: #fff; text-decoration: none; font-size: 13px; }

.admin-sidebar {
  width: 260px;
  background: #fff;
  border-right: 1px solid var(--neutral-100);
  min-height: 100vh;
  padding: 24px 0;
}

.admin-sidebar a {
  display: block;
  padding: 12px 24px;
  color: var(--neutral-600);
  font-size: 14px;
  transition: all .2s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: var(--accent-50);
  color: var(--accent-600);
}

.admin-content { flex: 1; padding: 32px; }

.admin-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--neutral-100);
  padding: 24px;
  margin-bottom: 24px;
}

.admin-card h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-900);
  margin-bottom: 16px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.admin-stat {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--neutral-100);
  padding: 20px;
}

.admin-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-900);
}

.admin-stat-label {
  font-size: 13px;
  color: var(--neutral-500);
  margin-top: 4px;
}

.admin-table { width: 100%; border-collapse: collapse; }

.admin-table th {
  text-align: left;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--neutral-200);
}

.admin-table td {
  padding: 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--neutral-100);
}

.admin-table tr:hover td { background: var(--neutral-50); }

.admin-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.admin-btn-primary { background: var(--primary-600); color: #fff; }
.admin-btn-primary:hover { background: var(--primary-700); }
.admin-btn-edit { background: #3B82F6; color: #fff; }
.admin-btn-edit:hover { background: #2563EB; }
.admin-btn-delete { background: #EF4444; color: #fff; }
.admin-btn-delete:hover { background: #DC2626; }
.admin-btn-success { background: #10B981; color: #fff; }
.admin-btn-success:hover { background: #059669; }

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge-active { background: #D1FAE5; color: #065F46; }
.badge-inactive { background: #FEE2E2; color: #991B1B; }
.badge-new { background: #DBEAFE; color: #1E40AF; }
.badge-read { background: #FEF3C7; color: #92400E; }

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-50);
}

.admin-login-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  width: 400px;
}

.mobile-bottom-bar { display: none; }

@media (max-width: 767px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    inset-x: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid var(--neutral-100);
    padding: 16px;
    align-items: center;
    justify-content: space-between;
  }
  body { padding-bottom: 80px; }
}

.tour-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .tour-detail-grid { flex-direction: row; gap: 64px; }
}

.tour-detail-main { flex: 1; min-width: 0; }
.tour-detail-sidebar { width: 360px; flex-shrink: 0; display: none; }

@media (min-width: 768px) {
  .tour-detail-sidebar { display: block; }
}

.photo-grid {
  display: none;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
}

.photo-grid .main-photo { grid-column: span 2; grid-row: span 2; height: 400px; }
.photo-grid .side-photo { height: 196px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }

.photo-mobile { display: block; margin-bottom: 24px; }

@media (min-width: 768px) {
  .photo-mobile { display: none; }
}

.photo-mobile-inner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
}

.photo-mobile-inner img { width: 100%; height: 100%; object-fit: cover; }

.photo-see-all {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.tour-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tour-info-tag {
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
}

.tour-info-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--neutral-500);
  font-size: 14px;
}

.tour-meta-item svg { width: 16px; height: 16px; }

.highlight-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow .3s;
}

.highlight-card:hover {
  box-shadow: 0 8px 24px -8px rgba(10,22,40,0.08);
}

.highlight-card img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: box-shadow .3s;
}

.pricing-card:hover {
  box-shadow: 0 12px 32px -8px rgba(10,22,40,0.08);
}

.pricing-card.popular {
  border: 2px solid var(--accent-500);
  position: relative;
  margin-top: 12px;
}

.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-500);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.pricing-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.pricing-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-900);
}

.pricing-unit {
  font-size: 12px;
  color: var(--neutral-400);
  margin-top: 4px;
}

.space-y-10 > * + * { margin-top: 40px; }

.text-center { text-align: center; }
.text-netflix { color: var(--primary-500); }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-6 { margin-bottom: 24px; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.rounded-2xl { border-radius: 8px; }
.overflow-hidden { overflow: hidden; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

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

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

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

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

.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  background: rgba(0,0,0,.35);
  padding: 4px 12px;
  border-radius: 100px;
}

@media (min-width: 768px) { .hide-desktop { display: none !important; } }
@media (max-width: 767px) { .hide-mobile { display: none !important; } }

.booking-form { background: #fff; border-radius: 8px; }

.booking-form.compact {
  border: 1px solid var(--neutral-100);
  padding: 24px;
}

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

@media (min-width: 768px) {
  .booking-form .form-row.compact { grid-template-columns: 1fr; }
  .booking-form .form-row:not(.compact) { grid-template-columns: repeat(2, 1fr); }
}

.booking-form .form-row { margin-bottom: 12px; }

.booking-form .price-display {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-600);
}

.booking-form .price-from {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-900);
}

.booking-success {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.booking-success h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 4px;
}

.booking-success p {
  color: var(--green-700);
  font-size: 14px;
}

.blog-content { max-width: 720px; margin: 0 auto; }

.blog-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-900);
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-600);
  margin-bottom: 16px;
}

details {
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 8px;
}

details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--primary-900);
  font-size: 15px;
}

details summary::-webkit-details-marker { display: none; }

details summary svg { transition: transform .3s; }

details[open] summary svg { transform: rotate(180deg); }

details[open] .detail-content {
  padding: 0 20px 20px;
}

.contact-person {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon.green { background: #D1FAE5; }
.contact-icon.red { background: var(--primary-100); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .animate-fade-in, .animate-fade-in-up, .animate-fade-in-down, .animate-fade-in-left, .animate-fade-in-right, .animate-scale-in, .animate-slide-up { animation: none; opacity: 1; transform: none; }
  .tour-card { transition: none; }
  .tour-card:hover { transform: none; }
  .dest-card { transition: none; }
  .dest-card:hover { transform: none; }
  .why-card { transition: none; }
  .why-card:hover { transform: none; }
  .test-card { transition: none; }
  .test-card:hover { transform: none; }
  .youtube-card { transition: none; }
  .youtube-card:hover { transform: none; }
  .whatsapp-float { transition: none; }
  .whatsapp-float:hover { transform: none; }
  html { scroll-behavior: auto; }
}

* { box-sizing: border-box; }

.admin-header {
  height: 52px;
  background: #fff;
  border-bottom: 1px solid var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header-brand {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-900);
  letter-spacing: -.3px;
}

.admin-header-brand span {
  color: var(--neutral-400);
  font-weight: 400;
}

.admin-header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.admin-header-nav a {
  color: var(--neutral-500);
  text-decoration: none;
}

.admin-header-nav a:hover { color: var(--primary-900); }

.admin-body { display: flex; min-height: calc(100vh - 52px); }

.admin-sidebar {
  width: 220px;
  background: #fff;
  border-right: 1px solid var(--neutral-100);
  padding: 8px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-group {
  padding: 16px 16px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--neutral-600);
  text-decoration: none;
  margin: 1px 8px;
  border-radius: 4px;
  transition: all .12s;
}

.admin-sidebar a svg { flex-shrink: 0; opacity: .7; }
.admin-sidebar a:hover svg, .admin-sidebar a.active svg { opacity: 1; }
.admin-sidebar a:hover { background: var(--accent-50); color: var(--accent-600); }
.admin-sidebar a.active { background: var(--accent-50); color: var(--accent-600); font-weight: 600; }

.sidebar-footer {
  margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--neutral-50);
}

.sidebar-footer a {
  margin: 0 8px !important;
  font-size: 13px;
  color: var(--neutral-400);
}

.sidebar-footer a:hover { background: var(--accent-50); color: var(--accent-600); }

.admin-main { flex: 1; padding: 24px; min-width: 0; background: var(--neutral-50); }

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

.admin-main .page-header h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-900);
}

.admin-main .page-header p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--neutral-500);
}

.page-header-actions { display: flex; gap: 8px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 8px;
  padding: 20px;
}

.stat-card-label {
  font-size: 13px;
  color: var(--neutral-500);
  margin-bottom: 4px;
}

.stat-card-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-900);
  letter-spacing: -.5px;
}

.stat-card-footer { margin-top: 8px; font-size: 12px; }

.stat-card-footer a {
  color: var(--primary-500);
  text-decoration: none;
}

.stat-card-footer a:hover { text-decoration: underline; }

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.alert-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.alert a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  margin-left: auto;
}

.card {
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 8px;
  padding: 20px;
}

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

.card-header h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-900);
}

.card-header a {
  font-size: 13px;
  color: var(--primary-500);
  text-decoration: none;
}

.card-header a:hover { text-decoration: underline; }

.cols-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }

table.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }

table.admin-table th {
  text-align: left;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--neutral-500);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--neutral-100);
}

table.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--neutral-50);
}

table.admin-table tr:last-child td { border-bottom: none; }

.badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-pending { background: #fef3c7; color: #d97706; }
.badge-confirmed, .badge-approved { background: #dbeafe; color: #1d4ed8; }
.badge-completed { background: #d1fae5; color: #059669; }
.badge-cancelled { background: #fee2e2; color: #dc2626; }

.review-item {
  padding: 12px;
  border-radius: 6px;
  background: var(--bg);
  margin-bottom: 8px;
}

.review-item:last-child { margin-bottom: 0; }

.review-item-name {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 2px;
}

.review-item-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .12s;
}

.empty-state {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
  font-size: 14px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-card);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

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

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

.form-checkbox input[type="checkbox"] { width: auto; }

.settings-section { margin-bottom: 32px; }

.settings-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.settings-section > p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-400);
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--neutral-100); }
::-webkit-scrollbar-thumb { background: var(--neutral-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neutral-300); }
