/* ===== Ladakh Landing Page – Modern theme ===== */
:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --text-muted: #475569;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #06b6d4;
  --dark: #0f172a;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --font: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ----- Page loader (fast first paint on slow connections) ----- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.page-loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  text-align: center;
}

.page-loader-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: page-loader-spin 0.8s linear infinite;
}

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

.page-loader-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

.page-content {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.page-content.page-content-visible {
  opacity: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}


.header:not(.scrolled) .logo-text,
.header:not(.scrolled) .nav a:not(.btn) {
  color: var(--white);
}

.header-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-right .btn-call-header {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.header:not(.scrolled) .nav a:hover {
  color: var(--white);
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.6rem;
  border-radius: 0.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  color: var(--white);
  transition: transform 0.3s;
  display: block;
}

.header.scrolled .menu-toggle {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.header.scrolled .menu-toggle span {
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(14, 165, 233, 0.5);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
}

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

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.5) 45%, transparent 70%);
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: center;
  min-height: min(100vh - 8rem, 700px);
  padding: 2rem 0;
}

.hero-content {
  max-width: 42rem;
}

.hero-form-wrap {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
  scroll-margin-top: 120px; /* Offset for anchor scroll to show form header */
}

#lead {
  scroll-margin-top: 120px; /* Offset for anchor scroll to show form header */
}

.hero-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-form .form-row {
  margin-bottom: 0.9rem;
}

.hero-form .form-row:last-of-type {
  margin-bottom: 1rem;
}

.recaptcha-invisible {
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-desc strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust .icon {
  color: var(--accent);
  margin-right: 0.35rem;
}

/* Mobile: hide hero form on right, show below hero content */
.visible-mobile {
  display: none;
}

@media (max-width: 900px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-form-wrap {
    max-width: 28rem;
    margin: 0 auto;
  }

  .visible-mobile {
    display: flex;
  }
}

/* ----- Section common ----- */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-title .accent {
  color: var(--primary);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ----- Offers ----- */
.offers {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 2px dashed #bae6fd;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-card-dark {
  background: var(--dark);
  border: none;
  color: var(--white);
}

.offer-card-dark .offer-icon,
.offer-card-dark h3 {
  color: var(--white);
}

.offer-card-dark p {
  color: rgba(255,255,255,0.75);
}

.offer-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 0 0 0 0.75rem;
}

.offer-tag-orange {
  background: #f97316;
}

.offer-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #e0f2fe;
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.offer-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.offer-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.offer-code,
.offer-highlight {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.offer-card-dark .offer-highlight {
  color: #fb923c;
}

/* ----- Packages ----- */
.packages {
  padding: 5rem 0;
  background: var(--white);
}

.packages-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.packages-head .section-desc {
  margin: 0;
}

.link-arrow {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: gap 0.2s;
}

.link-arrow:hover {
  gap: 0.5rem;
}

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

.packages-grid-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s, box-shadow 0.4s;
}

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

.package-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.package-card:hover .package-card-image img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
}

.package-inclusions {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.package-inclusion-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-inclusion-item .ico {
  font-size: 1rem;
}

.package-card-body {
  padding: 1.5rem;
}

.package-tc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.package-mobile-actions {
  display: none;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.package-mobile-actions .btn-call,
.package-mobile-actions .btn-customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.package-mobile-actions .btn-call {
  background: var(--primary);
  color: var(--white);
}

.package-mobile-actions .btn-customize {
  flex: 1;
  min-width: 0;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.package-mobile-actions .btn-customize:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ee06a 0%, #0fa88a 100%);
  color: #fff;
}

.package-mobile-actions .btn-customize:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.package-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.package-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.package-highlights {
  list-style: none;
  margin-bottom: 1.25rem;
}

.package-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.package-highlights li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.package-price-wrap .old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.package-price-wrap .current {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.package-price-wrap .unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-cta {
  width: auto;
  min-width: fit-content;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.package-cta:hover {
  background: var(--dark);
}

/* ----- Testimonials ----- */
.testimonials {
  padding: 5rem 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-text strong {
  color: var(--text);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.testimonial-author strong {
  color: var(--text);
}

.testimonial-author span {
  color: var(--text-muted);
}

/* ----- Google 5 Star Rating ----- */
.google-rating {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fffbf0 0%, #fff8e6 100%);
  border-top: 1px solid #fef3c7;
  border-bottom: 1px solid #fef3c7;
}

.google-rating-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.google-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.google-rating-stars .star {
  color: #f59e0b;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.google-rating-text {
  font-size: 1.25rem;
  color: var(--text);
}

.google-rating-text strong {
  color: var(--text);
}

.google-rating-reviews {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .google-rating-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .google-rating-stars .star {
    font-size: 1.5rem;
  }

  .google-rating-text {
    font-size: 1.1rem;
  }
}

/* ----- FAQ (lazy-loaded) ----- */
.faq-section {
  padding: 4rem 0;
  background: var(--white);
}

.faq-section .section-head {
  margin-bottom: 2rem;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-placeholder-text {
  display: inline-block;
  animation: faq-pulse 1s ease-in-out infinite;
}

@keyframes faq-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ----- CTA block ----- */
.cta-block {
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-desc strong {
  color: var(--white);
}

/* ----- Contact ----- */
.contact {
  padding: 5rem 0;
  background: var(--bg);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-info .section-title {
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-benefits {
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.benefit-icon {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-benefits strong {
  color: var(--text);
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid #e0f2fe;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

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

.hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.form-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  border: 1px solid #fecaca;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.link-button {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: underline;
}

.link-button:hover {
  color: var(--primary-dark);
}

/* ----- Footer ----- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer .logo-text {
  color: var(--white);
}


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

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-links h4,
.footer-contact h4,
.footer-tags h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--primary);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list span {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  color: rgba(255,255,255,0.7);
}

/* Popular search section – main body last section */
.popular-search-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
}

.popular-search-section .section-head {
  margin-bottom: 2rem;
}

.popular-search-section .popular-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.popular-search-section .popular-search span {
  background: var(--white);
  color: var(--text);
  border: 1px solid #fdba74;
  border-radius: 9999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.popular-search-section .popular-search span:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ----- Floating contact ----- */
.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-call {
  background: var(--primary);
  color: var(--white);
}

.float-whatsapp {
  background: #25d366;
  color: var(--white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
  .header-right {
    display: flex;
  }

  .header-right .btn-call-header {
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 1001;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    color: var(--text) !important;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
    font-weight: 600;
  }

  .nav a:hover {
    color: var(--primary) !important;
    opacity: 1;
  }

  .nav .btn-nav {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .packages-head {
    flex-direction: column;
  }

  .package-mobile-actions {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

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