/* Stylesheet for lankatravelmap.com Domain Sales Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #070c0e;
  --bg-card: rgba(14, 25, 29, 0.7);
  --bg-card-hover: rgba(22, 38, 44, 0.85);
  --border-color: rgba(45, 212, 191, 0.15);
  --border-glow: rgba(45, 212, 191, 0.4);
  
  --primary-emerald: #10b981;
  --primary-cyan: #06b6d4;
  --accent-gold: #f59e0b;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #20bd5a;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.2);
  --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.3);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Background Ambient Glows */
.bg-glow-1 {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-2 {
  position: fixed;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Header Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 12, 14, 0.8);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #070c0e;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.badge-sale {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-gold);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.btn-nav-whatsapp {
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

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

/* Layout Containers */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 2rem 0;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--primary-emerald);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.domain-display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--primary-emerald) 70%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  font-weight: 400;
}

/* Package Options Grid */
.package-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto 2rem auto;
}

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

.price-hero-card {
  background: linear-gradient(145deg, rgba(16, 28, 33, 0.9), rgba(9, 17, 20, 0.95));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-hero-card.bundle-card {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: var(--shadow-gold), 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, rgba(29, 23, 14, 0.95), rgba(12, 17, 19, 0.95));
}

.pkg-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-emerald);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 12px;
}

.pkg-badge.gold {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  border-color: rgba(245, 158, 11, 0.5);
}

.price-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.price-value-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
}

.amount {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--primary-emerald);
  font-weight: 500;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.bundle-card .price-sub {
  color: var(--accent-gold);
}

.btn-primary-wa {
  width: 100%;
  background: linear-gradient(135deg, var(--whatsapp-green), #1eb754);
  color: white;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-primary-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #28e06f, #1aa34a);
}

.btn-primary-wa.big {
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
  border-radius: 30px;
}

.btn-gold-wa {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #070c0e;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-gold-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.phone-display {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.phone-display strong {
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

/* Image Visual Graphic Showcase */
.hero-image-wrapper {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.3), rgba(6, 182, 212, 0.2));
  box-shadow: var(--shadow-glow);
}

.hero-image-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom Website Section (Rs 12,000) */
.custom-website-section {
  margin: 3rem 0 5rem 0;
}

.custom-site-card {
  background: linear-gradient(145deg, rgba(14, 25, 29, 0.85), rgba(8, 16, 19, 0.95));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
}

.custom-site-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.service-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.custom-site-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.custom-site-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
}

.custom-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  color: var(--text-main);
}

.highlight-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-emerald);
  font-weight: 800;
}

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

.web-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.web-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.web-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.web-feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.custom-site-cta {
  text-align: center;
}

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

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-emerald);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Buying Process Section */
.process-section {
  background: rgba(14, 25, 29, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin-bottom: 5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

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

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #070c0e;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: var(--shadow-gold);
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-glow);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-toggle {
  transition: transform 0.3s ease;
  color: var(--primary-emerald);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-color);
  background: rgba(5, 9, 11, 0.95);
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--whatsapp-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-copyright {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Floating WhatsApp FAB */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--whatsapp-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  animation: pulse-fab 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background: var(--whatsapp-green-hover);
}

@keyframes pulse-fab {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Toast notification */
.toast-msg {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: rgba(16, 185, 129, 0.9);
  color: #070c0e;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}
