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

/* ============================================
   ROOT & RESET
   ============================================ */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --accent: #f472b6;
  --secondary: #0f172a;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 20px;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

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

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

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--primary); }

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

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

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

.btn-book {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}

.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Hidden on desktop, shown only via media query on mobile */
.mobile-menu-btn { display: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(99,102,241,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(244,114,182,0.06) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Animated floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-particles span {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.12;
  animation: float-particle 12s infinite linear;
}

.hero-particles span:nth-child(1) { left: 5%;  top: 20%; animation-duration: 10s; width: 6px; height: 6px; }
.hero-particles span:nth-child(2) { left: 15%; top: 80%; animation-duration: 14s; animation-delay: -3s; background: var(--accent); }
.hero-particles span:nth-child(3) { left: 30%; top: 10%; animation-duration: 11s; animation-delay: -6s; width: 5px; height: 5px; }
.hero-particles span:nth-child(4) { left: 50%; top: 70%; animation-duration: 13s; animation-delay: -2s; background: var(--accent); opacity: 0.08; width: 12px; height: 12px; }
.hero-particles span:nth-child(5) { left: 65%; top: 30%; animation-duration: 9s;  animation-delay: -7s; }
.hero-particles span:nth-child(6) { left: 75%; top: 90%; animation-duration: 15s; animation-delay: -4s; background: var(--accent); width: 5px; height: 5px; }
.hero-particles span:nth-child(7) { left: 85%; top: 15%; animation-duration: 12s; animation-delay: -1s; opacity: 0.1; }
.hero-particles span:nth-child(8) { left: 92%; top: 55%; animation-duration: 10s; animation-delay: -9s; background: var(--accent); width: 6px; height: 6px; }

@keyframes float-particle {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.12; }
  100% { transform: translateY(-800px) rotate(360deg); opacity: 0; }
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; }

/* Badge + Live row */
.hero-live-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(99,102,241,0.15);
}

.hero-text h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.hero-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(99,102,241,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--secondary);
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

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

.hero-image {
  flex: 0.9;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.hero-badge-float {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(99,102,241,0.15);
  z-index: 10;
}

.hero-badge-float .badge-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.hero-badge-float strong { display: block; font-size: 0.95rem; }
.hero-badge-float span { font-size: 0.78rem; color: var(--muted); }

/* Second floating badge (response time) */
.hero-badge-float-2 {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(99,102,241,0.1);
  z-index: 10;
  animation: float-badge 4s ease-in-out infinite;
}

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

.badge-icon-sm {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.hero-badge-float-2 strong { display: block; font-size: 0.9rem; }
.hero-badge-float-2 span { font-size: 0.75rem; color: var(--muted); }

/* Live availability pill */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,0.08);
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(34,197,94,0.2);
}

.live-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* WhatsApp CTA button */
.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-wa-hero:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.4);
}

/* Trust Proof Row */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.trust-pill i { font-size: 1rem; }

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}


/* ============================================
   BRANDS MARQUEE
   ============================================ */
.brands-section {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: default;
}

.brand-name:hover { color: var(--secondary); }

/* ============================================
   WHAT WE SERVICE (Category Grid)
   ============================================ */
.categories-section {
  padding: 90px 0;
  background: linear-gradient(145deg, #f0f4ff 0%, #fdf4ff 100%);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(99,102,241,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-heading {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 50px;
}

.section-header { text-align: center; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.cat-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 16px;
  text-align: center;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(99,102,241,0.15);
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
}

.cat-card:hover i { -webkit-text-fill-color: #fff; background: none; }
.cat-card:hover span { color: #fff; }

.cat-card i {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s;
}

.cat-card span {
  font-weight: 700;
  font-size: 0.88rem;
  display: block;
  transition: color 0.3s;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 50%, #db2777 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -50px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 44px 20px;
  transition: all 0.3s;
  color: #fff;
}

.stat-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}

.stat-card h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card p {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  padding: 100px 0;
  background: var(--secondary);
  color: #fff;
}

.how-section .section-heading { color: #fff; }
.how-section .section-sub { color: #94a3b8; }
.how-section .section-label { background: rgba(99,102,241,0.2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 36px;
  border-radius: 24px;
  transition: all 0.3s;
}

.step-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-8px);
  border-color: rgba(99,102,241,0.5);
}

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.35;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step-card p { color: #94a3b8; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 0;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.about-text { flex: 1; }

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.check-list li i { color: var(--primary); font-size: 1.1rem; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 100px 0; background: var(--bg-alt); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.3);
}

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

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

.service-card:hover .service-img img { transform: scale(1.1); }

.service-body { padding: 30px; }
.service-body h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.service-price { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

.btn-wa {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-wa:hover { background: var(--primary); transform: translateY(-1px); }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section { padding: 100px 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
  position: relative;
  cursor: pointer;
}

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

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(15,23,42,0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.portfolio-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ============================================
   AMC PLANS
   ============================================ */
.amc-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.amc-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.amc-section .section-heading { color: #fff; }
.amc-section .section-sub { color: #94a3b8; }
.amc-section .section-label { background: rgba(99,102,241,0.2); }

.amc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.plan-card.featured {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.4);
}

.plan-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 50px;
}

.plan-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.plan-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.plan-badge { font-size: 0.8rem; color: #94a3b8; margin-bottom: 24px; }
.plan-price { font-size: 3rem; font-weight: 900; color: #a5b4fc; margin-bottom: 4px; }
.plan-period { font-size: 0.85rem; color: #64748b; margin-bottom: 28px; }

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #cbd5e1;
  font-size: 0.95rem;
}

.plan-features li i { color: #4ade80; font-size: 0.85rem; }

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-plan:hover { background: var(--primary); border-color: var(--primary); }

/* ============================================
   TRUST / PROMISE
   ============================================ */
.trust-section { padding: 100px 0; background: var(--bg-alt); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(99,102,241,0.3);
}

.trust-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(244,114,182,0.1));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
}

.trust-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.trust-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   TIPS SECTION
   ============================================ */
.tips-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafbff 0%, #f5f3ff 100%);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tip-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  gap: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.tip-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.tip-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.tip-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--secondary);
  color: #fff;
}

.testimonials-section .section-heading { color: #fff; }
.testimonials-section .section-sub { color: #94a3b8; }
.testimonials-section .section-label { background: rgba(99,102,241,0.2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s;
}

.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(99,102,241,0.4);
}

.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.testi-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; }
.testi-name { font-weight: 700; font-size: 1rem; }
.testi-loc { font-size: 0.82rem; color: #64748b; margin-top: 2px; }
.testi-card p { color: #94a3b8; line-height: 1.7; font-size: 0.97rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: 100px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

.contact-form-wrap {
  background: var(--bg-alt);
  padding: 50px;
  border-radius: 28px;
  border: 1px solid var(--border);
}

.contact-form-wrap h2 { font-size: 2rem; font-weight: 800; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-weight: 600; font-size: 0.88rem; color: var(--secondary); }

.form-group input,
.form-group textarea {
  padding: 15px 18px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  outline: none;
  transition: border-color 0.25s;
  background: #fff;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(99,102,241,0.3);
  margin-top: 8px;
}

.btn-submit:hover { box-shadow: 0 14px 32px rgba(99,102,241,0.4); transform: translateY(-1px); }

.contact-info { display: flex; flex-direction: column; gap: 24px; justify-content: center; }

.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-alt);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.info-card:hover { border-color: var(--primary); transform: translateX(4px); }

.info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.info-card h4 { font-size: 0.85rem; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.info-card p { font-weight: 700; font-size: 1rem; }

/* ============================================
   FOOTER - PREMIUM
   ============================================ */
.footer {
  background: var(--secondary);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative mesh gradient blobs */
.footer::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,114,182,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Newsletter Banner */
.footer-newsletter {
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 60%, #db2777 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  width: 280px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-1px);
}

/* Footer Main Body */
.footer-body {
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-brand .footer-logo span { color: var(--primary); }

.footer-brand p {
  color: #64748b;
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  text-decoration: none;
  color: #64748b;
  font-size: 0.93rem;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.fc-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(99,102,241,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #818cf8;
  font-size: 0.9rem;
}

.fc-detail span { font-size: 0.75rem; color: #475569; display: block; margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fc-detail p { font-size: 0.93rem; color: #cbd5e1; font-weight: 500; }

/* Services tags row */
.footer-tags {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.tags-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tags-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 8px;
}

.footer-tag {
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: default;
}

.footer-tag:hover { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.4); color: #a5b4fc; }

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

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

.footer-bottom-inner p {
  color: #334155;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #334155;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 62px; height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* -- Tablet (≤1024px) -- */
@media (max-width: 1024px) {
  .cat-grid                { grid-template-columns: repeat(3, 1fr); }
  .service-grid            { grid-template-columns: repeat(2, 1fr); }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .trust-grid              { grid-template-columns: repeat(2, 1fr); }
  .footer-grid             { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-inner           { grid-template-columns: 1fr; }
  .amc-grid                { grid-template-columns: 1fr; }
  .steps-grid              { grid-template-columns: 1fr; }
  .about-inner             { flex-direction: column; }
  .portfolio-grid          { grid-template-columns: repeat(2, 1fr); }
  .testi-grid              { grid-template-columns: 1fr; }
  .tips-grid               { grid-template-columns: 1fr; }
  .hero-inner              { gap: 40px; }
  .hero-text h1            { font-size: 3.2rem; }
  .newsletter-inner        { flex-direction: column; align-items: flex-start; gap: 24px; }
  .newsletter-form         { width: 100%; }
  .newsletter-form input   { width: 100%; }
}

/* -- Mobile (≤768px) -- */
@media (max-width: 768px) {

  /* Header */
  .header-container        { height: 60px; }
  .nav                     { display: none; }

  /* Mobile Nav overlay */
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav.open a              { font-size: 1.4rem; color: #fff; font-weight: 700; }
  .nav.open .btn-book      { font-size: 1.1rem; padding: 14px 36px; }

  /* Hamburger button (always visible on mobile) */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--secondary);
    transition: all 0.3s;
  }
  .mobile-menu-btn:hover   { background: var(--primary); color: #fff; }

  /* Hero */
  .hero                    { padding: 110px 0 70px; }
  .hero-inner              { flex-direction: column; gap: 36px; text-align: center; }
  .hero-text h1            { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-text p             { margin: 0 auto 28px; font-size: 1rem; }
  .hero-actions            { justify-content: center; }
  .hero-badge              { margin: 0 auto 0; }
  .hero-live-row           { justify-content: center; }
  .hero-badge-float        { display: none; }
  .hero-badge-float-2      { display: none; }
  .hero-trust-row          { justify-content: center; gap: 14px; }
  .trust-divider           { display: none; }

  /* Brands */
  .brands-row              { gap: 28px; }
  .brand-name              { font-size: 1.1rem; }

  /* Categories */
  .categories-section      { padding: 60px 0; }
  .cat-grid                { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cat-card                { padding: 24px 10px; }
  .cat-card i              { font-size: 1.6rem; }
  .cat-card span           { font-size: 0.78rem; }

  /* Stats */
  .stats-section           { padding: 60px 0; margin: 0 12px 60px; border-radius: 24px; }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card               { padding: 32px 16px; }
  .stat-card h2            { font-size: 3rem; }

  /* How it Works */
  .how-section             { padding: 70px 0; }
  .steps-grid              { grid-template-columns: 1fr; gap: 20px; }
  .step-card               { padding: 36px 24px; }

  /* About */
  .about-section           { padding: 70px 0; }
  .about-inner             { flex-direction: column; gap: 36px; }

  /* Services */
  .services-section        { padding: 70px 0; }
  .service-grid            { grid-template-columns: 1fr; gap: 24px; }

  /* Portfolio */
  .portfolio-section       { padding: 70px 0; }
  .portfolio-grid          { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-card          { height: 280px; }
  .portfolio-overlay       { opacity: 1; }

  /* AMC */
  .amc-section             { padding: 70px 0; border-radius: 0; }
  .amc-grid                { grid-template-columns: 1fr; gap: 24px; }
  .plan-card               { padding: 36px 24px; }

  /* Trust */
  .trust-section           { padding: 70px 0; }
  .trust-grid              { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-card              { padding: 28px 16px; }

  /* Tips */
  .tips-section            { padding: 70px 0; }
  .tips-grid               { grid-template-columns: 1fr; gap: 16px; }
  .tip-card                { flex-direction: column; gap: 16px; padding: 28px; }

  /* Testimonials */
  .testimonials-section    { padding: 70px 0; }
  .testi-grid              { grid-template-columns: 1fr; gap: 16px; }
  .testi-card              { padding: 28px; }

  /* Contact */
  .contact-section         { padding: 70px 0; }
  .contact-inner           { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrap       { padding: 28px 20px; }
  .form-row                { grid-template-columns: 1fr; }
  .contact-info            { gap: 16px; }
  .info-card               { padding: 20px 16px; }

  /* Footer Newsletter */
  .footer-newsletter       { padding: 44px 0; }
  .newsletter-text h3      { font-size: 1.4rem; }
  .newsletter-inner        { flex-direction: column; }
  .newsletter-form         { flex-direction: column; width: 100%; }
  .newsletter-form input   { width: 100%; }
  .newsletter-form button  { width: 100%; }

  /* Footer Body */
  .footer-body             { padding: 50px 0 40px; }
  .footer-grid             { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p          { max-width: 100%; }

  /* Tags */
  .footer-tags             { padding: 20px 0; }
  .tags-row                { gap: 8px; }
  .footer-tag              { font-size: 0.75rem; padding: 5px 12px; }

  /* Bottom bar */
  .footer-bottom-inner     { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-bottom-links     { gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* Typography */
  .section-heading         { font-size: 2rem; }
  .section-sub             { font-size: 0.95rem; }

  /* Layout */
  .container               { padding: 0 16px; }
}

/* -- Small Mobile (≤480px) -- */
@media (max-width: 480px) {
  .hero-text h1            { font-size: 2rem; }
  .hero-actions            { flex-direction: column; align-items: stretch; }
  .hero-actions a          { text-align: center; }
  .cat-grid                { grid-template-columns: repeat(2, 1fr); }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .trust-grid              { grid-template-columns: 1fr; }
  .section-heading         { font-size: 1.75rem; }
  .btn-primary,
  .btn-outline             { padding: 14px 24px; font-size: 0.95rem; }
  .plan-price              { font-size: 2.4rem; }
  .footer-socials          { gap: 8px; }
}

/* -- Very Small (≤380px) -- */
@media (max-width: 380px) {
  .hero-text h1            { font-size: 1.75rem; }
  .stat-card h2            { font-size: 2.4rem; }
  .cat-grid                { grid-template-columns: repeat(2, 1fr); }
  .brands-row              { gap: 18px; }
  .brand-name              { font-size: 0.95rem; }
}