/* ── INDIA PAGE OVERRIDES & EXTRAS ── */

/* Flaticon CDN */
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-solid-rounded/css/uicons-solid-rounded.css');

/* Orange/saffron accent for India theme */
:root {
  --india-saffron: #FF6B00;
  --india-saffron-light: #fff4ed;
  --india-green: #138808;
  --india-green-light: #f0fdf4;
  --india-navy: #000080;
}

/* Hero overrides */
.india-hero {
  background: #ffffff !important;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* India flag bar at very top of hero */
.india-flag-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF9933 0%, #FF9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #138808 66.66%, #138808 100%);
}

.india-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff4ed;
  border: 1px solid #fed7aa;
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #c2410c;
  margin-bottom: 28px;
}

.india-badge .flag-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

/* Trust bar */
.trust-bar {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* Made in India callout */
.india-callout {
  background: linear-gradient(135deg, #fff4ed, #fff0f0);
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.india-callout-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FF9933;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 22px;
}

.india-callout strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.india-callout p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* Why cards */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

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

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  color: #fff;
}

/* INR payout highlight */
.inr-highlight {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.inr-highlight::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  top: -80px;
  right: -60px;
  filter: blur(60px);
}

.inr-amount {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fbbf24;
  line-height: 1;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table thead tr {
  background: var(--ink);
  color: #fff;
}

.compare-table th {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.compare-table th:first-child {
  width: 30%;
}

.compare-table td {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
  background: var(--bg);
}

.compare-table .gc-col {
  font-weight: 700;
  color: var(--blue);
}

.check-yes {
  color: var(--green);
  font-weight: 700;
}

.check-no {
  color: #94a3b8;
}

.check-partial {
  color: var(--orange);
  font-weight: 600;
}

/* City pills */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.city-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--india-saffron);
}

/* Review cards */
.review-card-india {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.review-source {
  font-size: 12px;
  color: var(--gray-light);
}

/* Pricing table */
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.pricing-table thead tr {
  background: var(--ink);
  color: #fff;
}

.pricing-table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.pricing-table th:first-child {
  text-align: left;
}

.pricing-table th.popular-col {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.pricing-table td {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--bg);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pt-check { color: var(--green); font-weight: 700; }
.pt-cross  { color: #94a3b8; }
.pt-bold   { font-weight: 700; color: var(--blue); }

/* CTA India section */
.india-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1a0a00 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.india-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 0, 0.15);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  left: -100px;
}

.india-cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(19, 136, 8, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -60px;
  right: -60px;
}

/* Payout note callout */
.payout-note {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #86efac;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
}

.payout-note-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
}

.payout-note strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.payout-note p {
  font-size: 13px;
  color: #166534;
  margin: 0;
  line-height: 1.6;
}

/* Earning stream cards for India page */
.earn-stream-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.earn-stream-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

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

.earn-stream-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.earn-stream-card h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.earn-stream-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media(max-width: 991px) {
  .earn-stream-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 16px; }
}

@media(max-width: 767px) {
  .india-hero { padding: 60px 0 40px; min-height: auto; }
  .trust-bar { gap: 12px; }
  .trust-num { font-size: 1.3rem; }
  .city-grid .city-pill { font-size: 13px; }
  .earn-stream-grid { grid-template-columns: 1fr; }
}
