/**
 * NASEM Cooling & Air Conditioning — Universal Landing Pages Master CSS
 * 100% Theme Aligned: Luxury Navy (#0A2540, #06192E) & Brand Cyan/Sky (#0284C7, #38BDF8)
 * STRICTLY ZERO ORANGE — Subtle Watermark Icons (Opacity 0.06 - 0.14)
 * Strict 1200px Content Container — Full Interlinked Topic Cluster
 * 100% Offline Runtime — Zero Emojis — Pure Vector SVGs
 */

/* ==========================================================================
   1. Universal Layout & Strict Page Boundaries (No Horizontal Stretch)
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

.landing-page-wrap,
.landing-page-wrapper {
  overflow-x: hidden;
  width: 100%;
  background-color: #FFFFFF;
}

/* Master Centered Content Boundary */
.container, 
.site-container, 
.landing-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 3.5vw, 2rem) !important;
  padding-right: clamp(1rem, 3.5vw, 2rem) !important;
  box-sizing: border-box !important;
}

.landing-page-wrap h1, 
.landing-hero h1, 
.landing-hero-title {
  font-family: 'Tajawal', sans-serif;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   2. Hero Section (Luxury Navy Theme — Zero Orange)
   ========================================================================== */
.landing-hero,
.landing-hero-section {
  background: linear-gradient(135deg, #06192E 0%, #0A2540 50%, #0D3356 100%);
  color: #FFFFFF;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4.25rem);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #0284C7;
  text-align: center;
}

.landing-hero::before,
.landing-hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(2, 132, 199, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(56, 189, 248, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.landing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

/* Eyebrows / Badges */
.landing-eyebrow,
.landing-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #7DD3FC;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.2);
}

.landing-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38BDF8;
  display: inline-block;
  box-shadow: 0 0 8px #38BDF8;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

/* Main H1 Headline */
.landing-hero h1,
.landing-hero-title {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.35;
  color: #FFFFFF;
  max-width: 920px;
  margin: 0 auto 1.25rem;
}

/* Subtitle Paragraph */
.landing-hero-desc,
.landing-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.85;
  color: #E2E8F0;
  max-width: 840px;
  margin: 0 auto 1.75rem;
}

/* Price Callout Banner / Pill (Pure Theme Blue/Cyan — No Orange) */
.hero-price-pill,
.landing-price-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border: 1px solid rgba(125, 211, 252, 0.45);
  color: #FFFFFF;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.landing-price-callout .price-text-label {
  font-size: 0.95rem;
  font-weight: 700;
}

.landing-price-callout .price-value-badge {
  background: rgba(255, 255, 255, 0.22);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: 900;
}

.landing-price-callout .price-scroll-link {
  color: #E0F2FE;
  font-size: 0.85rem;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hero Direct CTAs */
.landing-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-btn-call, 
.hero-btn-wa,
.btn-whatsapp,
.btn-call {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.hero-btn-call,
.btn-call {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.hero-btn-call:hover,
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.5);
  color: #FFFFFF;
}

.hero-btn-wa,
.btn-whatsapp {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.hero-btn-wa:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
  color: #FFFFFF;
}

/* Quick Proof & Trust Badges */
.hero-trust-grid,
.landing-hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .hero-trust-grid,
  .landing-hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-trust-grid,
  .landing-hero-trust-grid {
    grid-template-columns: 1fr;
  }
}

.hero-trust-item,
.trust-pill-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: right;
  transition: all 0.25s ease;
}

.hero-trust-item:hover,
.trust-pill-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.25rem;
}

.hero-trust-item p,
.trust-pill-item span {
  font-size: 0.82rem;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   3. Section Foundations & Header Typography
   ========================================================================== */
.landing-section,
.section-spacing {
  padding: clamp(3.5rem, 5.5vw, 5rem) 0;
  position: relative;
  width: 100%;
}

.landing-section.bg-light,
.bg-surface-soft {
  background: #F8FAFC;
}

.landing-section.bg-navy {
  background: #0A2540;
  color: #FFFFFF;
}

.sec-header,
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.sec-badge,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #E0F2FE;
  color: #0369A1;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.sec-badge.orange,
.sec-badge.cyan {
  background: #E0F2FE;
  color: #0369A1;
}

.sec-badge.badge-navy {
  background: rgba(2, 132, 199, 0.2);
  color: #38BDF8;
  border: 1px solid rgba(2, 132, 199, 0.35);
}

.sec-title,
.section-title {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 900;
  color: #0A2540;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.landing-section.bg-navy .sec-title,
.sec-title.text-white {
  color: #FFFFFF;
}

.sec-subtitle,
.section-desc {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #64748B;
  margin: 0 auto;
  max-width: 740px;
}

.landing-section.bg-navy .sec-subtitle,
.sec-subtitle.text-slate {
  color: #CBD5E1;
}

/* ==========================================================================
   4. Symmetrical & Balanced Responsive Grids
   ========================================================================== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }
}

.cards-grid-4,
.steps-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1080px) {
  .cards-grid-4,
  .steps-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid-4,
  .steps-grid-4 {
    grid-template-columns: 1fr;
  }
}

.cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

/* ==========================================================================
   5. Feature & Value Proposition Cards (With Watermark SVG Opacity 0.07)
   ========================================================================== */
.landing-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 2rem 1.65rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(10, 37, 64, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-sizing: border-box;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.landing-card:hover {
  transform: translateY(-4px);
  border-color: #0284C7;
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.12);
}

/* Subtle Watermark Icon Inside Cards */
.card-watermark {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 90px;
  height: 90px;
  opacity: 0.07;
  color: #0284C7;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-10deg);
  transition: all 0.3s ease;
}

.landing-card:hover .card-watermark,
.step-card:hover .card-watermark,
.coverage-card:hover .card-watermark {
  opacity: 0.14;
  transform: rotate(0deg) scale(1.08);
}

.card-icon-round {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.card-icon-round.orange {
  background: #F0F9FF;
  border-color: #BAE6FD;
  color: #0284C7;
}

.landing-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0A2540;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.landing-card p {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   6. Step Procedure Cards (Chic, High-End & Symmetrical)
   ========================================================================== */
.step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem 1.65rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 18px rgba(10, 37, 64, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-sizing: border-box;
  text-align: right;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284C7, #38BDF8);
  opacity: 0.85;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: #0284C7;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.14);
}

.step-number-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0A2540;
  margin: 0 0 0.65rem 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.75;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.step-checklist {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  border-top: 1px dashed #E2E8F0;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.step-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.5;
}

.step-checklist li svg {
  color: #0284C7;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   7. Tables (Pricing & Comparisons)
   ========================================================================== */
.custom-table-wrap,
.pricing-tbl-wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow-x: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.custom-data-table,
.nasem-pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  min-width: 640px;
}

.custom-data-table th,
.nasem-pricing-table th {
  background: #0A2540;
  color: #FFFFFF;
  padding: 1.15rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
}

.custom-data-table td,
.nasem-pricing-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.92rem;
  color: #334155;
}

.custom-data-table tr:last-child td,
.nasem-pricing-table tr:last-child td {
  border-bottom: none;
}

.custom-data-table tr:nth-child(even) td,
.nasem-pricing-table tr:nth-child(even) td {
  background: #F8FAFC;
}

.custom-data-table tr:hover td,
.nasem-pricing-table tr:hover td {
  background: #F0F9FF;
}

.price-pill-table {
  display: inline-block;
  background: #DCFCE7;
  color: #166534;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.88rem;
}

.price-pill-muller {
  display: inline-block;
  background: #E0F2FE;
  color: #0369A1;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.88rem;
}

.price-tag-cell {
  color: #0284C7;
  font-weight: 900;
  font-size: 1.05rem;
}

/* ==========================================================================
   8. Conversion Callout Banners (Luxury Navy & Cyan — Zero Orange)
   ========================================================================== */
.cta-callout-banner {
  background: linear-gradient(135deg, #0A2540 0%, #0C3860 60%, #0284C7 100%);
  color: #FFFFFF;
  border-radius: 18px;
  padding: clamp(2.75rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin: 3.5rem 0;
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.3);
  position: relative;
  overflow: hidden;
}

/* Watermark in Callout Banner */
.cta-callout-banner::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-callout-banner h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cta-callout-banner p {
  font-size: 1.05rem;
  color: #E2E8F0;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta-callout-banner .hero-btn-call,
.cta-callout-banner a[href^="tel:"] {
  background: #FFFFFF !important;
  color: #0A2540 !important;
  font-weight: 900 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
  position: relative;
  z-index: 1;
}

.cta-callout-banner .hero-btn-call:hover,
.cta-callout-banner a[href^="tel:"]:hover {
  background: #F0F9FF !important;
  color: #0284C7 !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   9. Riyadh Coverage Cards (Neighborhoods)
   ========================================================================== */
.coverage-card {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.coverage-card:hover {
  border-color: #0284C7;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.coverage-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A2540;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.65rem 0;
  position: relative;
  z-index: 1;
}

.coverage-card h4 svg {
  color: #0284C7;
  flex-shrink: 0;
}

.coverage-card p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   10. TOPIC CLUSTER CARDS (Interlinking Ecosystem for Google SEO)
   ========================================================================== */
.cluster-hub-section {
  border-top: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.cluster-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.cluster-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 900px) {
  .cluster-grid.cols-2,
  .cluster-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

.cluster-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 37, 64, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cluster-card:hover {
  transform: translateY(-4px);
  border-color: #0284C7;
  box-shadow: 0 14px 30px rgba(2, 132, 199, 0.12);
}

.cluster-card.is-current {
  background: #F0F9FF;
  border-color: #0284C7;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.10);
}

/* Watermark SVG inside Cluster Cards (Opacity 0.07 - 0.14) */
.cluster-watermark {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.07;
  color: #0284C7;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-10deg);
  transition: all 0.3s ease;
}

.cluster-card:hover .cluster-watermark {
  opacity: 0.14;
  transform: rotate(0deg) scale(1.1);
}

.cluster-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
}

.cluster-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cluster-card.is-current .cluster-icon-box {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
}

.cluster-badge {
  font-size: 0.8rem;
  font-weight: 800;
  background: #F1F5F9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.cluster-card.is-current .cluster-badge {
  background: #0284C7;
  color: #FFFFFF;
}

.cluster-card-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0A2540;
  margin: 0 0 0.65rem 0;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.cluster-link-title {
  color: #0A2540;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cluster-link-title:hover {
  color: #0284C7;
}

.cluster-current-tag {
  font-size: 0.8rem;
  color: #0284C7;
  font-weight: 700;
  margin-inline-start: 0.35rem;
}

.cluster-card-desc {
  font-size: 0.88rem;
  color: #64748B;
  line-height: 1.7;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.cluster-card-footer {
  margin-top: auto;
  border-top: 1px dashed #E2E8F0;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}

.cluster-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #0284C7;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cluster-action-btn:hover {
  color: #0369A1;
  transform: translateX(-4px);
}

.cluster-btn-active {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0284C7;
}

/* Cluster Assurance Bar */
.cluster-assurance-banner {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}

.cluster-assurance-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #334155;
}

.assurance-icon {
  color: #0284C7;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   11. FAQ Accordions
   ========================================================================== */
.faq-accordion-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-accordion-item:hover {
  border-color: #BAE6FD;
}

.faq-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0A2540;
}

.faq-accordion-content {
  display: none;
  padding: 0 1.5rem 1.35rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  border-top: 1px dashed #F1F5F9;
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.faq-accordion-item.active .faq-accordion-content {
  display: block;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.25s ease;
  color: #0284C7;
  flex-shrink: 0;
}

/* ==========================================================================
   12. Related Services Cards
   ========================================================================== */
.related-svc-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  height: 100%;
  box-sizing: border-box;
}

.related-svc-card:hover {
  transform: translateY(-3px);
  border-color: #0284C7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.related-svc-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0A2540;
  margin: 0 0 0.2rem;
}

.related-svc-card p {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   13. Mobile & Responsive Refinements
   ========================================================================== */
@media (max-width: 768px) {
  .landing-hero,
  .landing-hero-section {
    padding: 3rem 0 2.5rem;
  }
  .landing-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn-call, 
  .hero-btn-wa,
  .btn-whatsapp,
  .btn-call {
    width: 100%;
  }
  .hero-price-pill,
  .landing-price-callout {
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
  }
  .custom-data-table,
  .nasem-pricing-table {
    font-size: 0.82rem;
  }
  .custom-data-table th, .custom-data-table td,
  .nasem-pricing-table th, .nasem-pricing-table td {
    padding: 0.75rem 0.65rem;
  }
  .cluster-assurance-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
}
