/* ===== ROOT VARIABLES ===== */
:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fed7aa;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --white: #ffffff;
  --gray-light: #f8fafc;
  --gray: #94a3b8;
  --text: #1e293b;
  --text-light: #64748b;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { font-size: 0.95rem; color: var(--text-light); }

/* ===== SECTION HEADING ===== */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: clamp(1.6rem,3.5vw,2.4rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-divider {
  width: 48px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}
.section-divider.left { margin: 0 0 2.5rem; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn i { font-size: 1rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar i { color: var(--orange); margin-right: 5px; }
.topbar-social a { font-size: 0.85rem; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.14); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem; font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.logo-tagline { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(249,115,22,0.07);
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px;
  background: var(--orange); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(120deg, #0f172a 60%, #1e293b 100%);
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-accent {
  position: absolute; right: -80px; top: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-accent-2 {
  position: absolute; left: -60px; bottom: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-badge i { font-size: 0.7rem; }
.hero-title { color: var(--white); margin-bottom: 18px; }
.hero-title span { color: var(--orange); }
.hero-subtitle { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 32px; max-width: 480px; }
.hero-perks {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 36px;
}
.perk {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 0.83rem;
}
.perk i { color: var(--orange); font-size: 1rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hero-img-wrap img { width: 100%; border-radius: 20px; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card.card-1 { bottom: -18px; left: -24px; }
.hero-float-card.card-2 { top: -18px; right: -24px; animation-delay: 1.5s; }
.hero-float-card .card-icon {
  width: 40px; height: 40px;
  background: rgba(249,115,22,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem;
}
.hero-float-card .card-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.hero-float-card .card-text span { font-size: 0.72rem; color: var(--gray); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--orange);
  padding: 28px 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; text-align: center;
}
.stat-item { color: var(--white); }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 90px 0; background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 64px; height: 64px;
  background: rgba(249,115,22,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--orange);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); color: var(--white); }
.service-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 0.82rem; }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 90px 0; }
.products-carousel { position: relative; overflow: hidden; }
.products-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1.5px solid #f1f5f9;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-light); }
.product-img {
  background: #f8fafc;
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-img i { font-size: 5rem; color: #cbd5e1; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
}
.product-body { padding: 18px; }
.product-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.product-spec { font-size: 0.78rem; color: var(--gray); margin-bottom: 14px; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--orange); font-family: 'Rajdhani', sans-serif; margin-bottom: 12px; }
.product-price small { font-size: 0.75rem; text-decoration: line-through; color: var(--gray); margin-left: 6px; font-family: 'Poppins', sans-serif; font-weight: 400; }

/* ===== WHY US ===== */
.why-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.why-section .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: rgba(249,115,22,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem; color: var(--orange);
}
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ===== PROCESS SECTION ===== */
.process-section { padding: 90px 0; background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  z-index: 0;
}
.step {
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--orange);
  box-shadow: 0 0 0 8px #fff;
  transition: var(--transition);
}
.step:hover .step-num { background: var(--orange); color: white; }
.step h3 { color: var(--dark); font-size: 0.95rem; margin-bottom: 6px; }
.step p { font-size: 0.8rem; }

/* ===== REVIEWS ===== */
.reviews-section { padding: 90px 0; background: var(--gray-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1.5px solid transparent;
  position: relative;
}
.review-card:hover { border-color: var(--orange-light); transform: translateY(-4px); }
.review-quote {
  font-size: 3rem; color: var(--orange); opacity: 0.15;
  position: absolute; top: 12px; left: 20px;
  font-family: Georgia, serif; line-height: 1;
}
.review-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 12px; }
.review-text { font-size: 0.88rem; color: var(--text-light); margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.reviewer-loc { font-size: 0.75rem; color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--orange);
  padding: 60px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: 1.8rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-section { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.88rem; color: var(--dark); font-weight: 600; margin-bottom: 2px; }
.contact-card p, .contact-card a { font-size: 0.83rem; color: var(--text-light); }
.contact-card a:hover { color: var(--orange); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; color: var(--text);
  transition: var(--transition);
  outline: none; background: var(--gray-light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== MAP ===== */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  height: 260px; margin-top: 24px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; z-index:1; }
.breadcrumb {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  margin-top: 12px; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 0.65rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-about p { font-size: 0.83rem; margin: 16px 0 20px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: white; }
.footer h4 {
  color: var(--white); font-size: 1rem;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(249,115,22,0.3);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: 0.6rem; color: var(--orange); }
.footer-contact li {
  font-size: 0.83rem; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.55);
}
.footer-contact i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--orange); }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  border: none;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--orange);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 14px; right: -28px;
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 40px;
  transform: rotate(35deg);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-icon { font-size: 2.2rem; color: var(--orange); margin-bottom: 14px; }
.pricing-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pricing-price { font-size: 2rem; font-weight: 700; color: var(--orange); font-family: 'Rajdhani',sans-serif; margin-bottom: 4px; }
.pricing-price span { font-size: 0.8rem; font-weight: 400; font-family: 'Poppins',sans-serif; color: var(--gray); }
.pricing-desc { font-size: 0.8rem; color: var(--gray); margin-bottom: 20px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li {
  font-size: 0.82rem; color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li i { color: var(--orange); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img i { font-size: 6rem; color: rgba(249,115,22,0.3); }
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(249,115,22,0.08), transparent);
}
.about-feature { display: flex; gap: 14px; margin-bottom: 20px; }
.about-feature-icon {
  width: 48px; height: 48px;
  background: rgba(249,115,22,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.2rem; flex-shrink: 0;
}
.about-feature h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.about-feature p { font-size: 0.8rem; }

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(249,115,22,0.4);
}
.team-info { padding: 20px; }
.team-info h3 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.team-info p { font-size: 0.8rem; color: var(--orange); font-weight: 500; }

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid #f1f5f9;
  padding: 16px 20px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(249,115,22,0.08); color: var(--orange); }
.mobile-nav .btn { margin-top: 8px; width: fit-content; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle, .hero-perks, .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .topbar { display: none; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-perks { flex-direction: column; align-items: center; gap: 10px; }
}
