/* ===== Reset & Variables ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sky: #e8f4fd;
  --sky-deep: #b8ddf3;
  --blue: #3a9bd5;
  --blue-dark: #2a7ab5;
  --orange: #f5a623;
  --orange-dark: #d4891a;
  --orange-light: #fef3e0;
  --white: #ffffff;
  --bg: #fafcfe;
  --surface: #ffffff;
  --text: #2c3e50;
  --text-light: #5a6d7e;
  --text-muted: #95a5b6;
  --border: #e8ecf1;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.hidden { display: none !important; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
  background: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
  color: var(--white);
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  padding: 8px 16px;
}
.btn-ghost:hover { color: var(--blue); }

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-logo:hover { color: var(--text); }
.logo-icon { font-size: 1.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--sky);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
  overflow: hidden;
  padding-top: 80px;
}

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

.cloud {
  position: absolute;
  font-size: 4rem;
  color: rgba(255,255,255,0.6);
  animation: float 20s ease-in-out infinite;
}
.cloud-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 5rem; }
.cloud-2 { top: 25%; right: 10%; animation-delay: -7s; font-size: 3.5rem; }
.cloud-3 { top: 60%; left: 70%; animation-delay: -14s; font-size: 3rem; }

@keyframes float {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(30px) translateY(-10px); }
  50% { transform: translateX(0) translateY(-20px); }
  75% { transform: translateX(-30px) translateY(-10px); }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Destinations ===== */
.destinations { background: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.destination-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.destination-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.destination-emoji {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.destination-tokyo { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.destination-paris { background: linear-gradient(135deg, #e0c3fc, #8ec5fc); }
.destination-nyc { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
.destination-bali { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.destination-rome { background: linear-gradient(135deg, #ffecd2, #f3e7e9); }
.destination-machu { background: linear-gradient(135deg, #c1dfc4, #deecdd); }

.destination-body { padding: 24px; }

.destination-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.destination-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.55;
}

.destination-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--sky);
  color: var(--blue);
}

/* ===== How It Works ===== */
.how-it-works { background: var(--bg); }

.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.step {
  flex: 0 1 180px;
  text-align: center;
  padding: 24px 12px;
  position: relative;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.825rem;
  color: var(--text-light);
  line-height: 1.5;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--orange);
  padding-top: 48px;
  flex-shrink: 0;
}

/* ===== Features ===== */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-deep);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== AI Assistant ===== */
.ai-assistant { background: linear-gradient(180deg, var(--bg) 0%, var(--sky) 100%); }

.ai-demo {
  max-width: 800px;
  margin: 0 auto;
}

.ai-chat {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ai-prompt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.ai-user-icon, .ai-bot-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.ai-prompt p { font-size: 1rem; color: var(--text); }

.ai-response {
  display: flex;
  gap: 14px;
  padding: 28px;
  align-items: flex-start;
}

.ai-response-body { flex: 1; }

.ai-intro {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

/* Itinerary */
.itinerary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

.itinerary-day {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.day-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.day-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.day-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.day-time {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--sky);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 2px;
}

.day-detail strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.day-detail p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.ai-tip {
  padding: 14px 18px;
  background: var(--orange-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* ===== Pricing ===== */
.pricing { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-featured {
  border-color: var(--orange);
  box-shadow: 0 4px 30px rgba(245, 166, 35, 0.15);
  transform: scale(1.03);
}
.pricing-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; }

.pricing-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li.disabled { color: var(--text-muted); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 40px;
}

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

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-icon { color: var(--orange); }

.footer-tagline {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 90%;
  max-width: 440px;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }

.modal-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--bg);
  border-radius: 50px;
  padding: 4px;
}

.modal-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.modal-tab.active {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58, 155, 213, 0.15);
}
.form-group input::placeholder { color: var(--text-muted); }

.modal-form .btn-block { margin-top: 8px; }

.form-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 18px;
}
.form-footer a { font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .nav-links.open { display: flex; }

  .nav-actions { gap: 4px; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-stats { gap: 32px; }

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

  .steps-flow { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; font-size: 1.4rem; }
  .step { flex-basis: auto; max-width: 280px; }

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

  .ai-response { flex-direction: column; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .footer-col ul { align-items: center; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .day-item { flex-direction: column; gap: 6px; }
  .day-time { align-self: flex-start; }

  .modal { padding: 28px 24px; }
}

/* Language Dropdown */
.lang-dropdown { position: relative; margin-left: 12px; }
.lang-dropdown__btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(58,155,213,0.3);
  color: #555;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.lang-dropdown__btn:hover { background: rgba(58,155,213,0.1); color: var(--blue); border-color: var(--blue); }
.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 4px 0;
  min-width: 140px;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.lang-dropdown__menu.open { display: block; }
.lang-dropdown__menu a {
  display: block;
  padding: 8px 16px;
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.15s;
}
.lang-dropdown__menu a:hover { background: #e8f4fd; color: var(--blue); }
.lang-dropdown__menu a.active { color: var(--blue); font-weight: 600; }

/* Social Login */
.social-login { margin-top: 16px; text-align: center; }
.social-login__divider { color: #999; font-size: 0.85rem; margin-bottom: 12px; position: relative; }
.social-login__divider::before, .social-login__divider::after { content: ''; position: absolute; top: 50%; width: 30%; height: 1px; background: #ddd; }
.social-login__divider::before { left: 0; }
.social-login__divider::after { right: 0; }
.social-login__buttons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border: 1px solid #ddd; border-radius: 8px; background: #fff; cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.social-btn:hover { border-color: var(--blue); background: #e8f4fd; }
.social-btn--instagram { color: #E1306C; }
.social-btn--google { color: #4285F4; }
.social-btn--facebook { color: #1877F2; }
.social-login__note { font-size: 0.75rem; color: #999; margin-top: 8px; font-style: italic; }

/* ===== Featured Trips Grid ===== */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trip-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trip-card__img {
  width: 100%;
  height: 200px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.trip-card__emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.trip-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
}

.badge--premium {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}

.trip-card__img--rome { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.trip-card__img--tokyo { background: linear-gradient(135deg, #ffecd2, #f3e7e9); }
.trip-card__img--swiss { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.trip-card__img--bali { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.trip-card__img--nyc { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
.trip-card__img--iceland { background: linear-gradient(135deg, #667eea, #764ba2); }

.trip-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trip-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trip-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.55;
}

.trip-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.trip-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.trip-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-card__price {
  font-weight: 700;
  color: var(--blue);
}

.trip-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}
.trip-card__cta:hover {
  color: var(--orange-dark);
}

/* ===== Partners Grid ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.partner-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.partner-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.partner-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.partner-card__brand {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Responsive: Trips & Partners ===== */
@media (max-width: 900px) {
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trips-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
}
