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

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

:root {
  --lp-cream: #f0f6f0;
  --lp-cream-dark: #e8f0e8;
  --lp-gold: #6cc24a;
  --lp-gold-light: #7dd45a;
  --lp-gold-pale: rgba(108,194,74,0.12);
  --lp-brown: #0b2545;
  --lp-brown-light: #1a3a5c;
  --lp-brown-dark: #061a33;
  --lp-text: #2d2d2d;
  --lp-text-muted: #5a6a7a;
  --lp-white: #ffffff;
  --lp-border: #d4e0d4;
  --lp-green: #25d366;
  --lp-green-dark: #1da851;
  --lp-shadow: 0 2px 16px rgba(11,37,69,0.06);
  --lp-shadow-lg: 0 8px 32px rgba(11,37,69,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--lp-text);
  background: var(--lp-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

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

.lp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-gold-pale);
  border: 1px solid var(--lp-gold);
  color: var(--lp-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* ===============================
   HEADER
================================ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 82px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.lp-header-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.lp-header-scrolled {
  background: rgba(240,246,240,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.lp-header-transparent .lp-logo-white { display: block; }
.lp-header-transparent .lp-logo-dark { display: none; }
.lp-header-scrolled .lp-logo-white { display: none; }
.lp-header-scrolled .lp-logo-dark { display: block; }

.lp-header-transparent .lp-currency-form select {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--lp-white);
}

.lp-currency-form select option {
  background: #fff;
  color: #0b2545;
}

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

.lp-logo img {
  height: 60px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.lp-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Navigation */
.lp-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-nav-link {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, opacity 0.2s;
}

.lp-header-transparent .lp-nav-link {
  color: rgba(255,255,255,0.85);
}

.lp-header-transparent .lp-nav-link:hover {
  color: var(--lp-white);
}

.lp-header-scrolled .lp-nav-link {
  color: var(--lp-brown-light);
}

.lp-header-scrolled .lp-nav-link:hover {
  color: var(--lp-gold);
}

/* Header phone */
.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.lp-header-transparent .lp-header-phone {
  color: rgba(255,255,255,0.9);
}

.lp-header-transparent .lp-header-phone svg {
  stroke: rgba(255,255,255,0.9);
}

.lp-header-scrolled .lp-header-phone {
  color: var(--lp-brown);
}

.lp-header-scrolled .lp-header-phone svg {
  stroke: var(--lp-brown);
}

.lp-header-phone:hover {
  color: var(--lp-gold) !important;
}

/* Book Now button in nav */
.lp-btn-nav {
  padding: 7px 18px;
  font-size: 12.5px;
  border-radius: 5px;
  white-space: nowrap;
  line-height: 1.4;
}

/* Hamburger menu button */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  transition: background 0.3s;
}

.lp-header-transparent .lp-hamburger span {
  background: var(--lp-white);
}

.lp-header-scrolled .lp-hamburger span {
  background: var(--lp-brown);
}

.lp-currency-form select {
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--lp-brown);
  background: var(--lp-white);
  cursor: pointer;
  outline: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

/* ===============================
   HERO
================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding: 120px 24px 80px;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,37,69,0.45) 0%, rgba(6,26,51,0.68) 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 0.8s ease both;
}

.lp-hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(108,194,74,0.6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 10px 26px;
  border-radius: 30px;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
}

.lp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 700;
  color: var(--lp-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.lp-hero h1 em {
  color: var(--lp-gold-light);
  font-style: italic;
}

.lp-hero-highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--lp-gold);
  letter-spacing: 4px;
  margin: 0 auto 16px;
}

.lp-hero-desc {
  font-size: 19px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}

.lp-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding: 14px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.lp-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  white-space: nowrap;
}

/* ===============================
   BUTTONS
================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.lp-btn-gold {
  background: var(--lp-gold);
  color: var(--lp-white);
}

.lp-btn-gold:hover {
  background: var(--lp-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108,194,74,0.35);
}

.lp-btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--lp-white);
}

.lp-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--lp-white);
}

.lp-btn-whatsapp {
  background: var(--lp-green);
  color: var(--lp-white);
  border: none;
}

.lp-btn-whatsapp:hover {
  background: var(--lp-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.lp-btn-outline-brown {
  background: transparent;
  border: 2px solid var(--lp-brown);
  color: var(--lp-brown);
}

.lp-btn-outline-brown:hover {
  background: var(--lp-brown);
  color: var(--lp-white);
}

/* ===============================
   GOLDEN TRIANGLE CITIES
================================ */
.lp-gt-section {
  padding: 20px 0;
  background: var(--lp-cream);
  text-align: center;
}

.lp-gt-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 12px;
}

.lp-gt-desc {
  font-size: 16px;
  color: var(--lp-text-muted);
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.lp-cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.lp-city-card {
  background: var(--lp-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-city-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.lp-city-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-city-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  background: var(--lp-gold);
  color: var(--lp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.lp-city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.lp-city-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-white);
  margin: 0;
}

.lp-city-overlay span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.lp-city-body {
  padding: 20px;
}

.lp-city-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-bottom: 12px;
}

.lp-city-meta svg {
  vertical-align: -2px;
  margin-right: 4px;
}

.lp-city-body p {
  font-size: 14px;
  color: var(--lp-text);
  line-height: 1.65;
  margin-bottom: 14px;
}

.lp-city-highlights h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 8px;
}

.lp-city-highlights ul {
  list-style: none;
  padding: 0;
}

.lp-city-highlights li {
  font-size: 13px;
  color: var(--lp-text-muted);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.lp-city-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--lp-gold);
  font-weight: 700;
}

.lp-gt-fullbar {
  background: var(--lp-brown);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--lp-white);
}

.lp-gt-fullbar-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.lp-gt-fullbar-left span {
  font-size: 13px;
  opacity: 0.7;
}

.lp-gt-fullbar-right {
  text-align: right;
}

.lp-gt-fullbar-right span {
  font-size: 13px;
  opacity: 0.7;
}

.lp-gt-fullbar-right strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
}

.lp-gt-fullbar-right small {
  font-size: 13px;
  opacity: 0.7;
}

/* ===============================
   TOUR PACKAGES
================================ */
.lp-packages-section {
  padding: 20px 0;
  background: var(--lp-cream-dark);
  text-align: center;
}

.lp-packages-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 12px;
}

.lp-packages-desc {
  font-size: 16px;
  color: var(--lp-text-muted);
  max-width: 580px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.lp-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.lp-pkg-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-pkg-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-gold);
  color: var(--lp-white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.lp-pkg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-pkg-stars {
  color: var(--lp-gold);
  font-size: 14px;
  letter-spacing: 1px;
}

.lp-pkg-duration {
  font-size: 13px;
  color: var(--lp-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.lp-pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 12px;
}

.lp-pkg-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.lp-pkg-city-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  color: var(--lp-text);
}

.lp-pkg-price {
  margin-bottom: 20px;
}

.lp-pkg-price span {
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-pkg-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--lp-brown);
}

.lp-pkg-price small {
  font-size: 14px;
  color: var(--lp-text-muted);
}

.lp-pkg-highlights h4,
.lp-pkg-included h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 10px;
}

.lp-pkg-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.lp-pkg-list li {
  font-size: 13px;
  color: var(--lp-text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-pkg-list li svg {
  flex-shrink: 0;
}

.lp-pkg-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--lp-gold);
  color: var(--lp-white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
}

.lp-pkg-btn:hover {
  background: var(--lp-gold-light);
  transform: translateY(-1px);
}

.lp-pkg-custom {
  font-size: 15px;
  color: var(--lp-text-muted);
  margin-bottom: 16px;
}

/* ===============================
   TESTIMONIALS
================================ */
.lp-reviews-section {
  padding: 20px 0;
  background: var(--lp-cream);
  text-align: center;
}

.lp-reviews-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 12px;
}

.lp-reviews-desc {
  font-size: 16px;
  color: var(--lp-text-muted);
  max-width: 560px;
  margin: 0 auto 50px;
}

.lp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 50px;
}

.lp-review-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.lp-review-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--lp-gold-pale);
  line-height: 1;
  color: rgba(108,194,74,0.2);
}

.lp-review-stars {
  color: var(--lp-gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.lp-review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text);
  margin-bottom: 18px;
  font-style: italic;
}

.lp-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.lp-review-avatar {
  width: 40px;
  height: 40px;
  background: var(--lp-cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-brown);
}

.lp-review-name strong {
  display: block;
  font-size: 14px;
  color: var(--lp-brown);
}

.lp-review-name span {
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-review-package {
  font-size: 12px;
  color: var(--lp-text-muted);
}

.lp-review-package strong {
  color: var(--lp-brown);
}

/* ===============================
   STATS BAR
================================ */
.lp-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 4px;
}

.lp-stat-item span {
  font-size: 13px;
  color: var(--lp-text-muted);
}

/* ===============================
   HERO PRICE
================================ */
.lp-hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.lp-hero-price-label {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

.lp-hero-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--lp-gold);
  line-height: 1;
}

.lp-hero-price-per {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}

/* ===============================
   INQUIRY FORM — FULL WIDTH
================================ */
.lp-form-section {
  padding: 20px 0;
  background: var(--lp-cream-dark);
  text-align: center;
}

.lp-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 12px;
}

.lp-form-desc {
  font-size: 16px;
  color: var(--lp-text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

.lp-form-main {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}

.lp-form-fullwidth {
  max-width: 100%;
  border: 2px solid rgba(108, 194, 74, 0.25);
  box-shadow: 0 8px 40px rgba(11, 37, 69, 0.08);
}

.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.lp-field {
  display: flex;
  flex-direction: column;
}

.lp-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 6px;
}

.lp-field input,
.lp-field textarea,
.lp-field select {
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--lp-text);
  background: var(--lp-white);
  outline: none;
  transition: border-color 0.2s;
}

.lp-field input::placeholder,
.lp-field textarea::placeholder {
  color: #b5aca0;
}

.lp-field input:focus,
.lp-field textarea:focus,
.lp-field select:focus {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 3px rgba(108,194,74,0.08);
}

.lp-field textarea {
  resize: vertical;
  min-height: 80px;
}

.lp-field-full {
  margin-bottom: 22px;
}

/* Country dropdown */
.lp-country-wrap {
  position: relative;
}

.lp-dropdown-arrow {
  position: absolute;
  right: 14px;
  top: 38px;
  color: var(--lp-text-muted);
  pointer-events: none;
  font-size: 12px;
}

.lp-country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  box-shadow: var(--lp-shadow-lg);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
}

.lp-country-dropdown.open {
  display: block;
}

.lp-country-opt {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.lp-country-opt:hover {
  background: var(--lp-cream);
}


/* Phone group */
.lp-phone-group {
  display: flex;
  align-items: stretch;
}

.lp-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--lp-cream);
  border: 1px solid var(--lp-border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  color: var(--lp-text);
  font-weight: 500;
  white-space: nowrap;
}

.lp-phone-group input[type="tel"] {
  flex: 1;
  border-radius: 0 8px 8px 0;
  min-width: 0;
}

/* Participant counters */
.lp-counter {
  display: flex;
  align-items: center;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  overflow: hidden;
  height: 44px;
}

.lp-counter-btn {
  width: 42px;
  height: 100%;
  border: none;
  background: var(--lp-cream);
  color: var(--lp-brown);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  -webkit-user-select: none;
  user-select: none;
}

.lp-counter-btn:hover {
  background: var(--lp-gold);
  color: var(--lp-white);
}

.lp-counter input {
  flex: 1;
  text-align: center;
  border: none;
  border-left: 1px solid var(--lp-border);
  border-right: 1px solid var(--lp-border);
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-brown);
  padding: 0;
  height: 100%;
  -moz-appearance: textfield;
}

.lp-counter input::-webkit-outer-spin-button,
.lp-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Submit button */
.lp-btn-submit {
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  background: linear-gradient(135deg, #6cc24a, #7dd45a);
  color: var(--lp-white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(108,194,74,0.25);
}

.lp-btn-submit:hover {
  background: linear-gradient(135deg, #5ab23a, #6cc24a);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(108,194,74,0.35);
}

.lp-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success message */
.lp-success-msg {
  text-align: center;
  padding: 40px 20px;
}

.lp-success-icon {
  width: 56px;
  height: 56px;
  background: var(--lp-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-success-msg h4 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--lp-brown);
  margin-bottom: 10px;
}

.lp-success-msg p {
  font-size: 16px;
  color: var(--lp-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Trust section (Contact + Why Book) */
.lp-trust-section {
  padding: 20px 0;
  background: var(--lp-cream);
}

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

.lp-sidebar-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px;
}

.lp-sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 18px;
}

.lp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
}

.lp-contact-row:last-child { margin-bottom: 0; }

.lp-contact-icon {
  width: 38px;
  height: 38px;
  background: var(--lp-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-contact-text strong {
  display: block;
  font-size: 14px;
  color: var(--lp-brown);
  margin-bottom: 2px;
}

.lp-contact-text span {
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-why-list {
  list-style: none;
  padding: 0;
}

.lp-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text);
  padding: 6px 0;
}

.lp-why-check {
  color: var(--lp-gold);
  flex-shrink: 0;
}

.lp-success-msg {
  text-align: center;
  padding: 48px 36px;
}

.lp-success-icon {
  width: 56px;
  height: 56px;
  background: var(--lp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-success-msg h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--lp-brown);
}

.lp-success-msg p {
  font-size: 15px;
  color: var(--lp-text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ===============================
   FINAL CTA
================================ */
.lp-final-cta {
  padding: 20px 0;
  background: var(--lp-brown);
  text-align: center;
}

.lp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--lp-white);
  margin-bottom: 12px;
}

.lp-final-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ===============================
   FOOTER
================================ */
.lp-footer {
  background: var(--lp-brown-dark);
  padding: 20px 0;
  text-align: center;
}

.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.lp-footer-links {
  display: flex;
  gap: 20px;
}

.lp-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ===============================
   STICKY WHATSAPP
================================ */
.lp-sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--lp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.25s ease;
}

.lp-sticky-wa:hover {
  transform: scale(1.1);
}

/* ===============================
   MOBILE STICKY BAR
================================ */
.lp-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--lp-white);
  border-top: 1px solid var(--lp-border);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lp-mobile-sticky.show {
  transform: translateY(0);
}

.lp-sticky-btn {
  flex: 1;
  padding: 13px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lp-sticky-enquire {
  background: var(--lp-gold);
  color: var(--lp-white);
}

.lp-sticky-whatsapp {
  background: var(--lp-green);
  color: var(--lp-white);
}

/* ===============================
   RESPONSIVE — LARGE DESKTOP (1440+)
================================ */
@media (min-width: 1440px) {
  .lp-hero h1 { font-size: 76px; }
  .lp-hero-desc { font-size: 21px; max-width: 780px; }
  .lp-hero-topline { font-size: 14px; padding: 12px 28px; }
  .lp-hero-price-amount { font-size: 60px; }
  .lp-hero-price-label,
  .lp-hero-price-per { font-size: 18px; }
  .lp-hero-trust-text strong { font-size: 15px; }
  .lp-gt-section h2,
  .lp-packages-section h2,
  .lp-reviews-section h2,
  .lp-form-section h2 { font-size: 46px; }
  .lp-final-cta h2 { font-size: 42px; }
  .lp-gt-desc,
  .lp-packages-desc,
  .lp-reviews-desc,
  .lp-form-desc { font-size: 18px; }
  .lp-stat-item strong { font-size: 42px; }
}

/* ===============================
   RESPONSIVE — TABLET (1024)
================================ */
@media (max-width: 1024px) {
  .lp-hero h1 { font-size: 54px; }
  .lp-hero-desc { font-size: 17px; }
  .lp-hero-price-amount { font-size: 46px; }

  .lp-gt-section h2,
  .lp-packages-section h2,
  .lp-reviews-section h2,
  .lp-form-section h2 { font-size: 36px; }
  .lp-final-cta h2 { font-size: 32px; }

  .lp-gt-desc,
  .lp-packages-desc,
  .lp-reviews-desc,
  .lp-form-desc { font-size: 15px; }

  .lp-form-grid-3 { grid-template-columns: 1fr 1fr; }
  .lp-trust-grid { grid-template-columns: 1fr; }

  .lp-gt-fullbar-left h3 { font-size: 18px; }
  .lp-gt-fullbar-right strong { font-size: 28px; }
  .lp-stat-item strong { font-size: 32px; }

  .lp-nav { gap: 20px; }
  .lp-nav-link { font-size: 13px; }
  .lp-header-phone { font-size: 13px; }
  .lp-btn-nav { padding: 8px 18px; font-size: 13px; }
}

/* ===============================
   RESPONSIVE — SMALL TABLET (768)
================================ */
@media (max-width: 768px) {
  .lp-header { height: 68px; }
  .lp-logo img { height: 48px; }

  .lp-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .lp-header-transparent .lp-nav {
    background: rgba(11,37,69,0.95);
    backdrop-filter: blur(12px);
  }

  .lp-header-scrolled .lp-nav {
    background: rgba(240,246,240,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
  }

  .lp-nav.open { display: flex; }

  .lp-nav-link {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }

  .lp-header-phone { display: none; }
  .lp-btn-nav { display: none; }
  .lp-hamburger { display: flex; }
  .lp-currency-form select {
    padding: 5px 8px;
    font-size: 12px;
  }

  .lp-hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .lp-hero h1 { font-size: 40px; }
  .lp-hero-desc { font-size: 16px; max-width: 500px; }
  .lp-hero-topline { font-size: 11px; padding: 8px 18px; letter-spacing: 1px; }

  .lp-hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .lp-hero-ctas .lp-btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
  }

  .lp-hero-price { gap: 8px; margin-bottom: 24px; }
  .lp-hero-price-amount { font-size: 38px; }
  .lp-hero-price-label,
  .lp-hero-price-per { font-size: 14px; }

  .lp-hero-trust {
    gap: 10px 20px;
    margin-top: 16px;
    padding: 12px 0;
  }
  .lp-hero-trust-item { font-size: 12px; }

  .lp-section-badge { font-size: 10px; padding: 6px 16px; letter-spacing: 1.5px; }

  .lp-gt-section,
  .lp-packages-section,
  .lp-reviews-section { padding: 20px 0; }

  .lp-gt-section h2,
  .lp-packages-section h2,
  .lp-reviews-section h2,
  .lp-form-section h2 { font-size: 30px; }

  .lp-final-cta h2 { font-size: 26px; }
  .lp-final-cta p { font-size: 14px; }

  .lp-gt-desc,
  .lp-packages-desc,
  .lp-reviews-desc,
  .lp-form-desc { font-size: 14px; }

  .lp-cities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lp-city-overlay h3 { font-size: 20px; }
  .lp-city-body p { font-size: 13px; }

  .lp-gt-fullbar {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 24px;
  }
  .lp-gt-fullbar-left h3 { font-size: 18px; }
  .lp-gt-fullbar-left span { font-size: 12px; }
  .lp-gt-fullbar-right { text-align: center; }
  .lp-gt-fullbar-right strong { font-size: 28px; }

  .lp-pkg-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lp-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-review-text { font-size: 13px; }

  .lp-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .lp-stat-item strong { font-size: 28px; }
  .lp-stat-item span { font-size: 12px; }

  .lp-form-main { padding: 20px 16px; }
  .lp-form-grid,
  .lp-form-grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-form-fullwidth { border-width: 1.5px; }
  .lp-btn-submit { font-size: 15px; padding: 16px 24px; }

  .lp-trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-trust-section { padding: 20px 0; }
  .lp-sidebar-card { padding: 22px; }
  .lp-sidebar-card h3 { font-size: 17px; }

  .lp-form-section { padding: 20px 0; }
  .lp-final-cta { padding: 20px 0; }

  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .lp-sticky-wa { display: none; }
  .lp-mobile-sticky { display: flex; }
  body.has-lp-sticky { padding-bottom: 72px; }
}

/* ===============================
   RESPONSIVE — SMALL MOBILE (480)
================================ */
@media (max-width: 480px) {
  .lp-hero {
    min-height: 85vh;
    padding: 90px 16px 50px;
  }
  .lp-hero h1 { font-size: 32px; }
  .lp-hero-desc { font-size: 14px; max-width: 100%; }
  .lp-hero-topline { font-size: 10px; padding: 7px 14px; margin-bottom: 24px; }

  .lp-hero-price-amount { font-size: 32px; }
  .lp-hero-price-label,
  .lp-hero-price-per { font-size: 13px; }

  .lp-hero-ctas .lp-btn { font-size: 14px; padding: 13px 20px; }

  .lp-gt-section h2,
  .lp-packages-section h2,
  .lp-reviews-section h2,
  .lp-form-section h2 { font-size: 26px; }
  .lp-final-cta h2 { font-size: 22px; }

  .lp-gt-desc,
  .lp-packages-desc,
  .lp-reviews-desc,
  .lp-form-desc { font-size: 13px; }

  .lp-container { padding: 0 16px; }
  .lp-form-main { padding: 16px 14px; }
  .lp-field label { font-size: 12px; }
  .lp-field input,
  .lp-field textarea,
  .lp-field select { font-size: 13px; padding: 10px 12px; }
  .lp-btn-submit { font-size: 14px; padding: 14px 20px; }

  .lp-gt-fullbar-left h3 { font-size: 16px; }
  .lp-gt-fullbar-right strong { font-size: 24px; }

  .lp-stat-item strong { font-size: 24px; }
  .lp-stat-item span { font-size: 11px; }

  .lp-review-card { padding: 20px; }
  .lp-review-text { font-size: 13px; }

  .lp-why-list li { font-size: 13px; }
  .lp-contact-text strong { font-size: 13px; }
  .lp-contact-text span { font-size: 12px; }
}

@media (min-width: 769px) {
  .lp-mobile-sticky { display: none !important; }
}

/* ===============================
   PREMIUM TOUR CARD OVERRIDES
================================ */
.ptc-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ptc-card .ptc-body {
  display: block !important;
}

.ptc-card .ptc-footer .ptc-discount {
  background: #e53e3e !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 5px;
}

.ptc-card {
  border-color: rgba(108, 194, 74, 0.15);
  box-shadow: 0 2px 12px rgba(11, 37, 69, 0.06);
}

.ptc-card::before {
  background: linear-gradient(90deg, #0b2545, #6cc24a, #0b2545);
}

.ptc-card:hover {
  box-shadow: 0 12px 32px rgba(11, 37, 69, 0.12);
}

.ptc-badge-highlight {
  background: linear-gradient(135deg, #6cc24a, #7dd45a);
}

.ptc-badge-ranked {
  background: linear-gradient(135deg, #0b2545, #1a3a5c);
}

.ptc-badge-top {
  background: linear-gradient(135deg, #0b2545, #1a3a5c);
}

.ptc-duration {
  color: #0b2545;
  border-color: rgba(108, 194, 74, 0.2);
}

.ptc-cities {
  color: #6cc24a;
}

.ptc-title {
  color: #0b2545;
}

.ptc-desc {
  color: #5a6a7a;
}

.ptc-free-cancel svg {
  stroke: #6cc24a;
}

.ptc-free-cancel span {
  color: #6cc24a;
}

.ptc-discount {
  color: #6cc24a;
}

.ptc-price-new {
  color: #0b2545;
}

.ptc-btn {
  border-color: #0b2545;
  color: #0b2545;
}

.ptc-btn:hover {
  background: #0b2545;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .ptc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ptc-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   SPLIT HERO (left content + right form)
================================ */
.lp-hero-split {
  text-align: left;
  padding: 120px 0 80px;
  justify-content: center;
}

.lp-hero-split-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 52px;
  width: 100%;
}

.lp-hero-left {
  flex: 1 1 55%;
  min-width: 0;
}

.lp-hero-right {
  flex: 0 0 390px;
  max-width: 420px;
}

.lp-hero-split h1 {
  text-align: left;
  font-size: 50px;
  margin-bottom: 10px;
}

.lp-hero-split .lp-hero-highlight {
  text-align: left;
  color: rgba(255,255,255,0.92);
  font-style: normal;
  letter-spacing: 2px;
  font-size: 18px;
}

.lp-hero-split .lp-hero-topline {
  display: inline-flex;
  margin-left: 0;
  margin-bottom: 24px;
}

.lp-hero-price-tag {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin: 16px 0 28px;
  font-weight: 500;
}

.lp-hero-price-tag strong {
  font-size: 26px;
  color: var(--lp-gold-light);
  font-weight: 700;
}

.lp-hero-stats {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  max-width: 420px;
}

.lp-hero-stat {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.lp-hero-stat:last-child { border-right: none; }

.lp-hero-stat strong {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: var(--lp-gold-light);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.lp-hero-stat span {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Form Card */
.lp-hero-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.lp-hf-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--lp-brown);
  margin-bottom: 18px;
  text-align: center;
}

.lp-hf-field {
  margin-bottom: 11px;
}

.lp-hf-field input,
.lp-hf-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--lp-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--lp-text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.lp-hf-field input:focus,
.lp-hf-field select:focus {
  border-color: var(--lp-gold);
}

.lp-hf-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6a7a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.lp-hf-btn {
  width: 100%;
  padding: 13px;
  background: var(--lp-gold);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.lp-hf-btn:hover {
  background: var(--lp-gold-light);
  transform: translateY(-1px);
}

/* ===== WHY BOOK COMPACT STRIP ===== */
.lp-why-strip {
  background: #0b2545;
  padding: 36px 0;
}

.lp-why-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lp-why-strip-points {
  flex: 1;
}

.lp-why-strip-heading {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.lp-why-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.lp-why-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}

.lp-why-strip-divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.lp-why-strip-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.lp-why-strip-citem {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.lp-why-strip-citem strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}

.lp-why-strip-citem span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

@media (max-width: 900px) {
  .lp-why-strip-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .lp-why-strip-divider {
    width: 100%;
    height: 1px;
  }
  .lp-why-strip-contact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}

@media (max-width: 480px) {
  .lp-why-strip-grid {
    grid-template-columns: 1fr;
  }
}

.lp-hf-date-wrap {
  position: relative;
}

.lp-hf-cal-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a9a7a;
  pointer-events: none;
  z-index: 1;
}

.lp-hf-date-wrap input {
  padding-left: 38px !important;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .flatpickr-calendar.open {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999999 !important;
    width: 307px !important;
    max-width: calc(100vw - 20px) !important;
    box-shadow: 0 12px 48px rgba(0,0,0,0.4) !important;
  }
}

.lp-hf-phone-group {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--lp-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.lp-hf-phone-group:focus-within {
  border-color: var(--lp-gold);
}

.lp-hf-prefix {
  padding: 11px 12px;
  background: var(--lp-cream);
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-brown);
  border-right: 1.5px solid var(--lp-border);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-hf-phone-group input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--lp-text);
  background: #fff;
  min-width: 0;
}

.lp-hf-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--lp-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--lp-text);
  background: #fff;
  outline: none;
  resize: none;
  line-height: 1.5;
  transition: border-color 0.2s;
}

.lp-hf-field textarea:focus {
  border-color: var(--lp-gold);
}

.lp-hf-success {
  text-align: center;
  padding: 24px 16px;
}

.lp-hf-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 11px 22px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.lp-hf-wa-btn:hover {
  background: #1ebe5d;
}

.lp-success-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 26px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.lp-success-wa-btn:hover {
  background: #1ebe5d;
}

.lp-hf-success p {
  color: var(--lp-text);
  font-size: 15px;
  margin-top: 12px;
  font-weight: 500;
}

/* Trust Bar */
.lp-trust-bar {
  background: var(--lp-brown);
  padding: 13px 0;
}

.lp-trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-trust-bar-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 5px 22px;
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

.lp-trust-bar-item:last-child { border-right: none; }

/* Responsive — split hero */
@media (max-width: 960px) {
  .lp-hero-split { padding: 110px 0 60px; }
  .lp-hero-split-inner { flex-direction: column; gap: 32px; align-items: center; }
  .lp-hero-left { text-align: center; }
  .lp-hero-split h1 { text-align: center; font-size: 38px; }
  .lp-hero-split .lp-hero-highlight { text-align: center; }
  .lp-hero-split .lp-hero-topline { margin-left: auto; margin-right: auto; }
  .lp-hero-stats { margin: 0 auto; }
  .lp-hero-right { flex: none; width: 100%; max-width: 500px; }
}

@media (max-width: 600px) {
  .lp-hero-split { padding: 96px 0 40px; }
  .lp-hero-split h1 { font-size: 28px; }
  .lp-hero-stat strong { font-size: 18px; }
  .lp-hero-price-tag { font-size: 15px; }
  .lp-hero-price-tag strong { font-size: 22px; }
  .lp-trust-bar-items { justify-content: flex-start; }
  .lp-trust-bar-item { font-size: 12px; padding: 4px 20px; border-right: none; }
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

