/* ============================================================
   WARRANTY MITRA — GLOBAL STYLESHEET
   Goelectronix Technologies Pvt. Ltd.
   ============================================================ */

/* ---- BRAND TOKENS ---- */
:root {
  --primary: #0d47a1;
  --primary-dark: #093380;
  --accent: #00c853;
  --green: #15803d;
  --green-light: #16a34a;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 1rem;
  --radius-lg: 1.5rem;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--slate-700); background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ---- SECTION TITLE ---- */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.25;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21,128,61,0.3);
}
.btn-green:hover { background: #166534; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-dark {
  background: var(--slate-900);
  color: #fff;
}
.btn-dark:hover { background: #1e293b; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 0.75rem; }

/* ---- CARDS ---- */
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-featured {
  border: 2px solid var(--green);
  background: var(--green-50);
  transform: scale(1.03);
}
.card-featured:hover { transform: scale(1.05); }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.badge-green { background: var(--green-100); color: var(--green); }
.badge-green-solid { background: var(--green); color: #fff; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #0d7a4e 100%);
  padding: 5rem 0 4rem;
  color: #fff;
}
.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='%23ffffff' 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-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p { font-size: 1.05rem; opacity: 0.9; max-width: 550px; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- INNER PAGE HERO (small) ---- */
.page-hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 60%, #0d7a4e 100%);
  padding: 3.5rem 0 3rem;
  color: #fff;
  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='%23ffffff' 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");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.9; font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.8;
  justify-content: center;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ---- HOW IT WORKS STEPS ---- */
.steps { display: grid; gap: 2rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.step-body p { font-size: 0.875rem; color: var(--slate-600); }

/* ---- COVERAGE GRID ---- */
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.coverage-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.coverage-item:hover { box-shadow: var(--shadow-md); }
.coverage-item .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.coverage-item h5 { font-size: 0.8rem; font-weight: 700; color: var(--slate-900); }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--green) 0%, #0d7a4e 100%);
  padding: 3.5rem 0;
  color: #fff;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.cta-strip p { opacity: 0.9; margin-bottom: 1.75rem; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white { background: #fff; color: var(--green); font-weight: 700; }
.btn-white:hover { background: #f0fdf4; }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ---- BENEFIT ICON CARDS ---- */
.benefit-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ---- FAQ ACCORDION ---- */
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-900);
  text-align: left;
  gap: 1rem;
}
.faq-arrow { flex-shrink: 0; transition: transform 0.25s; font-size: 0.9rem; color: var(--green); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 1.1rem; font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ---- TABLE ---- */
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comp-table th { background: var(--slate-900); color: #fff; padding: 0.75rem 1rem; text-align: left; }
.comp-table th.highlight { background: var(--green); }
.comp-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--slate-100); }
.comp-table tr:hover td { background: var(--green-50); }
.comp-table .check { color: var(--green); font-weight: 700; }
.comp-table .cross { color: #ef4444; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---- FORM ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.4rem; }
.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--slate-200);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-900);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,128,61,0.12); }
.form-control::placeholder { color: #94a3b8; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---- PRICING CARDS ---- */
.price-card {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--green);
  background: var(--green-50);
  transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.06); }
.price-amount { font-size: 2.25rem; font-weight: 800; color: var(--green); }
.price-original { font-size: 0.8rem; text-decoration: line-through; color: #94a3b8; }
.price-features { margin-top: 1rem; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  padding: 0.3rem 0;
}
.price-features li::before { content: '✔'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ---- TEAM CARDS ---- */
.team-card { text-align: center; }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d47a1, var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: #fff;
  font-weight: 800;
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--slate-900); }
.team-card p { font-size: 0.8rem; color: var(--green); font-weight: 600; }
.team-card .bio { font-size: 0.82rem; color: var(--slate-600); margin-top: 0.5rem; }

/* ---- BLOG CARD ---- */
.blog-card { overflow: hidden; }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, #0d47a1 0%, var(--green) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.25rem; }
.blog-meta { font-size: 0.72rem; color: var(--slate-600); margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); line-height: 1.4; margin-bottom: 0.5rem; }
.blog-body p { font-size: 0.82rem; color: var(--slate-600); }
.blog-link { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-top: 0.75rem; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ---- CAREER CARD ---- */
.job-card { padding: 1.5rem; }
.job-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--slate-900); }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0; }
.job-tag { font-size: 0.72rem; background: var(--slate-100); color: var(--slate-700); padding: 0.2rem 0.6rem; border-radius: 999px; font-weight: 600; }

/* ---- LEGAL PAGE ---- */
.legal-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--slate-900); margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.9rem; color: var(--slate-600); margin-bottom: 0.75rem; line-height: 1.8; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-content ul li { font-size: 0.9rem; color: var(--slate-600); margin-bottom: 0.35rem; list-style: disc; line-height: 1.7; }
.legal-nav { position: sticky; top: 100px; }
.legal-nav a { display: block; padding: 0.5rem 0.75rem; font-size: 0.82rem; color: var(--slate-600); border-left: 2px solid var(--slate-200); margin-bottom: 0.2rem; transition: all 0.2s; }
.legal-nav a:hover, .legal-nav a.active { color: var(--green); border-left-color: var(--green); padding-left: 1rem; }

/* ---- STATS ---- */
.stat-item { text-align: center; }
.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--green); }
.stat-label { font-size: 0.82rem; color: var(--slate-600); }

/* ---- AUTH ---- */
.auth-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #0d7a4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-card h2 { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); text-align: center; margin-bottom: 0.4rem; }
.auth-card .sub { font-size: 0.85rem; color: var(--slate-600); text-align: center; margin-bottom: 1.75rem; }
.auth-divider { text-align: center; font-size: 0.75rem; color: var(--slate-600); margin: 1rem 0; position: relative; }
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--slate-200);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-tabs { display: flex; gap: 0; border: 1.5px solid var(--slate-200); border-radius: 0.5rem; overflow: hidden; margin-bottom: 1.5rem; }
.auth-tab { flex: 1; padding: 0.65rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none; background: #fff; color: var(--slate-600); transition: all 0.2s; }
.auth-tab.active { background: var(--green); color: #fff; }

/* ---- APP DOWNLOAD ---- */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--slate-900);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.8rem;
  transition: background 0.2s, transform 0.2s;
}
.app-store-btn:hover { background: #1e293b; transform: translateY(-2px); }
.app-store-btn .store-icon { font-size: 1.5rem; }
.app-store-btn .store-text small { display: block; font-size: 0.65rem; opacity: 0.75; }
.app-store-btn .store-text strong { font-size: 0.95rem; font-weight: 700; }

/* ---- NETWORK MAP SECTION ---- */
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: all 0.2s;
}
.city-chip:hover { border-color: var(--green); color: var(--green); }

/* ---- TESTIMONIAL ---- */
.testimonial-card { padding: 1.75rem; }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.875rem; color: var(--slate-700); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.testimonial-author h5 { font-size: 0.875rem; font-weight: 700; }
.testimonial-author p { font-size: 0.75rem; color: var(--slate-600); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-container { position: fixed; bottom: 20px; right: 20px; display: flex; align-items: center; z-index: 999; }
.whatsapp-text { background: #111; color: #fff; font-size: 12px; padding: 6px 10px; border-radius: 6px; margin-right: 10px; opacity: 0; transform: translateX(10px); transition: all 0.3s ease; white-space: nowrap; }
.whatsapp-float { width: 56px; height: 56px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); transition: transform 0.25s ease; }
.whatsapp-float:hover { background: #1ebe5a; transform: scale(1.05); }
.whatsapp-container:hover .whatsapp-text { opacity: 1; transform: translateX(0); }

/* ---- RESPONSIVE GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .section { padding: 2.5rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .price-card.popular { transform: scale(1); }
  .card-featured { transform: scale(1); }
  .auth-card { padding: 2rem 1.25rem; }
  .step { flex-direction: column; gap: 0.75rem; }
}

/* ---- PRESS RELEASE ---- */
.press-card { padding: 1.5rem; }
.press-card h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 0.4rem; }
.press-meta { font-size: 0.75rem; color: var(--slate-600); margin-bottom: 0.5rem; }
.press-card p { font-size: 0.875rem; color: var(--slate-600); }

/* ---- CONTACT ICONS ---- */
.contact-icon-box {
  width: 3rem; height: 3rem;
  background: var(--green-100);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}

/* ---- BACK TO TOP ---- */
#backTop {
  position: fixed; bottom: 90px; right: 22px;
  width: 40px; height: 40px;
  background: var(--slate-900); color: #fff;
  border-radius: 50%; display: none;
  align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; z-index: 900;
  box-shadow: var(--shadow-md); transition: background 0.2s;
}
#backTop:hover { background: var(--green); }
#backTop.show { display: flex; }

/* ---- SECTION DIVIDER ---- */
.divider { width: 60px; height: 4px; background: var(--green); border-radius: 2px; margin: 0.75rem auto 0; }
.divider-left { margin-left: 0; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: var(--green-50);
  border-left: 4px solid var(--green);
  padding: 1rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.9rem;
  color: var(--slate-700);
}
