/* ============================================================
   GEO SERVICES INDIA PAGE - DESIGN SYSTEM
   Conceptial Media - Generative Engine Optimization
   ============================================================ */

/* --- TOKENS --- */
:root {
  --geo-primary: #e7181b;
  --geo-primary-hover: #bd1215;
  --geo-dark: #0a0a0a;
  --geo-dark-elevated: #111111;
  --geo-text: #0f172a;
  --geo-text-secondary: #475569;
  --geo-text-muted: #94a3b8;
  --geo-border: #e2e8f0;
  --geo-bg: #f8fafc;
  --geo-white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 40px -10px rgb(0 0 0 / 0.15);
}

.container {
  max-width: 1200px;
}
/* ============================================================
   1. HERO SECTION
   ============================================================ */
.geo-hero {
  background: var(--gradient-premium-dark);
  padding: 140px 24px 0;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

.hero-grid-bg {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(#bf1a1a24 1px, transparent 1px),
    linear-gradient(90deg, #bf1a1a26 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

.geo-hero .glow-blob-hero {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.1) 0%,
    transparent 65%
  );
  top: -20%;
  right: -15%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.geo-hero .container {
  /* max-width: 900px; */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-content-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--geo-white);
  width: 100%;
  padding-bottom: 60px;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--geo-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-badge .badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--geo-primary);
  animation: badgePulse 2s infinite;
}

.geo-hero .hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  /* max-width: 850px; */
}

.geo-hero .hero-title .highlight {
  color: var(--geo-primary);
}

.geo-hero .hero-desc {
  max-width: 900px;
  margin: 0 auto 32px;
  color: #94a3b8;
  font-size: 1.08rem;
  line-height: 1.75;
}

.geo-hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  background: var(--geo-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--geo-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(231, 24, 27, 0.35);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 24px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-divider {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--geo-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Floating Enquire */
.float-enquire {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--geo-primary);
  color: var(--geo-white);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-enquire:hover {
  background: var(--geo-primary-hover);
  padding-bottom: 34px;
}

/* ============================================================
   2. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.badge-red {
  display: inline-block;
  color: var(--geo-primary);
  background: rgba(231, 24, 27, 0.06);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 24, 27, 0.12);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--geo-text);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title .highlight {
  color: var(--geo-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--geo-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   4. DISCOVER BANNER (Shopify CTA Style)
   ============================================================ */
.discover-banner-section {
  padding: 60px 24px;
background: rgba(133, 2, 2, 0.03);
}

.discover-banner {
  background: linear-gradient(135deg, #0a0b10 0%, #12131a 50%, #290203 100%);
  border-radius: var(--corp-radius);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 0, 0, 0.05);
}

.discover-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.discover-avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.discover-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover-text {
  color: var(--corp-white);
}

.discover-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  color: #fff;
}

.discover-text p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.discover-banner .btn-primary {
  /* background: var(--corp-primary); */
  /* color: #fff; */
  padding: 14px 28px;
  border-radius: 50px;
  /* border-radius: 8px; */
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.discover-banner .btn-primary:hover {
  /* background: var(--corp-primary-hover); */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 24, 27, 0.3);
}

/* ============================================================
   3. WHY CHOOSE GEO SECTION
   ============================================================ */
.why-geo-section {
  padding: 100px 24px;
background: rgba(133, 2, 2, 0.03);

}

.why-geo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-geo-left .badge-red {
  margin-bottom: 14px;
}

.why-geo-left .section-title {
  text-align: left;
  margin-bottom: 18px;
}

.why-geo-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--geo-text-secondary);
  margin-bottom: 24px;
}

.geo-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.geo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--geo-text);
  line-height: 1.5;
  font-weight: 500;
}

.geo-checklist li i {
  color: var(--geo-primary);
  margin-top: 2px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-geo-right {
  display: flex;
  justify-content: center;
}

.why-geo-right img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--geo-border);
}

/* ============================================================
   4. SERVICES GRID SECTION
   ============================================================ */
.services-grid-section {
  padding: 100px 24px;
  background: var(--geo-bg);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: rgba(231, 24, 27, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--geo-text);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
  line-height: 1.3;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--geo-primary);
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--geo-text-secondary);
}

/* ============================================================
   GXS SECTOR SECTION — Completely Unique Namespace
   ============================================================ */
.gxs-sector-section {
  padding: 100px 24px;
  background: var(--geo-white, #ffffff);
}

.gxs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gxs-header {
  text-align: center;
  margin-bottom: 56px;
}

.gxs-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(231, 24, 27, 0.08);
  color: #e7181b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.gxs-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--geo-text, #1a1a1a);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gxs-accent {
  color: var(--geo-primary, #e7181b);
}

.gxs-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--geo-text-secondary, #555555);
}

/* ---- Grid ---- */
.gxs-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Card ---- */
.gxs-sector-card {
  background: var(--geo-white, #ffffff);
  border: 1px solid var(--geo-border, #e5e5e5);
  border-radius: var(--radius, 16px);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gxs-sector-card:hover {
  border-color: rgba(231, 24, 27, 0.2);
  box-shadow: 0 20px 40px -12px rgba(231, 24, 27, 0.12);
  transform: translateY(-6px);
}

/* ---- Icon (Image jaisa circular soft bg) ---- */
.gxs-sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(231, 24, 27, 0.08);
  color: var(--geo-primary, #e7181b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.gxs-sector-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.gxs-sector-card:hover .gxs-sector-icon {
  background: var(--geo-primary, #e7181b);
  color: #ffffff;
  transform: scale(1.08);
}

/* ---- Typography ---- */
.gxs-sector-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--geo-text, #1a1a1a);
  margin-bottom: 12px;
}

.gxs-sector-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--geo-text-secondary, #555555);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .gxs-sector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .gxs-sector-grid {
    grid-template-columns: 1fr;
  }

  .gxs-sector-section {
    padding: 70px 18px;
  }

  .gxs-sector-card {
    padding: 28px 22px;
  }
}
/* ============================================================
   6. WHY US SECTION
   ============================================================ */
.why-us-section {
  padding: 100px 24px;
  background: white;
}

.why-us-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: start;
}

.why-us-left {
  position: sticky;
  top: 120px;
}

.why-us-left .badge-red {
  margin-bottom: 14px;
}

.why-us-left .section-title {
  text-align: left;
  margin-bottom: 18px;
}

.why-us-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--geo-text-secondary);
  margin-bottom: 24px;
}

.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card {
  background: var(--geo-bg);
  border: 1px solid var(--geo-border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}


.benefit-card:hover{
background: var(--geo-white);
}

.benefit-card:hover {
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(231, 24, 27, 0.06);
  color: var(--geo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--geo-primary);
  color: var(--geo-white);
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--geo-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--geo-text-secondary);
}

/* Responsive */
@media (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-us-left {
    position: static;
  }
}

/* ============================================================
   RESPONSIVE: 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .geo-hero .hero-title {
    font-size: 3rem;
  }

  .why-geo-grid,
  .why-us-grid,
  .cta-grid {
    gap: 50px;
  }

  .cta-title {
    font-size: 2.4rem;
  }
}

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

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-us-left {
    position: static;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-left {
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   RESPONSIVE: 991px
   ============================================================ */
@media (max-width: 991px) {
  .geo-hero {
    padding: 120px 20px 0;
    min-height: auto;
  }

  .geo-hero .hero-title {
    font-size: 2.6rem;
  }

  .geo-hero .hero-desc {
    font-size: 1rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 1 1 40%;
    padding: 0 10px;
  }

  .stat-divider {
    display: none;
  }

  .why-geo-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .why-geo-left .section-title {
    text-align: center;
  }

  .geo-checklist {
    align-items: center;
  }

  .geo-checklist li {
    justify-content: center;
    text-align: left;
  }

  .why-geo-right img {
    max-width: 440px;
  }

  .geo-hero,
  .why-geo-section,
  .services-grid-section,
  .industries-section,
  .why-us-section,
  .faq-section,
  .cta-section {
    padding: 80px 20px;
  }
}

/* ============================================================
   RESPONSIVE: 768px
   ============================================================ */
@media (max-width: 768px) {
  .geo-hero .hero-title {
    font-size: 2.1rem;
  }

  .geo-hero .hero-desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card,
  .industry-card {
    padding: 26px 22px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-form-card {
    padding: 30px 24px;
  }

  .faq-trigger {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  .float-enquire {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE: 480px
   ============================================================ */
@media (max-width: 480px) {
  .geo-hero {
    padding: 100px 16px 0;
  }

  .geo-hero .hero-title {
    font-size: 1.75rem;
  }

  .geo-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .geo-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-bar {
    padding: 24px 16px;
  }

  .stat-item {
    flex: 1 1 45%;
    padding: 0 5px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-desc {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .why-geo-section,
  .services-grid-section,
  .industries-section,
  .why-us-section,
  .faq-section,
  .cta-section {
    padding: 60px 16px;
  }

  .geo-checklist li {
    font-size: 0.9rem;
  }

  .benefit-card {
    padding: 22px 20px;
  }

  .cta-tags {
    justify-content: center;
  }

  .cta-tag {
    font-size: 0.8rem;
  }

  .cta-form-card {
    padding: 24px 20px;
  }

  .cta-form-card h3 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   MOBILE TYPOGRAPHY OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .geo-hero .hero-title {
    font-size: 1.85rem !important;
    font-weight: 700 !important;
  }

  .section-title,
  .cta-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
  }

  .service-card h3,
  .industry-card h4,
  .benefit-card h4,
  .cta-form-card h3 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
  }

  .geo-hero .hero-desc,
  .section-subtitle,
  .why-geo-desc,
  .why-us-desc,
  .service-card p,
  .industry-card p,
  .benefit-card p,
  .faq-content p,
  .geo-checklist li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  .geo-hero .hero-title {
    font-size: 1.55rem !important;
  }

  .section-title,
  .cta-title {
    font-size: 1.5rem !important;
  }

  .service-card h3,
  .industry-card h4,
  .benefit-card h4 {
    font-size: 1.1rem !important;
  }

  .geo-hero .hero-desc,
  .section-subtitle,
  .why-geo-desc,
  .why-us-desc,
  .service-card p,
  .industry-card p,
  .benefit-card p,
  .faq-content p,
  .geo-checklist li {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
}
