/* =============================
   KaamHelper – style.css
   ============================= */

/* ---------- CSS Variables ---------- */
:root {
  --orange: #f05a1a;
  --blue: #1a4fba;
  --dark-navy: #0d1b3e;
  --white: #ffffff;
  --light-bg: #f7f9fc;
  --text-dark: #1a1a2e;
  --text-gray: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'Poppins', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.orange { color: var(--orange); }
.blue { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 12px 26px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn-primary:hover { background: #d44c10; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,90,26,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dark);
  padding: 12px 26px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: 2px solid var(--border); transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Section Title ---------- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2rem; font-weight: 700; color: var(--text-dark); }
.section-title.left-align { text-align: left; }
.underline {
  width: 50px; height: 4px; background: var(--orange);
  margin: 12px auto 0; border-radius: 4px;
}

/* ============================
   TOP BAR
   ============================ */
.topbar {
  background: var(--dark-navy); color: #cdd5e0;
  font-size: 0.8rem; padding: 7px 0;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.topbar-inner i { margin-right: 5px; color: var(--orange); }
.topbar-center { font-weight: 500; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); padding: 12px 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.14); }

.nav-container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.logo img { height: 100px; width: auto; mix-blend-mode: multiply; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--text-dark);
  position: relative; padding-bottom: 4px; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none; background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--text-dark);
}

/* ============================
   HERO
   ============================ */
.hero { 
background: linear-gradient(4deg, rgba(240, 246, 255, 0.93) 0%, rgb(15 126 131 / 88%) 50%, rgb(203 140 112 / 93%) 100%), url(../images/khambhat-bg.png) center bottom / cover no-repeat;
  padding: 70px 0 60px; min-height: 520px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,79,186,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
/* Khambhat skyline at bottom of hero */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 240px;
  
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}

.hero-text { flex: 1; max-width: 520px; }
.hero-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-text p { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 22px; }

.hero-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 30px;
}
.hero-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-dark);
}
.hero-features li i {
  width: 30px; height: 30px; border-radius: 50%;
  background: #e8f0fe; color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Right Side */
.hero-img {
  flex: 1; max-width: 460px;
  position: relative; display: flex; justify-content: center; align-items: center;
}

.hero-badge {
  position: absolute; top: 20px; right: 0px;
  background: var(--white); border-radius: 50%;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 0.7rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12); line-height: 1.3; padding: 8px;
  color: var(--text-dark); z-index: 2;
}

.hero-delivery-man {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
  border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(26,79,186,0.25);
  position: relative;
}
.delivery-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.delivery-placeholder > i {
  font-size: 7rem; color: rgba(255,255,255,0.9);
}
.box-label {
  background: var(--white); border-radius: 10px; padding: 8px 14px;
}
.box-label img { height: 32px; width: auto; mix-blend-mode: multiply; }

.hero-pin {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem; color: var(--orange);
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================
   SERVICES
   ============================ */
.services { padding: 80px 0; background: var(--light-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--orange);
}

.service-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.service-icon.blue-light { background: #e8f0fe; color: var(--blue); }
.service-icon.orange-light { background: #fef0e8; color: var(--orange); }

.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.82rem; color: var(--text-gray); }

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works { padding: 80px 0; background: var(--white); }

.steps-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: nowrap;
}

.step-item {
  flex: 1; max-width: 200px;
  text-align: center; padding: 24px 16px;
  background: var(--light-bg); border-radius: var(--radius);
  border: 1px solid var(--border); position: relative;
  transition: all 0.3s;
}
.step-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.step-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--blue);
  margin: 10px auto 14px;
}
.step-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.step-item p { font-size: 0.78rem; color: var(--text-gray); }

.step-arrow {
  font-size: 1.2rem; color: var(--text-gray); flex-shrink: 0;
}

/* ============================
   WHY CHOOSE
   ============================ */
.why-section { padding: 80px 0; background: var(--light-bg); }

.why-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start;
}

.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px; margin-top: 30px;
}
.why-item { text-align: center; }
.why-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: #e8f0fe; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 10px;
}
.why-item p { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); }

/* CTA Box */
.cta-box {
  background: var(--dark-navy); color: var(--white);
  border-radius: var(--radius); padding: 36px 32px;
}
.cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.cta-box p { color: #9ca3af; margin-bottom: 22px; }
.cta-box .btn-primary { width: 100%; justify-content: center; margin-bottom: 18px; }
.whatsapp-line {
  text-align: center; font-size: 0.85rem; color: #9ca3af;
}
.whatsapp-line i { color: #25d366; font-size: 1.1rem; vertical-align: middle; margin: 0 4px; }
.whatsapp-line strong { color: var(--white); }

/* ============================
   STATS
   ============================ */
.stats { padding: 60px 0; background: var(--white); border-top: 1px solid var(--border); }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-item > i { font-size: 2rem; color: var(--text-gray); margin-bottom: 4px; }
.stat-num {
  font-size: 2.5rem; font-weight: 800; display: inline;
}
.stat-item > span { font-size: 2rem; font-weight: 800; margin-left: 2px; }
.stat-item p { font-size: 0.85rem; color: var(--text-gray); font-weight: 500; }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--dark-navy); color: #9ca3af; padding: 60px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 52px; width: auto; margin-bottom: 14px; mix-blend-mode: screen; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem; transition: background 0.3s;
}
.social-links a:hover { background: var(--orange); }

.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }

.contact-list li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-bottom: 12px;
}
.contact-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  padding: 18px 20px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-features { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-img { max-width: 300px; }
  .hero-badge { right: -10px; }

  .why-container { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid { flex-wrap: wrap; }
  .step-arrow { display: none; }
  .step-item { max-width: 160px; min-width: 130px; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; font-size: 0.75rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 14px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .nav-container { position: relative; }

  .hero-text h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-delivery-man { width: 240px; height: 240px; }
  .delivery-placeholder > i { font-size: 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title h2 { font-size: 1.6rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
