/* SERVICES HERO - SAME PREMIUM FEEL AS CONTACT PAGE */
.services-hero {
  position: relative;
  padding: 96px 20px 88px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 209, 102, 0.18), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #7c3aed 100%);
  overflow: hidden;
  text-align: center;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.18;
  pointer-events: none;
}

.services-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.28), transparent 70%);
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-hero h1 {
  color: #ffffff !important;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 0 0 20px;
}

.services-hero h1 span {
  color: #ffd166;
}

.services-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

/* Reduce top gap because hero is now present */
.core-services {
  padding-top: 72px !important;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 76px 18px 66px;
  }

  .services-hero p {
    font-size: 16px;
  }
}
  /* RIGHT SIDE - PREMIUM SERVICE VISUAL BOARD */
.service-modal-visual {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-board {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.visual-board-head {
  margin-bottom: 22px;
}

.visual-board-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-board-head h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.visual-board-head p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.visual-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  min-height: 92px;
}

.visual-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  background: #e2e8f0;
}

.visual-text h4 {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: #0f172a;
}

/* pastel variants */
.visual-item.green {
  background: #f3fbf2;
}
.visual-item.green .visual-icon {
  background: #b7e3ae;
}

.visual-item.gold {
  background: #fff8e8;
}
.visual-item.gold .visual-icon {
  background: #f2d588;
}

.visual-item.peach {
  background: #fff2e8;
}
.visual-item.peach .visual-icon {
  background: #efb07b;
}

/* mobile */
@media (max-width: 900px) {
  .service-modal-visual {
    padding: 22px;
  }

  .service-visual-board {
    padding: 20px;
    border-radius: 20px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-board-head h3 {
    font-size: 22px;
  }

  .visual-item {
    min-height: auto;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
    .contact-info {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: #f8f9fa;
      padding: 20px;
    }
    .contact-box {
      display: flex;
      width: 80%;
      background: white;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 5px;
    }
    .form-container {
      width: 60%;
      padding: 20px;
    }
    .form-container h2 {
      text-align: center;
      margin-bottom: 20px;
    }
    .form-group {
      margin-bottom: 15px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .form-group textarea {
      height: 100px;
      resize: none;
    }
    .submit-btn {
      background-color: #8e3837;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      display: block;
      width: 100%;
      margin-top: 10px;
    }
    .submit-btn:hover {
      background-color: #8e3837;
    }
    .info-box {
      width: 40%;
      background-color: #8e3837;
      color: white;
      padding: 20px;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .info-box h3 {
      margin-bottom: 15px;
    }
/* 
    .cards-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      justify-content: center;
    } */

    .card {
      /* width: 260px; */
      background: #fff;
      border-radius: 16px;
      padding: 20px 20px 0px 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
    }

    .card h3 {
      color: #2196f3;
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 8px 0;
      line-height: 1.4;
    }

    .underline {
      width: 40px;
      height: 2px;
      background: #000000;
      margin-bottom: 12px;
    }

    .card p {
      font-size: 14px;
      /* color: #555; */
      margin-bottom: 16px;
    }

    .rate-button {
      background: #000000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    /* font-weight: bold; */
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

    .card a {
      font-size: 14px;
      color: #1a73e8;
      text-decoration: none;
      font-weight: 500;
      display: inline-block;
    }

    .card img {
      position: absolute;
      bottom: 0;
      right: 0;
      height: 100px;
    }

    /* Card Colors */
    .employee { background-color: #dabde2; color: white;}
    .project  { background-color: #d6a437; color: white;}
    .hiring   { background-color: #f15c22; color: white;}
    .annual   { background-color: #f15c22; color: white;}
    .services { background-color: #d7d8f6; color: white;}
    .culture  { background-color: #f5e5b1; color: white;}

/* FAMILY&FLATS PREMIUM EDITORIAL SERVICE MODAL */
.popup {
  display: none;
  position: fixed !important;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.20), transparent 34%),
    rgba(6, 10, 20, 0.86) !important;
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  z-index: 999999 !important;
  padding: 28px;
}

.popup-content {
  width: min(1080px, 94vw) !important;
  max-height: 90vh !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: 28px !important;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
}

.service-modal-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  min-height: 610px;
}

.service-modal-copy {
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 209, 102, 0.20), transparent 30%),
    linear-gradient(145deg, #07111f 0%, #0f172a 48%, #1e1b4b 100%);
  color: #ffffff;
  padding: 54px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffd166;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.service-modal-copy h2 {
  color: #ffffff !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 20px !important;
}

.service-modal-copy p {
  color: #cbd5e1 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin-bottom: 26px !important;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.service-points li::before {
  content: "✓";
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffd166;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

.service-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.service-modal-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 14px;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 14px;
}

.service-call {
  background: #ffd166;
  color: #0f172a !important;
}

.service-whatsapp {
  background: rgba(255,255,255,0.10);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18);
}

.service-modal-visual {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-visual-inner {
  width: 100%;
  background: #fffaf5;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.service-modal-visual img {
  width: 100% !important;
  max-height: 520px !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 16px !important;
}

.close {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.08) !important;
  color: #0f172a !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  font-weight: 700;
  cursor: pointer;
  z-index: 1000001 !important;
  border: 1px solid rgba(15, 23, 42, 0.10);
  transition: all 0.2s ease;
}

.close:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}

/* Mobile */
@media (max-width: 900px) {
  .popup {
    padding: 16px;
  }

  .popup-content {
    overflow-y: auto !important;
    border-radius: 22px !important;
  }

  .service-modal-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-modal-copy {
    padding: 38px 26px 30px;
  }

  .service-modal-copy h2 {
    font-size: 30px !important;
  }

  .service-modal-visual {
    padding: 22px;
  }

  .service-modal-visual-inner {
    padding: 14px;
    border-radius: 18px;
  }

  .service-modal-visual img {
    max-height: 420px !important;
  }

  .close {
    top: 14px !important;
    right: 14px !important;
    background: #ffffff !important;
  }
}
/* FAMILY&FLATS SERVICES PAGE - CONTACT PAGE DESIGN SYSTEM */

html,
body,
body *,
button,
input,
textarea,
select,
a {
  font-family: "Manrope", Arial, sans-serif !important;
}

body {
  background: #f8fafc !important;
  color: #0f172a !important;
}

/* Top strip */
.top-header {
  background: linear-gradient(90deg, #1d4ed8 0%, #4338ca 55%, #6d28d9 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}

.top-header a,
.top-header i {
  color: #ffffff !important;
}

/* Social icons */
.socail-media-account a,
.social-media-account a,
.link-in {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.socail-media-account a:hover,
.social-media-account a:hover,
.link-in:hover {
  background: #ffd166 !important;
  color: #0f172a !important;
}

/* Header Call Now */
.call-action {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #7c3aed 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

.call-action:hover {
  background: linear-gradient(135deg, #ffd166 0%, #f6c453 100%) !important;
  color: #0f172a !important;
}

/* Services main section */
.core-services {
  background: #f8fafc !important;
  padding: 90px 20px !important;
}

.section-title {
  color: #0f172a !important;
  font-size: 44px !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em;
  text-align: center;
  margin-bottom: 14px;
}

.section-desc {
  max-width: 760px;
  margin: 0 auto 48px !important;
  text-align: center;
  color: #64748b !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

/* Service cards */
.services-grid {
  gap: 28px !important;
}

.service-item {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06) !important;
  transition: all 0.25s ease !important;
  position: relative;
  overflow: hidden;
}

.service-item::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12), transparent 68%);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.12) !important;
  border-color: rgba(79, 70, 229, 0.25) !important;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-content h3 {
  color: #0f172a !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  margin-bottom: 12px !important;
}

.service-content p {
  color: #64748b !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
}

/* Icons */
.service-item .icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  font-size: 22px !important;
}

.service-item .icon.red,
.service-item .icon.green,
.service-item .icon.yellow,
.service-item .icon.blue,
.service-item .icon.lime,
.service-item .icon.pink {
  background: #e0e7ff !important;
  color: #2563eb !important;
}

/* Know More buttons */
.service-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 55%, #7c3aed 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 26px rgba(79, 70, 229, 0.24) !important;
  transition: all 0.25s ease !important;
}

.service-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffd166 0%, #f6c453 100%) !important;
  color: #0f172a !important;
  box-shadow: 0 14px 30px rgba(246, 196, 83, 0.32) !important;
}

/* Premium footer same as Contact page */
.site-footer {
  background: linear-gradient(135deg, #070b14 0%, #0f172a 45%, #111827 100%) !important;
  color: #e5e7eb !important;
}

.site-footer h4 {
  color: #ffffff !important;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #cbd5e1 !important;
}

.site-footer a:hover {
  color: #ffd166 !important;
}

.footer-socials a {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
}

.footer-socials a:hover {
  background: #ffd166 !important;
  color: #0f172a !important;
}

.footer-disclaimer,
.footer-bottom,
.footer-bottom-links {
  border-top: 1px solid rgba(255,255,255,0.10) !important;
}
/* PREMIUM SERVICES CARD FINAL UPGRADE */

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

.service-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 24px !important;
  min-height: 210px !important;
  padding: 34px !important;
  background:
    radial-gradient(circle at 95% 12%, rgba(124, 58, 237, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  border: 1px solid rgba(203, 213, 225, 0.9) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06) !important;
  transition: all 0.28s ease !important;
}

.service-item:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(79, 70, 229, 0.32) !important;
  box-shadow: 0 28px 70px rgba(79, 70, 229, 0.15) !important;
}

.service-item::after {
  opacity: 0.65;
}

.service-item .icon {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #e0e7ff 0%, #eef2ff 100%) !important;
  color: #4f46e5 !important;
  font-size: 24px !important;
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.12);
}

.service-item .icon i {
  color: #4f46e5 !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.service-content {
  flex: 1 !important;
}

.service-content h3 {
  font-size: 23px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}

.service-content p {
  font-size: 15.5px !important;
  line-height: 1.75 !important;
  color: #64748b !important;
  margin-bottom: 22px !important;
}

.service-btn {
  min-width: 128px !important;
  padding: 12px 20px !important;
  border-radius: 13px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-item {
    padding: 26px !important;
    gap: 18px !important;
    min-height: auto !important;
  }

  .service-item .icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
  }

  .service-content h3 {
    font-size: 21px !important;
  }
}

/* SERVICES HERO - CONTACT PAGE STYLE */
.services-hero-premium {
  position: relative !important;
  overflow: hidden !important;
  padding: 110px 20px 112px !important;
  min-height: 620px !important;
  display: flex !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,209,102,0.20), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(124,58,237,0.30), transparent 32%),
    linear-gradient(135deg,#111827 0%,#1e3a8a 48%,#4f46e5 100%) !important;
  color: #ffffff !important;
}

.services-hero-premium::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.07) 1px, transparent 1px) !important;
  background-size: 54px 54px !important;
  opacity: 0.18 !important;
  pointer-events: none !important;
}

.services-hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1180px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.05fr .95fr !important;
  gap: 56px !important;
  align-items: center !important;
}

.services-hero-left {
  text-align: left !important;
}

.services-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  padding: 9px 15px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.13) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  color: #e0e7ff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
}

.services-hero-premium h1 {
  max-width: 760px !important;
  color: #ffffff !important;
  font-size: clamp(46px, 6vw, 76px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: -0.065em !important;
  margin: 0 0 22px !important;
  text-align: left !important;
}

.services-hero-premium h1 span {
  color: #ffd166 !important;
}

.services-hero-premium p {
  max-width: 700px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 17px !important;
  line-height: 1.85 !important;
  margin: 0 0 32px !important;
  text-align: left !important;
}

.services-hero-actions {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.services-primary-btn,
.services-secondary-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-radius: 14px !important;
  padding: 15px 22px !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  min-height: 52px !important;
  text-decoration: none !important;
  transition: .28s ease !important;
}

.services-primary-btn {
  background: #ffd166 !important;
  color: #111827 !important;
  box-shadow: 0 18px 42px rgba(255,209,102,.28) !important;
}

.services-secondary-btn {
  background: rgba(255,255,255,.10) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  backdrop-filter: blur(12px) !important;
}

.services-primary-btn:hover,
.services-secondary-btn:hover {
  transform: translateY(-3px) !important;
}

.services-hero-card {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 34px !important;
  padding: 32px !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 34px 90px rgba(0,0,0,.26) !important;
}

.services-hero-card h3 {
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  margin: 0 0 22px !important;
}

.services-stat {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.14) !important;
}

.services-stat:last-child {
  border-bottom: none !important;
}

.services-stat span {
  color: rgba(255,255,255,.72) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.services-stat strong {
  color: #ffd166 !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  text-align: right !important;
  letter-spacing: -0.04em !important;
}

@media (max-width: 1050px) {
  .services-hero-wrap {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .services-hero-premium {
    min-height: auto !important;
    padding: 76px 16px 74px !important;
  }

  .services-hero-premium h1 {
    font-size: 42px !important;
  }

  .services-hero-actions {
    flex-direction: column !important;
  }

  .services-primary-btn,
  .services-secondary-btn {
    width: 100% !important;
  }
}

/* SERVICES PAGE DROPDOWN FORCE FIX */
body .navbar .custom-dropdown {
  position: relative !important;
  list-style: none !important;
}

body .navbar .custom-dropdown > a {
  cursor: pointer !important;
}

body .navbar .custom-dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 190px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  padding: 10px !important;
  margin: 0 !important;
  list-style: none !important;
  box-shadow: 0 18px 45px rgba(15,23,42,.14) !important;
  z-index: 999999 !important;
}

body .navbar .custom-dropdown:hover .custom-dropdown-menu,
body .navbar .custom-dropdown.open .custom-dropdown-menu {
  display: block !important;
}

body .navbar .custom-dropdown-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body .navbar .custom-dropdown-menu a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  background: #ffffff !important;
  white-space: nowrap !important;
}

body .navbar .custom-dropdown-menu a:hover {
  background: #f1f7fb !important;
  color: #2563eb !important;
}
