/* ============================================================
   CONTENT MARKETING SERVICES PAGE - DESIGN SYSTEM
   Conceptial Media - built on the same tokens/components as
   geo-services-in-india.css for brand consistency
   ============================================================ */

/* --- 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 {
  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;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.geo-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

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

.geo-hero .hero-desc {
  max-width: 850px;
  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;
  margin-bottom: 28px;
}

.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 Feature Pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 950px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--geo-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-pill i {
  color: var(--geo-primary);
  font-size: 0.65rem;
}

/* 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: 45px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--geo-primary);
  margin-bottom: 6px;
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  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 / SHARED
   ============================================================ */
.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;
}

/* ============================================================
   3. UNDERSTANDING CONTENT MARKETING
   ============================================================ */
.cm-understand-section {
  padding: 100px 24px;
  background: var(--geo-white);
}

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

.cm-understand-left .badge-red {
  margin-bottom: 14px;
}

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

.why-geo-desc strong {
  color: var(--geo-text);
}

.coverage-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 30px;
}

.coverage-intro {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--geo-text-secondary);
  margin: 10px 0 20px;
}

.coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--geo-bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--geo-text);
}

.coverage-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--geo-primary);
}

/* ============================================================
   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);
  position: relative;
}

.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);
}

/* Numbered content-marketing cards with "What's Included" list */
.cm-service-card .service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 24, 27, 0.08);
  color: var(--geo-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.included-label {
  display: block;
  color: var(--geo-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0 10px;
}

.included-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.included-list li {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--geo-text-secondary);
}

/* ============================================================
   5. GXS SECTOR SECTION (Who We Help)
   ============================================================ */
.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: 800;
  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);
}

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

.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);
}

.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;
  font-size: 1.3rem;
  transition: all 0.35s ease;
}

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

.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;
}

/* ============================================================
   6. CONTENT MARKETING PROCESS (dark cards)
   ============================================================ */
.cm-process-section {
  padding: 100px 24px;
  background: var(--geo-bg);
}

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

.cm-process-card {
  background: linear-gradient(135deg, #0a0b10 0%, #12131a 55%, #290203 100%);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.cm-process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.cm-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--geo-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.cm-process-card h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cm-process-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   7. WHY CHOOSE (reuses .service-card grid, tighter section)
   ============================================================ */
.cm-why-section {
  background: var(--geo-white);
}

.cm-why-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   8. WHAT YOU CAN EXPECT — TABLE
   ============================================================ */
.cm-expect-section {
  padding: 100px 24px;
  background: var(--geo-bg);
}

.cm-expect-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--geo-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--geo-border);
  box-shadow: var(--shadow-md);
}

.cm-expect-table {
  width: 100%;
  border-collapse: collapse;
}

.cm-expect-table thead th {
  background: var(--geo-dark);
  color: #fff;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cm-expect-table tbody td {
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--geo-text-secondary);
  border-bottom: 1px solid var(--geo-border);
}

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

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

.cm-timeline {
  font-weight: 700;
  color: var(--geo-primary);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .geo-hero .hero-title {
    font-size: 2.8rem;
  }
  .cm-understand-grid,
  .faq-grid {
    gap: 50px;
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .cm-why-grid,
  .gxs-sector-grid,
  .cm-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cm-understand-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .geo-hero {
    padding: 120px 20px 0;
    min-height: auto;
  }
  .geo-hero .hero-title {
    font-size: 2.4rem;
  }
  .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;
  }

  .cm-understand-section,
  .services-grid-section,
  .gxs-sector-section,
  .cm-process-section,
  .cm-expect-section,
  .faq-section {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  .geo-hero .hero-title {
    font-size: 2rem;
  }
  .geo-hero .hero-desc {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.9rem;
  }

  .services-grid,
  .cm-why-grid,
  .gxs-sector-grid,
  .cm-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card,
  .gxs-sector-card,
  .cm-process-card {
    padding: 26px 22px;
  }

  .cm-expect-table thead th,
  .cm-expect-table tbody td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

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

@media (max-width: 480px) {
  .geo-hero {
    padding: 100px 16px 0;
  }
  .geo-hero .hero-title {
    font-size: 1.7rem;
  }
  .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.2rem;
  }
  .stat-desc {
    font-size: 0.7rem;
  }
  .section-title {
    font-size: 1.6rem;
  }

  .cm-understand-section,
  .services-grid-section,
  .gxs-sector-section,
  .cm-process-section,
  .cm-expect-section,
  .faq-section {
    padding: 60px 16px;
  }

  .coverage-card,
  .faq-form-card {
    padding: 24px 20px;
  }
}
