
@media (hover: hover) and (pointer: fine) {
  .ggs-service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
  }

  .ggs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }

  .ggs-service-card:hover .elementor-heading-title {
    color: #F7F5F0;
  }
}
.ninja-forms-req-symbol {
  color: #ff0000;
  font-weight: 700;
}

/* FORM CONTAINER */
#nf-form-2-cont,
#nf-form-4-cont {
  background-color: #2C4C71;
  padding: 24px;
  border-radius: 10px;
}

/* FORM TITLE + REQUIRED NOTICE */
#nf-form-2-cont .nf-form-title *,
#nf-form-4-cont .nf-form-title *,
#nf-form-2-cont .nf-form-fields-required *,
#nf-form-4-cont .nf-form-fields-required * {
  color: #ffffff !important;
}

/* REQUIRED ASTERISK */
#nf-form-2-cont .ninja-forms-req-symbol,
#nf-form-4-cont .ninja-forms-req-symbol {
  color: #EE571A !important;
  font-weight: 700;
}

/* LABELS */
#nf-form-2-cont label,
#nf-form-4-cont label {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  display: block;
}

/* INPUTS */
#nf-form-2-cont input:not([type="button"]):not([type="submit"]),
#nf-form-4-cont input:not([type="button"]):not([type="submit"]),
#nf-form-2-cont textarea,
#nf-form-4-cont textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  background-color: #ffffff;
}

/* TEXTAREA HEIGHT */
#nf-form-2-cont textarea,
#nf-form-4-cont textarea {
  min-height: 60px;
}

/* FOCUS STATE */
#nf-form-2-cont input:focus,
#nf-form-4-cont input:focus,
#nf-form-2-cont textarea:focus,
#nf-form-4-cont textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(238, 87, 26, 0.6);
}

/* FIELD SPACING */
#nf-form-2-cont .nf-field-container,
#nf-form-4-cont .nf-field-container {
  margin-bottom: 8px;
}

/* SUBMIT BUTTON */
#nf-form-2-cont input[type="button"],
#nf-form-4-cont input[type="button"],
#nf-form-2-cont input[type="submit"],
#nf-form-4-cont input[type="submit"],
#nf-form-2-cont button,
#nf-form-4-cont button {
  background-color: #EE571A !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  padding: 14px 16px !important;
  border: none !important;
  border-radius: 6px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease-in-out;
}

/* HOVER STATE */
#nf-form-2-cont input[type="button"]:hover,
#nf-form-4-cont input[type="button"]:hover,
#nf-form-2-cont input[type="submit"]:hover,
#nf-form-4-cont input[type="submit"]:hover,
#nf-form-2-cont button:hover,
#nf-form-4-cont button:hover {
  background-color: #06203d  !important;
}
/* =========================
   GGS FAQ (details/summary)
   Sexy, clean, on-brand
   ========================= */

/* Wrapper (optional): add class "ggs-faq" to the Text Editor widget if you can.
   If you can't add a class, this will still style all details elements sitewide.
   Safer option below targets .ggs-faq details only.
*/
.ggs-faq details {
  background: #2B4C71;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 6px solid #EE571A;
  border-radius: 14px;
  padding: 0;
  margin: 14px 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.ggs-faq details:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  border-color: rgba(238, 87, 26, 0.75);
}

/* Summary row */
.ggs-faq summary {
  list-style: none; /* removes default marker in some browsers */
  cursor: pointer;
  padding: 18px 18px 18px 18px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(180deg, rgba(6, 32, 61, 0.35), rgba(6, 32, 61, 0));
}

/* Remove default arrow marker (Chrome/Safari) */
.ggs-faq summary::-webkit-details-marker {
  display: none;
}

/* Custom plus/minus icon */
.ggs-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

/* Open state */
.ggs-faq details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  background: rgba(238, 87, 26, 0.18);
  border-color: rgba(238, 87, 26, 0.55);
}

/* Focus accessibility */
.ggs-faq summary:focus {
  outline: none;
}
.ggs-faq summary:focus-visible {
  outline: 3px solid rgba(238, 87, 26, 0.65);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Answer content */
.ggs-faq details > *:not(summary) {
  color: rgba(255, 255, 255, 0.92);
  padding: 0 18px 18px 18px;
  line-height: 1.6;
  font-size: 16px;
}

/* Subtle divider line between question and answer */
.ggs-faq details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

/* Hover polish */
.ggs-faq summary:hover {
  background: rgba(6, 32, 61, 0.35);
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .ggs-faq summary {
    padding: 16px;
    font-size: 16px;
  }
  .ggs-faq details > *:not(summary) {
    padding: 0 16px 16px 16px;
    font-size: 15.5px;
  }
}
/* Orange accent line animation */
.ggs-faq details::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #EE571A,
    transparent
  );
  opacity: 0;
  transition: opacity 200ms ease;
}

.ggs-faq details[open]::before {
  opacity: 1;
}
.accent-navy-bold {
  color: #06203D;
  font-weight: 700;
}
/* ===========================
   GGS FAQ Typography (Match Site)
   =========================== */

/* FAQ questions (headings) */
.ggs-faq summary{
  font-family: 'Montserrat', sans-serif;
}

/* FAQ answers (body text) */
.ggs-faq details > *:not(summary){
  font-family: 'Inter', sans-serif;
}
/* ===========================
   FORCE FAQ Typography to Match Site
   Montserrat = headings
   Inter = body text
   =========================== */

/* FAQ section heading */
.ggs-faq > h2,
.ggs-faq > h2.accent-navy-bold{
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  text-align: center;
}

/* FAQ questions */
.ggs-faq summary{
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px;
}

/* FAQ answers */
.ggs-faq details > *:not(summary){
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

/* Center FAQ section heading */
.ggs-faq > h2{
  text-align: center;
}


/* ==============================
   GGS Checklist Text Box Style
   Orange checkmarks + light text
   ============================== */

.ggs-checklist ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.ggs-checklist li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #F7F5F0; /* your light text color */
}

.ggs-checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #EE571A; /* GGS orange */
  font-size: 18px;
}

/* Optional: tighten spacing on mobile */
@media (max-width: 768px){
  .ggs-checklist li{
    font-size: 15px;
    margin-bottom: 10px;
  }
}
/* ===========================
   GGS City List (Navy Box + Check Icon)
   Inter font, 22px, 400 weight
   =========================== */

.ggs-citylist{
  background: #2C4C71;
  padding: 18px 22px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.ggs-citylist__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 26px;
}

.ggs-citylist__grid li{
  margin: 0;
  padding: 0;
}

.ggs-citylist__grid a{
  position: relative;
  display: inline-block;
  padding-left: 22px;         /* room for check icon */
  color: #F7F5F0;             /* your light text */
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;           /* Inter regular */
  font-size: 16px;            /* 22pt look (web px) */
  line-height: 1;
}

.ggs-citylist__grid a::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #06203D;             /* dark navy check */
  font-weight: 900;
}

/* Hover */
.ggs-citylist__grid a:hover{
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Tablet */
@media (max-width: 1024px){
  .ggs-citylist__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px){
  .ggs-citylist__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .ggs-citylist__grid a{
    font-size: 18px;
  }
}
.ggs-citylist{
  border-radius: 12px;
}

/* ===========================
   GGS Header + Mobile Drawer (GOLD MASTER)
   =========================== */

.ggs-header{
  position: relative;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid rgba(12,18,32,0.08);
}

.ggs-header__wrap{
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ggs-srOnly{ position:absolute; left:-9999px; }


.ggs-header__logoImg{
  width: 150px !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
}
@media (max-width: 1024px){
  .ggs-header__logoImg{ width: 130px !important; }
}

/* Desktop/Tablet nav */
.ggs-nav{ display:flex; align-items:center; gap:14px; }
.ggs-nav__list{
  list-style:none; margin:0; padding:0;
  display:flex; align-items:center; gap:8px;
}
.ggs-nav__item{ margin:0; padding:0; }
.ggs-nav__link{
  display:inline-flex; align-items:center; gap:8px;
  text-decoration:none;
  color:#06203D;
  font-weight:800;
  padding:10px 12px;
  border-radius:12px;
  transition: all .2s ease;
  cursor:pointer;
}
.ggs-nav__link:hover{ color:#EE571A; background: rgba(6,32,61,0.05); }
.ggs-caret{ font-size:12px; opacity:.7; }

.ggs-nav__hasDropdown{ position:relative; }
.ggs-nav__dropdown{
  position:absolute; top:100%; left:0; margin-top:10px;
  min-width:260px;
  background:#fff;
  border-radius:14px;
  padding:8px 0;
  list-style:none;
  border:1px solid rgba(12,18,32,0.10);
  box-shadow:0 18px 48px rgba(0,0,0,0.18);
  display:none;
  z-index: 9999;
}
@media (min-width: 769px){
  .ggs-nav__hasDropdown::after{
    content:""; position:absolute; left:0; right:0; top:100%; height:14px;
  }
  .ggs-nav__hasDropdown:hover .ggs-nav__dropdown{ display:block; }
}
.ggs-nav__dropdown a{
  display:block;
  padding:12px 16px;
  text-decoration:none;
  color:#06203D;
  font-weight:650;
  cursor:pointer;
}
.ggs-nav__dropdown a:hover{ background: rgba(6,32,61,0.06); color:#EE571A; }

.ggs-nav__actions{ display:inline-flex; align-items:center; gap:12px; margin-left:8px; }
.ggs-header__phone{
  font-weight:900; color:#06203D; text-decoration:none;
  padding:10px 10px; border-radius:12px;
  cursor:pointer;
}
.ggs-header__phone:hover{ color:#EE571A; background: rgba(6,32,61,0.05); }
.ggs-btnHeader{
  padding:12px 14px;
  border-radius:30px;
  font-weight:900;
  color:#fff !important;
  background:#EE571A;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(0,0,0,0.18);
  transition: all .2s ease;
  cursor:pointer;
}
.ggs-btnHeader:hover{ background:#06203D; transform: translateY(-1px); }

/* Mobile */
.ggs-mobilebar{ display:none; }

@media (max-width: 768px){
  .ggs-header__wrap{ justify-content:center; padding:10px 18px; }
  .ggs-nav{
    display:none !important;
    position:fixed !important;
    left:14px !important; right:14px !important;
    bottom:118px !important;
    background:#fff !important;
    border-radius:18px;
    border:1px solid rgba(12,18,32,0.10);
    box-shadow:0 26px 80px rgba(0,0,0,0.25);
    padding:14px;
    flex-direction:column;
    gap:10px;
    max-height:70vh;
    overflow:auto;
    z-index: 100005;
    opacity:0;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .ggs-nav.is-open{
    display:flex !important;
    opacity:1;
    transform: translateY(0);
  }

  .ggs-mobilebar{
    position:fixed;
    left:0; right:0; bottom:0;
    z-index: 100001;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:74px;
    padding:10px 18px calc(10px + env(safe-area-inset-bottom));
    box-sizing:border-box;
    background:#2C4C71;
    border-top:1px solid rgba(255,255,255,0.14);
  }

  body{ padding-bottom:92px; }

  .ggs-mobilebar__icon{
    width:56px; height:56px;
    display:flex; align-items:center; justify-content:center;
    border-radius:16px;
    text-decoration:none;
    -webkit-tap-highlight-color: transparent;
    cursor:pointer;
  }
  .ggs-mobilebar__icon svg{ width:26px; height:26px; fill:#fff; opacity:.98; display:block; }

  .ggs-mobilebar__menuBtn{
    width:78px; height:78px;
    border-radius:999px;
    border:2px solid rgba(255,255,255,0.18);
    background:#06203D !important;
    box-shadow:0 16px 44px rgba(0,0,0,0.30);
    display:grid; place-items:center;
    transform: translateY(-18px);
    cursor:pointer;
    padding:0;
    -webkit-tap-highlight-color: transparent;
    transition: background-color .2s ease;
  }

  .ggs-mobilebar__hamburger{
    width:28px; height:3px;
    background:#fff;
    position:relative;
    border-radius:3px;
    display:block;
    transition: all .25s ease;
  }
  .ggs-mobilebar__hamburger::before,
  .ggs-mobilebar__hamburger::after{
    content:"";
    position:absolute; left:0;
    width:28px; height:3px;
    background:#fff;
    border-radius:3px;
    transition: all .25s ease;
  }
  .ggs-mobilebar__hamburger::before{ top:-9px; }
  .ggs-mobilebar__hamburger::after{ top:9px; }

  .ggs-mobilebar__menuBtn[aria-expanded="true"]{ background:#EE571A !important; }
  .ggs-mobilebar__menuBtn[aria-expanded="true"] .ggs-mobilebar__hamburger{ background:transparent; }
  .ggs-mobilebar__menuBtn[aria-expanded="true"] .ggs-mobilebar__hamburger::before{ top:0; transform: rotate(45deg); }
  .ggs-mobilebar__menuBtn[aria-expanded="true"] .ggs-mobilebar__hamburger::after{ top:0; transform: rotate(-45deg); }

  .ggs-nav__list{ flex-direction:column; align-items:stretch; gap:0; }
  .ggs-nav__item{ border-bottom:1px solid rgba(12,18,32,0.08); }
  .ggs-nav__item:last-child{ border-bottom:none; }

  .ggs-nav__link{
    width:100%;
    justify-content:space-between;
    padding:16px 14px;
    border-radius:14px;
    font-weight:900;
    font-size:18px;
  }

  .ggs-nav__dropdown{
    display:none !important;
    position:static !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 0 10px 0 !important;
    margin:0 !important;
    background:transparent !important;
  }
  .ggs-nav__hasDropdown.is-expanded > .ggs-nav__dropdown{ display:block !important; }

  .ggs-nav__dropdown a{
    padding:12px 14px !important;
    border-radius:12px;
    font-weight:750;
    color: rgba(6,32,61,0.92) !important;
  }

  .ggs-nav__actions{
    display:grid; gap:10px;
    padding-top:10px;
    margin-left:0;
  }
  .ggs-header__phone{
    text-align:center;
    padding:14px 14px;
    border-radius:14px;
    border:1px solid rgba(12,18,32,0.12);
  }
  .ggs-btnHeader{
    width:100%;
    text-align:center;
    border-radius:14px;
    padding:14px 14px;
  }

  /* when open, bar can’t steal taps */
  body.ggs-menuOpen .ggs-mobilebar{ pointer-events:none !important; }
  body.ggs-menuOpen .ggs-mobilebar .ggs-mobilebar__menuBtn{ pointer-events:auto !important; }
}

/* Hide theme toggles */
@media (max-width: 1024px){
  .elementor-menu-toggle,
  .elementor-nav-menu__toggle,
  .menu-toggle,
  .navbar-toggle,
  .ast-mobile-menu-trigger{ display:none !important; }
}

/* Desktop fixed header hide/show */
@media (min-width: 769px){
  .ggs-header{
    position:fixed !important;
    top:0 !important;
    left:0; right:0;
    z-index:99999 !important;
    transform: translateY(0);
    transition: transform 220ms ease;
  }
  .ggs-header.is-hidden{ transform: translateY(-110%); }
}

/* Section Headings */
.ggs-section-heading{
  text-align: center;
  margin: 0 0 18px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #06203D;
}

/* Sexy centered list */
.ggs-sexy-list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

/* Each list row */
.ggs-sexy-list li{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 17px;
  color: #06203D;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Orange dot */
.ggs-sexy-list li::before{
  content: "●";
  color: #EE571A;
  font-size: 9px;
  line-height: 1;
}

/* ===========================
   GGS Service Area Grid
   =========================== */

.ggs-service-areas{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

/* Tablet */
@media (min-width: 768px){
  .ggs-service-areas{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

/* Desktop */
@media (min-width: 1024px){
  .ggs-service-areas{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.ggs-area{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(6, 32, 61, 0.12);
  color: #06203D;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  box-shadow: 0 6px 18px rgba(6, 32, 61, 0.06);
}

/* Hover / focus for keyboard users */
.ggs-area:hover,
.ggs-area:focus{
  transform: translateY(-2px);
  border-color: rgba(238, 87, 26, 0.65);
  color: #EE571A;
  box-shadow: 0 10px 26px rgba(6, 32, 61, 0.10);
  outline: none;
}

/* Optional: make it feel more "button-like" on tap */
.ggs-area:active{
  transform: translateY(0px);
}
/* ===========================
   GGS City List: 3 columns desktop + mobile show more
   =========================== */

/* Your existing checkmark styling (keep if you already added it) */
.ggs-checklist{
  list-style: none;
  margin: 0;
  padding: 0;
}
.ggs-checklist li{
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #F7F5F0;
  line-height: 1.4;
}
.ggs-checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 800;
  color: #EE571A;
}

/* Column layout: default 1 column */
.ggs-checklist--cols{
  column-count: 1;
  column-gap: 26px;
}
.ggs-checklist--cols li{
  break-inside: avoid;
}

/* Desktop: 3 columns */
@media (min-width: 1024px){
  .ggs-checklist--cols{
    column-count: 3;
  }
}

/* Button styling */
.ggs-showmore{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(6,32,61,0.18);
  background: #ffffff;
  color: #ED5619;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  box-shadow: 0 6px 18px rgba(6,32,61,0.06);
}
.ggs-showmore:hover{
  transform: translateY(-1px);
  border-color: rgba(238,87,26,0.65);
  color: #EE571A;
  box-shadow: 0 10px 26px rgba(6,32,61,0.10);
}

/* ===========================
   GGS Popular Services Cards
   =========================== */

.ggs-popular-services{
  margin: 0;
}

.ggs-popular-services__title{
  margin: 0 0 14px 0;
  color: #06203D;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Grid */
.ggs-serviceCards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px){
  .ggs-serviceCards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .ggs-serviceCards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Card */
.ggs-serviceCard{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(6,32,61,0.14);
  border-radius: 18px;
  padding: 16px 16px 15px 16px;
  box-shadow: 0 10px 26px rgba(6,32,61,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}

.ggs-serviceCard::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: rgba(238,87,26,0.95);
  transform: translateX(-6px);
  transition: transform .18s ease;
}

.ggs-serviceCard__title{
  margin: 0 0 6px 0;
  color: #06203D;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.ggs-serviceCard__text{
  margin: 0;
  color: rgba(6,32,61,0.84);
  font-weight: 400;
  line-height: 1.35;
}

/* Hover / focus */
.ggs-serviceCard:hover,
.ggs-serviceCard:focus{
  transform: translateY(-2px);
  border-color: rgba(238,87,26,0.45);
  box-shadow: 0 16px 40px rgba(6,32,61,0.10);
  outline: none;
}

.ggs-serviceCard:hover::after,
.ggs-serviceCard:focus::after{
  transform: translateX(0);
}
/* ===========================
   GGS Typography – Popular Services
   =========================== */

/* Headings = Montserrat */
.ggs-popular-services__title,
.ggs-serviceCard__title{
  font-family: 'Montserrat', sans-serif;
}

/* Body text = Inter */
.ggs-serviceCard__text{
  font-family: 'Inter', sans-serif;
}
/* Center Popular Services section heading */
.ggs-popular-services__title{
  text-align: center;
}
.ggs-link-orange {
  color: #EE571A;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.ggs-link-orange::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #06203D;
  transition: width 0.2s ease;
}

.ggs-link-orange:hover {
  color: #06203D;
}

.ggs-link-orange:hover::after {
  width: 100%;
}