:root {
  /* Color Palette - Premium Real Estate Theme */
  --kashaf-brand-deep: #130a24;       /* Slate Violet (Deepest background) */
  --kashaf-brand-strong: #8566B1;     /* Brand Soft Purple */
  --kashaf-brand: #7252a1;            /* Brand Soft Purple Hover */
  --kashaf-brand-light: #a38bc4;      /* Brand Soft Purple Tint */
  --kashaf-ink: #1f1a28;              /* Dark text */
  --kashaf-muted: #645f70;            /* Muted gray-purple text */
  --kashaf-paper: #ffffff;            /* White */
  --kashaf-soft: #fcfaff;             /* Ultra light lavender background */
  --kashaf-soft2: #f4edf9;            /* Light violet/gray */
  --kashaf-line: rgba(133, 102, 177, 0.08); /* Delicate Brand Soft Purple borders */
  --kashaf-green: #10b981;            /* Emerald green for WhatsApp and online badges */
  --kashaf-gold: #b45309;             /* Premium Amber Gold */
  --kashaf-gold-bg: #fffbeb;          /* Warm soft gold background */
  
  /* Shadow Systems */
  --kashaf-shadow-sm: 0 4px 12px rgba(19, 10, 36, 0.03);
  --kashaf-shadow-md: 0 12px 30px rgba(19, 10, 36, 0.06);
  --kashaf-shadow-lg: 0 20px 40px rgba(19, 10, 36, 0.09);
  --kashaf-shadow-glow: 0 15px 30px rgba(109, 40, 217, 0.15);
  
  /* Layout */
  --kashaf-max: 1200px;
  --kashaf-radius-lg: 24px;
  --kashaf-radius-md: 16px;
  --kashaf-radius-sm: 12px;
}

/* Scoped inside .kashaf-services-hub-site main container */
.kashaf-services-hub-site {
  scroll-behavior: smooth;
  font-family: "Tajawal", system-ui, -apple-system, sans-serif;
  color: var(--kashaf-ink);
  background: #fbf9ff;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.kashaf-services-hub-site a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.kashaf-services-hub-site .wrap {
  width: min(var(--kashaf-max), calc(100% - 40px));
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════
   Full-width Hero Section (Premium Landing)
   ═══════════════════════════════════════════════════════════ */
.hero-section {
  padding: 120px 0;
  background-image: 
    linear-gradient(to right, rgba(133, 102, 177, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(133, 102, 177, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(133, 102, 177, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(217, 119, 6, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #130a24 0%, #23123c 100%);
  background-size: 60px 60px, 60px 60px, auto, auto, auto;
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, center, center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Glows */
.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133, 102, 177, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: kashafOrbFloat1 18s ease-in-out infinite alternate;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: kashafOrbFloat2 24s ease-in-out infinite alternate;
}

@keyframes kashafOrbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes kashafOrbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Two-column layout on desktop */
.hero-grid-hub {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  text-align: right;
}

.hero-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(133, 102, 177, 0.2);
  color: var(--kashaf-brand-light);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(133, 102, 177, 0.25);
}

.hero-section h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.1;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-section h1 span {
  color: var(--kashaf-brand-light);
  position: relative;
  display: inline-block;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  font-weight: 500;
  max-width: 100%;
  margin: 0 0 36px 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: var(--kashaf-radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-section .btn-primary {
  background: var(--kashaf-brand-strong);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(133, 102, 177, 0.3);
}

.hero-section .btn-primary:hover {
  background: #ffffff;
  color: var(--kashaf-brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.2);
}

.hero-section .btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Hub Hero Visual Mockups */
.hub-hero-visual {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hub-visual-card {
  border-radius: var(--kashaf-radius-md);
  padding: 20px;
  backdrop-filter: blur(12px);
  position: absolute;
  transition: all 0.3s ease;
  text-align: right;
  direction: rtl;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.hub-visual-card.card-main {
  width: 250px;
  z-index: 5;
  background: linear-gradient(135deg, rgba(133, 102, 177, 0.22) 0%, rgba(19, 10, 36, 0.85) 100%);
  border: 1px solid rgba(133, 102, 177, 0.35);
  transform: rotate(-3deg) translate(20px, -20px);
  animation: hubFloatMain 6s ease-in-out infinite alternate;
}

.hub-visual-card.card-sub {
  width: 210px;
  z-index: 3;
  background: linear-gradient(135deg, rgba(217, 160, 91, 0.15) 0%, rgba(19, 10, 36, 0.9) 100%);
  border: 1px solid rgba(217, 160, 91, 0.25);
  transform: rotate(5deg) translate(-80px, 30px);
  animation: hubFloatSub 8s ease-in-out infinite alternate;
}

.hub-visual-card.card-float {
  width: 170px;
  z-index: 6;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-8deg) translate(80px, 70px);
  animation: hubFloatFloat 5s ease-in-out infinite alternate;
}

/* Visual Card Inner Components */
.hub-visual-card h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hub-visual-card h4 span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
}

.hub-visual-card .metric-row {
  margin-bottom: 8px;
}

.hub-visual-card .metric-row:last-child {
  margin-bottom: 0;
}

.hub-visual-card .metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.hub-visual-card .metric-val {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.hub-visual-card .metric-val.gold {
  color: #fbbf24;
}

.hub-visual-card .feed-item {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hub-visual-card .feed-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

@keyframes hubFloatMain {
  0% { transform: rotate(-3deg) translate(20px, -20px); }
  100% { transform: rotate(-1deg) translate(20px, -35px); }
}

@keyframes hubFloatSub {
  0% { transform: rotate(5deg) translate(-80px, 30px); }
  100% { transform: rotate(3deg) translate(-80px, 15px); }
}

@keyframes hubFloatFloat {
  0% { transform: rotate(-8deg) translate(80px, 70px); }
  100% { transform: rotate(-5deg) translate(80px, 55px); }
}

/* ═══════════════════════════════════════════════════════════
   Services Gateway Grid Section
   ═══════════════════════════════════════════════════════════ */
.services-hub-section {
  padding: 80px 0;
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.services-hub-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.services-hub-section .section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--kashaf-brand-deep);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 16px;
}

/* Accent underline so the section title reads as a heading, not free text. */
.services-hub-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8526ff, #d9a05b);
}

.services-hub-section .section-header p {
  font-size: 16px;
  color: var(--kashaf-muted);
}

/* Grid Layout */
.services-gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  counter-reset: gate-counter;
}

/* Specific Accent Colors for Gateway Cards */
.gateway-card:has(.card-icon.gold) {
  --card-glow-color: rgba(217, 119, 6, 0.08);
  --card-border-hover: rgba(217, 119, 6, 0.3);
  --card-icon-glow: 0 8px 24px rgba(217, 119, 6, 0.15);
  --card-btn-bg: rgba(217, 119, 6, 0.05);
  --card-btn-text: #b45309;
  --card-btn-hover-bg: #b45309;
  --card-badge-glow: rgba(217, 119, 6, 0.2);
}
.gateway-card:has(.card-icon.purple) {
  --card-glow-color: rgba(133, 102, 177, 0.1);
  --card-border-hover: rgba(133, 102, 177, 0.35);
  --card-icon-glow: 0 8px 24px rgba(133, 102, 177, 0.18);
  --card-btn-bg: rgba(133, 102, 177, 0.05);
  --card-btn-text: var(--kashaf-brand-strong);
  --card-btn-hover-bg: var(--kashaf-brand-strong);
  --card-badge-glow: rgba(133, 102, 177, 0.25);
}
.gateway-card:has(.card-icon.blue) {
  --card-glow-color: rgba(37, 99, 235, 0.08);
  --card-border-hover: rgba(37, 99, 235, 0.3);
  --card-icon-glow: 0 8px 24px rgba(37, 99, 235, 0.15);
  --card-btn-bg: rgba(37, 99, 235, 0.05);
  --card-btn-text: #2563eb;
  --card-btn-hover-bg: #2563eb;
  --card-badge-glow: rgba(37, 99, 235, 0.2);
}
.gateway-card:has(.card-icon.dark-purple) {
  --card-glow-color: rgba(114, 82, 161, 0.08);
  --card-border-hover: rgba(114, 82, 161, 0.3);
  --card-icon-glow: 0 8px 24px rgba(114, 82, 161, 0.15);
  --card-btn-bg: rgba(114, 82, 161, 0.05);
  --card-btn-text: var(--kashaf-brand);
  --card-btn-hover-bg: var(--kashaf-brand);
  --card-badge-glow: rgba(114, 82, 161, 0.2);
}

/* Gateway Cards styling */
.gateway-card {
  counter-increment: gate-counter;
  background-color: var(--kashaf-paper);
  --grid-opacity: 0.02;
  background-image: 
    radial-gradient(circle at 100% 0%, var(--card-glow-color, rgba(133, 102, 177, 0.03)) 0%, transparent 70%),
    linear-gradient(to right, rgba(133, 102, 177, var(--grid-opacity)) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(133, 102, 177, var(--grid-opacity)) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  background-position: center, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  border: 1px solid rgba(133, 102, 177, 0.06);
  border-radius: var(--kashaf-radius-lg);
  padding: 38px 32px;
  box-shadow: 
    0 4px 15px rgba(19, 10, 36, 0.01),
    0 12px 30px -10px rgba(133, 102, 177, 0.02);
  display: flex;
  flex-direction: column;
  transition: 
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-position 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

/* Glowing Top Border Accent Line on Hover */
.gateway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to left, var(--card-border-hover, var(--kashaf-brand-strong)), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

/* Soft Ambient Background Mesh Glow on Hover */
.gateway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--card-glow-color, rgba(133, 102, 177, 0.05)) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.gateway-card:hover {
  --grid-opacity: 0.035;
  transform: translateY(-8px);
  border-color: var(--card-border-hover, rgba(133, 102, 177, 0.25));
  box-shadow: 
    0 24px 50px -12px var(--card-glow-color, rgba(19, 10, 36, 0.07)),
    0 0 0 1px var(--card-border-hover) inset;
  background-position: center, 10px 10px, 10px 10px;
}

.gateway-card:hover::before,
.gateway-card:hover::after {
  opacity: 1;
}

/* Ensure card contents sit above background glow */
.gateway-card .card-icon,
.gateway-card .card-content,
.gateway-card .gateway-cta-row,
.gateway-card .gateway-cta,
.gateway-card .gateway-cta-secondary {
  position: relative;
  z-index: 2;
}

/* Card Icons */
.gateway-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(133, 102, 177, 0.08);
  box-shadow: 0 4px 10px rgba(19, 10, 36, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-card:hover .card-icon {
  transform: scale(1.08) translateY(-3px) rotate(-3deg);
  box-shadow: var(--card-icon-glow, 0 8px 20px rgba(0, 0, 0, 0.08));
  border-color: var(--card-border-hover);
}

.gateway-card .card-icon svg {
  width: 26px;
  height: 26px;
}

.gateway-card .card-icon.gold {
  background: var(--kashaf-gold-bg);
  color: var(--kashaf-gold);
}

.gateway-card .card-icon.purple {
  background: var(--kashaf-soft2);
  color: var(--kashaf-brand-strong);
}

.gateway-card .card-icon.blue {
  background: #eff6ff;
  color: #2563eb;
}

.gateway-card .card-icon.dark-purple {
  background: rgba(133, 102, 177, 0.08);
  color: var(--kashaf-brand);
}

/* Card Contents */
.gateway-card .card-content {
  position: relative;
}

.gateway-card .card-content::before {
  content: "0" counter(gate-counter);
  position: absolute;
  top: -24px;
  left: -12px;
  font-size: 72px;
  font-weight: 900;
  color: var(--kashaf-brand-deep);
  opacity: 0.02;
  font-family: "Outfit", "Inter", sans-serif;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-card:hover .card-content::before {
  opacity: 0.045;
  transform: translateY(-4px) scale(1.05);
}

.gateway-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--kashaf-brand-deep);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.gateway-card p {
  font-size: 14.5px;
  color: var(--kashaf-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* CTA row: holds primary + optional secondary CTA side by side */
.gateway-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Styled Pill Action CTA */
.gateway-card .gateway-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--card-btn-text, var(--kashaf-brand-strong));
  background: var(--card-btn-bg, rgba(133, 102, 177, 0.05));
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(133, 102, 177, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(19, 10, 36, 0.01);
}

.gateway-card:hover .gateway-cta {
  transform: translateX(-4px);
  background: var(--card-btn-hover-bg, var(--kashaf-brand-strong));
  color: #ffffff !important;
  border-color: transparent;
  box-shadow: 0 6px 14px var(--card-badge-glow, rgba(133, 102, 177, 0.15));
}

/* Secondary CTA: subtle outline/text link so primary stays dominant */
.gateway-card .gateway-cta-secondary {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--kashaf-muted);
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid rgba(133, 102, 177, 0.12);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.gateway-card:hover .gateway-cta-secondary {
  color: var(--kashaf-brand-strong);
  border-color: rgba(133, 102, 177, 0.3);
  background: rgba(133, 102, 177, 0.05);
}

/* Highlighted (Heirs) Card Styles (Legacy Fallbacks) */
.gateway-card.highlighted {
  background: linear-gradient(135deg, #1b0f30 0%, #0d0618 100%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 15px 35px rgba(19, 10, 36, 0.2);
}

.gateway-card.highlighted:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 20px 45px rgba(19, 10, 36, 0.35);
}

.gateway-card.highlighted h3 {
  color: #ffffff;
}

.gateway-card.highlighted p {
  color: rgba(255, 255, 255, 0.75);
}

.gateway-card.highlighted .gateway-cta {
  color: #fffbeb;
}

.gateway-card.highlighted:hover .gateway-cta {
  color: #ffffff;
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  padding: 6px 14px;
  background: rgba(217, 119, 6, 0.15);
  color: #f59e0b;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

/* Secondary Grid for 3 cards */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Mini Guide inside hub */
.hub-mini-guide {
  background: #ffffff;
  border: 1px solid var(--kashaf-line);
  border-radius: var(--kashaf-radius-md);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--kashaf-shadow-sm);
  margin-top: 24px;
}

.hub-mini-guide p {
  margin: 0;
  font-size: 15px;
  color: var(--kashaf-ink);
  font-weight: 500;
}

.hub-mini-guide .btn-guide {
  font-weight: 700;
  color: var(--kashaf-brand-strong);
  font-size: 14.5px;
  white-space: nowrap;
  text-decoration: none;
}

.hub-mini-guide .btn-guide:hover {
  color: var(--kashaf-brand-deep);
}


/* ═══════════════════════════════════════════════════════════
   Media Queries for Responsiveness
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid-hub {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content-wrap {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hub-hero-visual {
    height: 320px;
    margin-top: 20px;
  }
  .services-gateway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 70px 0 90px;
  }
  
  .services-hub-section {
    padding: 40px 0;
    margin-top: -20px;
  }
  
  .services-hub-section .section-header {
    margin-bottom: 32px;
  }
  
  .gateway-card {
    padding: 24px;
  }
  
  .gateway-card h3 {
    font-size: 19px;
  }
  
  .services-gateway-grid {
    grid-template-columns: 1fr;
  }
  
  .hub-mini-guide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .hub-mini-guide .btn-guide {
    width: 100%;
    text-align: center;
    background: var(--kashaf-soft2);
    padding: 10px;
    border-radius: 10px;
    margin-top: 8px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .hero-section .btn {
    width: 100%;
    max-width: 320px;
  }

  /* The decorative metric cards are absolutely positioned and overlap on a narrow
     single-column hero; they are pure decoration, so hide them on phones. */
  .hub-hero-visual {
    display: none;
  }

  /* Comfortable touch targets on mobile (>= 44px tall). */
  .gateway-card .gateway-cta,
  .gateway-card .gateway-cta-secondary {
    min-height: 44px;
    padding: 12px 20px;
  }

}

/* ═══════════════════════════════════════════════════════════
   Homepage Skyline CTA Band (fills the space below services)
   ═══════════════════════════════════════════════════════════ */
.kashaf-services-hub-site .kashaf-home-band {
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: #ffffff;
  background-image:
    linear-gradient(rgba(19, 10, 36, 0.88), rgba(19, 10, 36, 0.78)),
    url('../images/home-skyline-band.webp');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(133, 102, 177, 0.2);
}

.kashaf-services-hub-site .kashaf-home-band-inner {
  max-width: 760px;
}

.kashaf-services-hub-site .band-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(133, 102, 177, 0.32);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
}

.kashaf-services-hub-site .kashaf-home-band h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.kashaf-services-hub-site .kashaf-home-band p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.kashaf-services-hub-site .band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.kashaf-services-hub-site .kashaf-home-band .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  border-radius: var(--kashaf-radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.kashaf-services-hub-site .kashaf-home-band .btn-primary {
  background: var(--kashaf-brand-strong);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(133, 102, 177, 0.3);
}

.kashaf-services-hub-site .kashaf-home-band .btn-primary:hover {
  background: #ffffff;
  color: var(--kashaf-brand-deep);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .kashaf-services-hub-site .kashaf-home-band {
    padding: 72px 0;
  }
}
