/*
Theme Name: Client Theme
Author: Ismail
Version: 1.0
*/

*{ box-sizing:border-box; margin:0; padding:0; }
body{ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; background:#0b0d12; }
.container{ width:92%; max-width:1280px; margin:0 auto; }

/* HEADER */
.main-header{
  background:#06233f;
  height:80px;
  display:flex;
  align-items:center;
}

.header-container{
  width:92%;
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header-logo img{ height:36px; width:auto; display:block; }

.header-nav{ display:flex; }

.nav-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:32px;
}

.nav-list > li > a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  position:relative;
  padding:4px 0;
}

.nav-list > li > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#4da3ff;
  transition:width .25s ease;
}
.nav-list > li > a:hover::after{ width:100%; }

/* MOBILE */
.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

@media (max-width: 960px){
  .header-nav{
    display:none;
    position:absolute;
    top:80px;
    left:0;
    right:0;
    background:#06233f;
  }
  .header-nav.open{ display:block; }

  .nav-list{
    flex-direction:column;
    align-items:flex-start;
    gap:0;
  }
  .nav-list li a{
    width:100%;
    padding:16px 24px;
    display:block;
  }

  .nav-toggle{ display:block; }
}









/* =========================
   FOOTER (Premium Gradient)
========================= */

.premium-footer{
  position: relative;
  overflow: hidden;
  padding: 70px 0 20px;
  color: rgba(255,255,255,.92);
  background:
    radial-gradient(900px 500px at 70% 20%, rgba(170, 0, 255, .35), transparent 60%),
    radial-gradient(900px 520px at 40% 100%, rgba(90, 0, 150, .45), transparent 60%),
    #07070b;
}

.pf-wrap{
  width: min(1280px, 92%);
  margin: 0 auto;
}

.pf-top{
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.pf-brand{
  display:flex;
  flex-direction: column;
  gap: 20px;
}

.pf-logo img{
  height: 48px;
  width: auto;
  display: block;
}

.pf-subbrand{
  display:flex;
  flex-direction: column;
  gap: 4px;
  opacity: .9;
}

.pf-subbrand-top{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

.pf-subbrand-bottom{
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
}

/* columns (2 only) */
.pf-cols{
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 110px;
  justify-content: end;
}

.pf-title{
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
  color: rgba(255,255,255,.96);
}

.pf-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-links a{
  color: rgba(255,255,255,.78);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.pf-links a:hover{
  color: rgba(255,255,255,.98);
  transform: translateX(2px);
}

/* divider */
.pf-divider{
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.18);
}

/* bottom row */
.pf-bottom{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.pf-terms{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s ease;
}

.pf-terms:hover{ color: rgba(255,255,255,.98); }

.pf-dot{
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #b100ff;
  box-shadow: 0 0 18px rgba(177,0,255,.6);
}

/* responsive */
@media (max-width: 980px){
  .pf-top{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pf-cols{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .pf-divider{ margin-top: 40px; }
  .pf-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}




/* =========================
   SECTION 1: HERO (FIXED)
========================= */
.hero{
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url('/wp-content/themes/client-theme/images/hero2.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* ✅ Overlay works even if you use ::before OR <div class="hero-overlay"> */
.hero::before,
.hero .hero-overlay{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(6, 28, 58, 0.70) 0%,
    rgba(6, 28, 58, 0.60) 20%,
    rgba(6, 28, 58, 0.45) 40%,
    rgba(6, 28, 58, 0.25) 55%,
    rgba(6, 28, 58, 0.00) 70%,
    rgba(6, 28, 58, 0.00) 100%
  );
}

.hero-inner{
  position: relative;
  z-index: 2;
}

.hero-content{
  max-width: 620px;
  color: #fff;
}

/* Typography */
.hero-eyebrow{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f5c16c;
}

.hero-title{
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
}

.hero-text{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  margin: 0 0 32px;
}

/* Buttons */
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  will-change: transform;
}

/* PRIMARY (Request Services) */
.hero-btn.primary{
  background: #f5c16c;
  color: #0b2f55;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.hero-btn.primary:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(245,193,108,0.22), 0 12px 26px rgba(0,0,0,0.30);
  filter: brightness(1.05);
}

/* SECONDARY (Learn More) */
.hero-btn.secondary{
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.hero-btn.secondary:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(245,193,108,0.85);
  box-shadow: 0 14px 28px rgba(0,0,0,0.30);
  background: rgba(255,255,255,0.10);
}

/* keyboard focus */
.hero-btn:focus-visible{
  outline: 3px solid rgba(245,193,108,0.85);
  outline-offset: 3px;
}

/* Mobile */
@media (max-width: 768px){
  .hero{
    min-height: 75vh;
    background-position: center;
  }

  .hero-content{
    max-width: 100%;
  }

  .hero::before,
  .hero .hero-overlay{
    background: linear-gradient(
      90deg,
      rgba(6, 28, 58, 0.78) 0%,
      rgba(6, 28, 58, 0.60) 55%,
      rgba(6, 28, 58, 0.00) 90%,
      rgba(6, 28, 58, 0.00) 100%
    );
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-btn{
    transition: none;
  }
  .hero-btn.primary:hover,
  .hero-btn.secondary:hover{
    transform: none;
  }
}


/* =========================
   SECTION 2: VALUES + QAM + PROGRAMS (IMAGES)
========================= */

.sec2{
  padding: 90px 0;
  background: #071f3b;
  color: #fff;
}

.sec2-kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #f5c16c;
  margin-bottom: 14px;
}

.sec2-title{
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.sec2-sub{
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.8;
}

.sec2-row{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 46px;
}

.sec2-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sec2-list li{
  padding-left: 18px;
  position: relative;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.sec2-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c16c;
  font-weight: 900;
}

/* Image wrapper */
.sec2-media{
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px;
}

/* ✅ Real images (image1.jpg, image2.jpg, image3.jpg) */
.sec2-img{
  width: 100%;
  height: 420px;              /* matches old placeholder height */
  border-radius: 14px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* QAM image */
.sec2-img.small{
  height: 160px;
}

/* Programs image inside the media-card */
.media-card{
  grid-column: 1 / -1;
  padding: 14px;
}

.media-card .sec2-img.programs{
  object-position: center 70%;
}

/* QAM */
.qam{
  margin: 34px 0 70px;
}

.qam-inner{
  display: grid;
  grid-template-columns: auto 1fr 280px;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.qam-badge{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #071f3b;
  background: #f5c16c;
  box-shadow: 0 18px 40px rgba(245,193,108,0.20);
}

.qam-text h3{
  margin: 2px 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.qam-text p{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
}

/* Programs */
.programs-head{
  margin-bottom: 22px;
}

.programs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 22px;
}

.card h3{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.card ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.card.wide{
  grid-column: 1 / -1;
}

.card .two-col{
  columns: 2;
  column-gap: 30px;
}

.card .note{
  margin: 14px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 980px){
  .sec2-row{
    grid-template-columns: 1fr;
  }
  .qam-inner{
    grid-template-columns: auto 1fr;
  }
  .qam-media{
    grid-column: 1 / -1;
  }
  .programs-grid{
    grid-template-columns: 1fr;
  }
  .card .two-col{
    columns: 1;
  }

  .sec2-img{ height: 320px; }
  .sec2-img.small{ height: 160px; }
  .media-card .sec2-img.programs{ height: 260px; }
}






/* =========================
   ABOUT US SECTION (HERO)
========================= */

.about-hero{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  /* ✅ Background image placeholder (replace later) */
  background-image: url('/wp-content/themes/client-theme/images/about-hero1.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Left overlay for readability (fade to clear on right) */
.about-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(6, 28, 58, 0.86) 0%,
    rgba(6, 28, 58, 0.70) 28%,
    rgba(6, 28, 58, 0.42) 50%,
    rgba(6, 28, 58, 0.12) 66%,
    rgba(6, 28, 58, 0.00) 78%,
    rgba(6, 28, 58, 0.00) 100%
  );
}

.about-hero__inner{
  position: relative;
  z-index: 2;
  padding: 70px 0;
  max-width: 920px;
}

.about-hero__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.about-hero__title{
  margin: 0 0 16px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
}

.about-hero__lead{
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  max-width: 760px;
}

.about-hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.about-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.about-hero__btn.primary{
  background: #f5c16c;
  color: #0b2f55;
  box-shadow: 0 16px 40px rgba(245,193,108,0.22);
}

.about-hero__btn.secondary{
  border: 2px solid rgba(255,255,255,0.60);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.about-hero__btn:hover{ transform: translateY(-2px); }
.about-hero__btn.primary:hover{ box-shadow: 0 22px 60px rgba(245,193,108,0.30); }
.about-hero__btn.secondary:hover{
  border-color: rgba(245,193,108,0.85);
  background: rgba(245,193,108,0.12);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}

/* Chips */
.about-hero__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Mobile */
@media (max-width: 768px){
  .about-hero{
    min-height: 72vh;
    background-position: center;
  }

  .about-hero__inner{ padding: 58px 0; }

  .about-hero::before{
    background: linear-gradient(
      90deg,
      rgba(6, 28, 58, 0.90) 0%,
      rgba(6, 28, 58, 0.62) 65%,
      rgba(6, 28, 58, 0.00) 100%
    );
  }
}





/* =========================
ABOUT US · SECTION 2 — MISSION
========================= */

.about-mission{
  position: relative;
  padding: 110px 0;
  background:
  radial-gradient(900px 420px at 15% 0%, rgba(245,193,108,0.14), transparent 55%),
  radial-gradient(800px 500px at 90% 100%, rgba(77,163,255,0.14), transparent 60%),
  #174a7a; /* darker blue for contrast */
  color: #fff;
}

.about-mission__inner{
  max-width: 960px;
}

/* Header */
.about-mission__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.about-mission__title{
  margin: 0 0 36px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

/* Content */
.about-mission__content{
  display: grid;
  gap: 22px;
}

.about-mission__content p{
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  max-width: 820px;
}

/* Subtle left accent line (premium touch) */
.about-mission__content{
  padding-left: 26px;
  border-left: 3px solid rgba(245,193,108,0.55);
}

/* Mobile */
@media (max-width: 768px){
  .about-mission{
    padding: 80px 0;
  }

  .about-mission__title{
    margin-bottom: 28px;
  }

  .about-mission__content{
    padding-left: 18px;
  }
}






/* =========================
ABOUT US · SECTION 3 — VISION
========================= */

.about-vision{
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(77,163,255,0.14), transparent 55%),
    radial-gradient(700px 420px at 0% 100%, rgba(245,193,108,0.12), transparent 60%),
    #0b2340; /* slightly darker than Mission */
  color: #fff;
}

.about-vision__inner{
  max-width: 1100px;
}

/* Intro */
.about-vision__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.about-vision__title{
  margin: 0 0 26px;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
  max-width: 900px;
}

.about-vision__lead{
  margin: 0 0 54px;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

/* Values grid */
.vision-values{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Individual value cards */
.vision-card{
  position: relative;
  padding: 22px 22px 22px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

/* Gold accent line */
.vision-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 99px;
  background: #f5c16c;
}

/* Hover = subtle lift */
.vision-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Mobile */
@media (max-width: 768px){
  .about-vision{
    padding: 80px 0;
  }

  .about-vision__lead{
    margin-bottom: 36px;
  }
}





/* =========================
SERVICES · SECTION 1 (PREMIUM)
========================= */

.services-hero{
  position: relative;
  padding: 110px 0;
  color: #fff;

  /* Premium deep-blue base (consistent) */
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(245,193,108,0.12), transparent 55%),
    radial-gradient(900px 520px at 85% 100%, rgba(77,163,255,0.14), transparent 60%),
    #071f3b;
}

.services-hero__inner{
  max-width: 1200px;
}

.services-hero__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.services-hero__title{
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.3px;
  max-width: 980px;
}

.services-hero__lead{
  margin: 0 0 40px;
  max-width: 860px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

.services-hero__grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: start;
}

/* Main card */
.services-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 26px;
}

.services-card__title{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.services-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.services-list li{
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
}

.services-list li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c16c;
  font-weight: 900;
}

.services-list .muted{
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 13px;
}

/* Right column */
.services-side{
  display: grid;
  gap: 14px;
}

/* Compliance block */
.services-compliance{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.services-badge{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #071f3b;
  background: #f5c16c;
  box-shadow: 0 18px 40px rgba(245,193,108,0.20);
}

.services-compliance__title{
  margin: 2px 0 8px;
  font-size: 15px;
  font-weight: 900;
}

.services-compliance__text{
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
  font-size: 14px;
}

/* Image placeholder (replace later with background image or <img>) */
.services-media{
  height: 340px;
  border-radius: 18px;
  background-image: url('/wp-content/themes/client-theme/images/services-hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-media::after{
  content: "IMAGE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 900;
  color: rgba(255,255,255,0.28);
}

/* Responsive */
@media (max-width: 980px){
  .services-hero{
    padding: 80px 0;
  }
  .services-hero__grid{
    grid-template-columns: 1fr;
  }
  .services-media{
    height: 280px;
  }
}


/* =========================
SERVICES · SECTION 2 — INTAKE & ASSESSMENT
========================= */

.services-intake{
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(245,193,108,0.14), transparent 55%),
    radial-gradient(800px 500px at 85% 100%, rgba(77,163,255,0.14), transparent 60%),
    #123a63; /* lighter blue for contrast */
  color: #fff;
}

.services-intake__inner{
  max-width: 1150px;
}

/* Header */
.services-intake__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.services-intake__title{
  margin: 0 0 42px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
  max-width: 820px;
}

/* Layout */
.services-intake__grid{
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
  align-items: start;
}

/* Left content */
.services-intake__content{
  display: grid;
  gap: 20px;
}

.services-intake__content p{
  margin: 0;
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

.services-intake__content a{
  color: #f5c16c;
  font-weight: 800;
  text-decoration: none;
}

.services-intake__content a:hover{
  text-decoration: underline;
}

/* Right cards */
.services-intake__side{
  display: grid;
  gap: 16px;
}

.intake-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  padding: 22px;
}

.intake-card h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.intake-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

/* Softer card */
.intake-card.subtle{
  background: rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 980px){
  .services-intake{
    padding: 80px 0;
  }

  .services-intake__grid{
    grid-template-columns: 1fr;
  }
}



/* =========================
SERVICES · SECTION 3 — FEES
========================= */

.services-fees{
  padding: 70px 0;
  background: #071f3b; /* same family as Services hero */
}

.services-fees__inner{
  display: flex;
  justify-content: center;
}

/* Card */
.fees-box{
  position: relative;
  max-width: 780px;
  padding: 34px 38px;
  border-radius: 22px;
  text-align: center;

  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;

  /* ✨ Fancy fade / glow */
  animation: feesPulse 6s ease-in-out infinite;
}

/* Gold glow ring */
.fees-box::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(
    120deg,
    rgba(245,193,108,0.45),
    rgba(77,163,255,0.25),
    rgba(245,193,108,0.45)
  );
  opacity: 0.35;
  filter: blur(22px);
  z-index: -1;
}

/* Text */
.fees-kicker{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.fees-title{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.fees-text{
  margin: 0 0 10px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}

.fees-text strong{
  color: #f5c16c;
}

/* ✨ Subtle animation */
@keyframes feesPulse{
  0%{
    box-shadow: 0 0 0 rgba(245,193,108,0.0);
    transform: translateY(0);
  }
  50%{
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    transform: translateY(-2px);
  }
  100%{
    box-shadow: 0 0 0 rgba(245,193,108,0.0);
    transform: translateY(0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .fees-box{
    animation: none;
  }
}

/* Mobile */
@media (max-width: 768px){
  .fees-box{
    padding: 28px 22px;
  }
}



/* =========================
SERVICES · SECTION 4 — CTA
========================= */

.services-cta{
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: #fff;

  background:
    radial-gradient(800px 420px at 50% 0%, rgba(245,193,108,0.18), transparent 60%),
    radial-gradient(900px 500px at 50% 100%, rgba(77,163,255,0.18), transparent 65%),
    #061c34; /* deepest blue = final emphasis */
}

.services-cta__inner{
  max-width: 880px;
}

.services-cta__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.services-cta__title{
  margin: 0 0 22px;
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.services-cta__text{
  margin: 0 auto 34px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

/* Actions */
.services-cta__actions{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border .18s ease;
}

/* Primary */
.cta-btn.primary{
  background: #f5c16c;
  color: #061c34;
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
}

.cta-btn.primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(245,193,108,0.35);
}

/* Secondary */
.cta-btn.secondary{
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.cta-btn.secondary:hover{
  transform: translateY(-3px);
  border-color: #f5c16c;
  background: rgba(255,255,255,0.10);
}

/* Mobile */
@media (max-width: 768px){
  .services-cta{
    padding: 80px 0;
  }
}




/* =========================
CONTACT / INTAKE SECTION
========================= */

.contact-intake{
  padding: 110px 0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(245,193,108,0.14), transparent 55%),
    radial-gradient(800px 500px at 85% 100%, rgba(77,163,255,0.14), transparent 60%),
    #123a63;
  color: #fff;
}

.contact-intake__inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
}

/* Left content */
.contact-intake__kicker{
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f5c16c;
}

.contact-intake__title{
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
}

.contact-intake__text{
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

.contact-intake__info{
  font-size: 15px;
  line-height: 1.75;
}

.contact-intake__info a{
  color: #f5c16c;
  font-weight: 800;
  text-decoration: none;
}

.contact-intake__info a:hover{
  text-decoration: underline;
}

/* Form wrapper */
.contact-intake__form{
  border-radius: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Fluent Forms cleanup */
.contact-intake__form input,
.contact-intake__form textarea,
.contact-intake__form select{
  background: rgba(255,255,255,0.92) !important;
  border-radius: 8px !important;
}

.contact-intake__form .ff-btn{
  background: #f5c16c !important;
  color: #123a63 !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border-radius: 10px !important;
}

/* Mobile */
@media (max-width: 900px){
  .contact-intake{
    padding: 80px 0;
  }

  .contact-intake__inner{
    grid-template-columns: 1fr;
  }
}
