@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Variables / Design System ===== */
:root {
  --background: hsl(180, 30%, 98%);
  --foreground: hsl(200, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 25%, 15%);
  --primary: hsl(168, 80%, 32%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(180, 40%, 94%);
  --secondary-foreground: hsl(168, 80%, 28%);
  --muted: hsl(180, 20%, 94%);
  --muted-foreground: hsl(200, 15%, 45%);
  --accent: hsl(24, 95%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(180, 20%, 90%);
  --radius: 1rem;
  
  --gradient-hero: linear-gradient(135deg, hsl(180, 40%, 96%) 0%, hsl(180, 30%, 98%) 50%, hsl(0, 0%, 100%) 100%);
  --gradient-primary: linear-gradient(135deg, hsl(168, 80%, 32%) 0%, hsl(180, 60%, 40%) 100%);
  
  --shadow-sm: 0 2px 8px -2px hsla(200, 25%, 15%, 0.08);
  --shadow-md: 0 8px 24px -8px hsla(200, 25%, 15%, 0.12);
  --shadow-lg: 0 16px 48px -12px hsla(200, 25%, 15%, 0.15);
  --shadow-card: 0 4px 24px -4px hsla(168, 80%, 32%, 0.1);
  --shadow-glow: 0 0 40px hsla(168, 80%, 50%, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ===== Utility Classes ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(180, 20%, 90%, 0.5);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  background: var(--primary) !important;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

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

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

.btn-ghost:hover {
  background: var(--secondary);
}

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

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 1rem;
  min-width: 200px;
}

.btn-icon {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 0.75rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.navbar-logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-foreground);
}

.navbar-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.navbar-links a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.2s;
}

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

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: hsla(168, 80%, 32%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10rem;
  width: 20rem;
  height: 20rem;
  background: hsla(24, 95%, 55%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

/* Search Bar */
.hero-search {
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.search-box {
  position: relative;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.search-box input {
  width: 100%;
  height: 3.5rem;
  padding: 0 4rem 0 1.5rem;
  font-size: 1rem;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
}

.search-box input::placeholder {
  color: var(--muted-foreground);
}

.search-box .btn-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Plan Cards */
.hero-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

.plan-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px -4px hsla(168, 80%, 32%, 0.15);
}

.plan-card.popular {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-glow);
}

.plan-card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.plan-card .duration {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.plan-card ul {
  margin-bottom: 1.5rem;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.plan-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.plan-card .price {
  margin-bottom: 1rem;
}

.plan-card .price-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.plan-card .price-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-card .btn {
  width: 100%;
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.trust-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  color: var(--accent);
}

.trust-rating strong {
  font-weight: 700;
}

.trust-rating span {
  color: var(--muted-foreground);
}

.trust-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--border);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trust-badges svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ===== Features Section ===== */
.features {
  padding: 6rem 0;
  background: var(--background);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 6rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsla(180, 20%, 90%, 0.5);
  transition: all 0.3s ease;
}

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

.feature-card:hover .feature-icon {
  background: var(--primary);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover .feature-icon svg {
  color: var(--primary-foreground);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: hsla(168, 80%, 32%, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.benefit-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== How It Works Section ===== */
.how-it-works {
  padding: 6rem 0;
  background: var(--gradient-hero);
}

.steps-container {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.steps-line {
  display: none;
  position: absolute;
  top: 6rem;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, hsla(168, 80%, 32%, 0.2), var(--primary), hsla(168, 80%, 32%, 0.2));
}

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

.step-item {
  text-align: center;
  position: relative;
}

.step-circle {
  position: relative;
  display: inline-flex;
  margin-bottom: 2rem;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--accent-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--muted-foreground);
  max-width: 16rem;
  margin: 0 auto;
}

/* Demo Card */
.demo-card {
  max-width: 24rem;
  margin: 5rem auto 0;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.demo-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.demo-status svg {
  width: 1.25rem;
  height: 1.25rem;
}

.demo-qr {
  width: 10rem;
  height: 10rem;
  margin: 0 auto 1.5rem;
  background: var(--secondary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-qr svg {
  width: 6rem;
  height: 6rem;
  color: hsla(168, 80%, 32%, 0.3);
}

.demo-card h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.demo-card .demo-features {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.demo-info {
  border-top: 1px solid var(--border);
}

.demo-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.demo-row:last-child {
  border-bottom: none;
}

.demo-row span:first-child {
  color: var(--muted-foreground);
}

.demo-row span:last-child {
  font-weight: 600;
}

/* ===== Destinations Section ===== */
.destinations {
  padding: 4rem 0;
  background: var(--background);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.destination-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsla(180, 20%, 90%, 0.5);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: hsla(168, 80%, 32%, 0.3);
}

.destination-card:hover h3 {
  color: var(--primary);
}

.destination-flag {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.destination-card h3 {
  font-weight: 600;
  transition: color 0.3s ease;
}

.destination-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.destinations-cta {
  text-align: center;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 4rem 0;
  background: var(--gradient-hero);
}

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

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsla(180, 20%, 90%, 0.5);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: hsla(168, 80%, 32%, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author .location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.testimonial-tag {
  padding: 0.25rem 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.75rem;
}

.testimonial-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Stats */
.testimonials-stats {
  text-align: center;
}

.stats-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 0 1.5rem;
}

.stat-item:first-child {
  border-right: 1px solid var(--border);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== FAQ Section ===== */
.faq {
  padding: 4rem 0;
  background: var(--background);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid hsla(180, 20%, 90%, 0.5);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--foreground);
  transition: color 0.2s;
}

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

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
  padding: 4rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(168, 80%, 32%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: hsla(24, 95%, 55%, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-buttons .btn {
  min-width: 200px;
}

.store-btn-content {
  text-align: left;
}

.store-btn-content small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
}

.store-btn-content strong {
  display: block;
  font-weight: 700;
}

.cta-trust {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Footer ===== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
  max-width: 16rem;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: hsla(168, 80%, 32%, 0.1);
  color: var(--primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer ol, ul {
  padding-left: unset;
}

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

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

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact {
  display: flex;
  gap: 1.5rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.footer-contact svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .steps-line {
    display: block;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-brand {
    grid-column: span 3;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-plans {
    grid-template-columns: 1fr;
  }
  
  .trust-divider {
    display: none;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }
  
  .features-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* searchResults css */

/* Dropdown container */
#searchResults {
    max-height: 320px;
    overflow-y: auto;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 0;
}

/* Individual items */
#searchResults .search-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s ease, padding-left 0.15s ease;
    font-size: 15px;
    border: none;
}

/* Item hover effect */
#searchResults .search-item:hover {
    background: #f5f7fa;
    padding-left: 16px;
}

/* Country/region flag icons */
#searchResults .search-item img {
    border-radius: 4px;
    object-fit: cover;
}

/* Scrollbar styling */
#searchResults::-webkit-scrollbar {
    width: 6px;
}

#searchResults::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#searchResults::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
}

#searchResults::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* Globe icon alignment */
#searchResults .search-item i {
    font-size: 18px;
    margin-right: 8px;
}

/* Slight shadow for floating dropdown */
#searchResults {
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
}
