/* ===================================================
   STRATEGIC DOMAINS – strategic-domains.css
   =================================================== */

.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}
.sd-hero { background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e); }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.page-hero-content h1 { font-size: 52px; font-weight: 800; margin: 12px 0 10px; font-family: 'DM Sans',sans-serif; }
.page-hero-content p { font-size: 18px; opacity: 0.85; }

.section-label { display: flex; align-items: center; margin-bottom: 14px; }
.section-label span { background: linear-gradient(135deg,#4284DB,#29EAC4); color:#fff; padding:6px 16px; border-radius:20px; font-size:13px; font-weight:600; }
.section-title { font-size:36px; font-weight:700; color:#1a1a1a; margin-bottom:20px; font-family:'DM Sans',sans-serif; }

/* INTRO */
.sd-intro { padding: 80px; background: #fff; }
.sd-intro-inner { max-width: 750px; margin: 0 auto; text-align: center; }
.sd-intro-text { font-size: 17px; color: #555; line-height: 1.85; }

/* DOMAINS */
.sd-domains { background: #FFF6F6; }

.domain-block { padding: 90px 80px; border-bottom: 1px solid #f0e8e8; }
.domain-alt { background: #fff; }

.domain-grid {
  display: flex;
  gap: 70px;
  align-items: center;
}
.domain-grid.reverse { flex-direction: row-reverse; }

.domain-image {
  flex: 1;
  position: relative;
}
.domain-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.domain-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(66,132,219,0.12);
  line-height: 1;
  pointer-events: none;
  font-family: 'DM Sans', sans-serif;
}

.domain-content { flex: 1; }

.domain-tag {
  display: inline-block;
  background: linear-gradient(135deg, #4284DB, #29EAC4);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.domain-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.3;
}

.domain-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.domain-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.df-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.df-item span {
  color: #4284DB;
  font-weight: 700;
  font-size: 16px;
}

/* CTA */
.sd-cta { padding: 90px 80px; text-align: center; }
.sd-cta-inner h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.sd-cta-inner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: #4284DB;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sd-intro { padding: 60px 40px; }
  .domain-block { padding: 70px 40px; }
  .domain-grid, .domain-grid.reverse { flex-direction: column; }
  .domain-image img { height: 300px; }
  .domain-number { font-size: 60px; top: -10px; left: -10px; }
  .sd-cta { padding: 70px 40px; }
}

@media (max-width: 768px) {
  .page-hero-content h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .sd-intro { padding: 50px 20px; }
  .domain-block { padding: 50px 20px; }
  .domain-content h2 { font-size: 24px; }
  .domain-features { grid-template-columns: 1fr; }
  .sd-cta { padding: 50px 20px; }
  .sd-cta-inner h2 { font-size: 26px; }
}
