/* IMPORTANT FIX: your shiny overlay is probably blocking clicks */
.shine-overlay { pointer-events: none; }

/* =========================
   YOUR UPDATED CSS (kept, only appended where needed)
   ========================= */

/* Grid --------------------------------------------------------------------- */
.services {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding: clamp(2rem, 6vw, 6rem) 1.5rem;
  align-items: stretch;
  justify-items: stretch;
  margin-top: -60px;
}

@media (min-width: 720px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  .services { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Cards -------------------------------------------------------------------- */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  height: 340px;
  min-height: 340px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

@media (min-width: 1100px) {
  .svc-card { height: 360px; min-height: 360px; }
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  border-color: rgba(255, 255, 255, .32);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(255, 255, 255, .18), transparent 60%);
  filter: blur(8px);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.svc-card:hover::before { opacity: 1; }

/* Content inside card ------------------------------------------------------ */
.svc-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: .25rem 0 .5rem;
}

.svc-list {
  text-align: left;
  margin: .5rem 0 0;
  padding-left: 1rem;
  color: #dcdcdc;
}

.svc-list li { margin: .35rem 0; }

/* Stick price to bottom */
.svc-price {
  margin-top: auto;
  font-weight: 800;
  color: #fff;
  padding-top: .75rem;
}

/* Grid footer row (button) ------------------------------------------------- */
.services-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: .5rem;
}

/* Button style (services CTA) --------------------------------------------- */
.btnservices {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

/* Tabs --------------------------------------------------------------------- */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 1.5rem 0 2.5rem;
}

.tab-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background .25s ease, border-color .25s ease;
}

.tab-btn:hover { border-color: rgba(255,255,255,.5); }

.tab-btn.active {
  background: var(--fg);
  border-color: var(--fg);
}

/* =========================
   ADDITIONS (Learn more + Modal)
   ========================= */

.muted {
  color: rgba(255,255,255,.70);
  margin: 0 0 .4rem;
  font-weight: 650;
}

/* Card actions */
.svc-actions{
  display:flex;
  gap:.6rem;
  margin-top:.9rem;
}

.btn-learn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.55rem .9rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative;
  z-index: 2;
}

.btn-learn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.34);
}

/* Modal */
.svc-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.svc-modal.is-open{ display:block; }

.svc-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

/* FIT SCREEN on desktop: use full height, no "go over" */
.svc-modal__panel{
  position:relative;
  width: min(1100px, calc(100% - 2rem));
  height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: hidden;                 /* panel itself doesn't scroll */
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(12,16,28,.92);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
}

/* body scrolls inside */
.svc-modal__body{
  padding: 18px 22px 22px;
  overflow: auto;                   /* THIS is where scrolling happens */
  flex: 1;
}

.svc-modal__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-size: 18px;
  font-weight: 900;
  cursor:pointer;
  opacity:.92;
  z-index: 3;
}
.svc-modal__close:hover{ opacity:1; }

.svc-modal__head{
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.svc-modal__kicker{
  color: rgba(255,255,255,.65);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 2px;
}

.svc-modal__title{
  margin: 10px 0 6px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
}

.svc-modal__subtitle{
  color: rgba(255,255,255,.72);
  font-weight: 700;
  margin-bottom: 10px;
}

.svc-modal__price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(40,170,255,.20);
  border: 1px solid rgba(40,170,255,.35);
  font-weight: 900;
}

/* Sections */
.svc-modal__section{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
  margin-bottom: 12px;
}

.svc-modal__sectionTitle{
  font-weight: 900;
  margin: 0 0 10px;
}

.svc-modal__note{
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}

/* Process steps: numbered circles */
.svc-steps{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 980px){
  .svc-steps{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .svc-steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.svc-step{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}

.svc-step__num{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(40,170,255,.18);
  border: 1px solid rgba(40,170,255,.35);
}

.svc-step__text{
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.35;
}

/* Included: 2-column symmetric grid */
.svc-included-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
@media (max-width: 720px){
  .svc-included-grid{ grid-template-columns: 1fr; }
}

.svc-chip{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255,255,255,.86);
  line-height: 1.35;
  font-size: 14px;
}

/* Bottom split (filming left / overage right) */
.svc-split{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 780px){
  .svc-split{ grid-template-columns: 1fr; }
}
.svc-split__col{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 12px;
}

/* Scroll lock helper */
body.modal-open { overflow: hidden; }

/* 1) Make the modal feel like a real overlay */
.svc-modal__backdrop{
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px) saturate(120%);
}

/* hide/disable header behind modal so it doesn’t compete */
body.modal-open header.nav{
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: .2s ease;
}

/* 2) Panel: cleaner, less “boxed-in” */
.svc-modal__panel{
  width: min(1120px, calc(100% - 2.2rem));
  height: calc(100vh - 2.2rem);
  margin: 1.1rem auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: radial-gradient(1200px 600px at 15% 10%, rgba(40,170,255,.14), transparent 60%),
              rgba(10,14,24,.92);
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
}

/* 3) Header: stronger hierarchy */
.svc-modal__head{
  padding: 26px 26px 18px;
}
.svc-modal__title{
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
}
.svc-modal__subtitle{
  font-size: 16px;
  opacity: .9;
}
.svc-modal__price{
  margin-top: 10px;
  font-size: 15px;
  padding: 10px 14px;
}

/* 4) PROCESS: real timeline instead of big cards */
.svc-steps{
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-top: 10px;
}

/* connector line */
.svc-steps::before{
  content:"";
  position:absolute;
  left: 2%;
  right: 2%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, rgba(40,170,255,.0), rgba(40,170,255,.55), rgba(40,170,255,.0));
  opacity: .9;
}

@media (max-width: 980px){
  .svc-steps{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .svc-steps::before{ display:none; }
}
@media (max-width: 560px){
  .svc-steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.svc-step{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px 12px 12px;
  text-align: left;              /* left-align = more premium, less “toy” */
  min-height: 120px;
}

.svc-step__num{
  width: 44px;
  height: 44px;
  margin: 0 0 10px;
  box-shadow: 0 0 0 6px rgba(10,14,24,.75); /* makes it pop above the line */
}

.svc-step__text{
  font-size: 13px;
  line-height: 1.45;
  opacity: .92;
}

/* 5) INCLUDED: chips that feel modern + tighter */
.svc-included-grid{
  gap: 10px;
}

.svc-chip{
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  padding-left: 34px;
}

/* check dot */
.svc-chip::before{
  content:"";
  position:absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(40,170,255,.75);
  box-shadow: 0 0 0 4px rgba(40,170,255,.12);
}

/* 6) Bottom split: clearer headers + symmetry */
.svc-split__col{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
}

.svc-split .svc-modal__sectionTitle{
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

/* 7) Reduce “too many boxes” feeling */
.svc-modal__section{
  background: transparent;
  border: 1px solid rgba(255,255,255,.10);
  padding: 16px;
  border-radius: 22px;
}
/* =========================
   SERVICES: MOBILE SWIPE CAROUSEL + ARROWS
   Desktop stays grid. Mobile becomes horizontal snap.
   ========================= */

.services-wrap{
  position: relative;
}

/* Mobile: turn the grid into a horizontal scroller */
@media (max-width: 820px) {
  .services {
    /* override grid behavior */
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%; /* card width */
    grid-template-columns: unset;

    gap: 14px;
    padding: 1.25rem 1rem 2.25rem;
    margin-top: -40px;

    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;

    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;

    /* nicer swipe */
    scrollbar-width: none;          /* Firefox */
  }
  .services::-webkit-scrollbar{ display:none; } /* Chrome/Safari */

  /* Each card snaps */
  .services > .svc-card{
    scroll-snap-align: center;
  }

  /* Footer should not be part of the swipe row on mobile */
  .services-footer{
    display: none;
  }

  /* Make cards a bit shorter for phones (optional but usually better) */
  .svc-card{
    height: 320px;
    min-height: 320px;
  }

  /* Arrows */
  .svc-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 44px;
    height: 44px;
    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 0;
    display: grid;
    place-items: center;
    cursor: pointer;

    opacity: .92;
    transition: opacity .2s ease, transform .2s ease;
  }
  .svc-arrow:hover{
    opacity: 1;
    transform: translateY(-50%) scale(1.02);
  }

  .svc-arrow.left{ left: 10px; }
  .svc-arrow.right{ right: 10px; }

  /* Add side fades so it looks premium */
  .services-wrap::before,
  .services-wrap::after{
    content:"";
    position:absolute;
    top: 0;
    bottom: 0;
    width: 34px;
    z-index: 4;
    pointer-events:none;
  }
  .services-wrap::before{
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  }
  .services-wrap::after{
    right: 0;
    background: linear-gradient(270deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  }
}

/* Very small phones: slightly wider cards */
@media (max-width: 480px){
  .services{ grid-auto-columns: 88%; }
}

/* Desktop/tablet: hide arrows */
@media (min-width: 821px){
  .svc-arrow{ display:none; }
}
/* =========================
   SERVICES – MOBILE CARD FIX
   ========================= */

@media (max-width: 820px) {
  .svc-card {
    height: auto;          /* let content breathe */
    min-height: unset;
    padding-bottom: 1.5rem;
  }

  .svc-list {
    margin-bottom: 1rem;
  }
  #services{
    scroll-margin: 20px;  /* account for fixed header */  
  }
}
.svc-arrow {
  display: none !important;
}
.services-wrap::before,
.services-wrap::after {
  display: none;
}
/* =========================
   FIX: Tabs not clickable on DESKTOP (overlap/z-index)
   ========================= */

/* Tabs must sit above the card grid */
.services-tabs {
  position: relative;
  z-index: 50;
}