/*
Theme Name:  Geeks Support
Theme URI:   https://geekssupport.com.au
Author:      Geeks Support Perth
Author URI:  https://geekssupport.com.au
Description: Professional IT services theme — fully Elementor Pro compatible. Minimal shell design lets Elementor control 100% of page content. Mega navigation menu, auto-created service pages, Perth IT business ready.
Version:     7.1.0
Requires at least: 5.9
Requires PHP: 7.2
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geekssupport
Tags:        full-width-template, custom-colors, custom-logo, custom-menu, elementor, business, technology
*/

/* =============================================================
   DESIGN TOKENS — fed into Elementor Global Colors
   ============================================================= */
:root {
  --gs-red:        #CC0000;
  --gs-red-dark:   #AA0000;
  --gs-red-light:  #E53935;
  --gs-black:      #111111;
  --gs-dark:       #1a1a1a;
  --gs-white:      #ffffff;
  --gs-light:      #f5f5f5;
  --gs-border:     #e0e0e0;
  --gs-text:       #1a1a1a;
  --gs-muted:      #555555;
  --gs-font:       'Ubuntu', 'Segoe UI', system-ui, sans-serif;
  --gs-radius:     12px;
  --gs-shadow:     0 8px 30px rgba(0,0,0,.10);
  --gs-max-w:      1200px;
}

/* =============================================================
   GLOBAL RESET — minimal, won't fight Elementor
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--gs-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gs-text);
  background: var(--gs-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--gs-font);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--gs-black);
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================= */

/* Canvas template: remove all chrome */
body.elementor-template-canvas #gs-topbar,
body.elementor-template-canvas #gs-nav,
body.elementor-template-canvas #gs-footer {
  display: none !important;
}

/* When Elementor Theme Builder renders its own header/footer */
body.gs-elementor-header #gs-topbar,
body.gs-elementor-header #gs-nav { display: none !important; }

body.gs-elementor-footer #gs-footer { display: none !important; }

/* Elementor sections sit flush */
.elementor-section-wrap,
.e-con { width: 100%; }

/* =============================================================
   TOP BAR
   ============================================================= */
#gs-topbar {
  background: var(--gs-black);
  color: rgba(255,255,255,.82);
  font-family: var(--gs-font);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
  position: relative;
  z-index: 10001;
}
#gs-topbar .gs-wrap {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.gs-tb-left,
.gs-tb-right { display: flex; align-items: center; gap: 18px; }
#gs-topbar a {
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
#gs-topbar a:hover { color: #ff6666; }
#gs-topbar i { font-size: 11px; }

/* =============================================================
   MAIN NAV
   KEY: NO border-bottom on #gs-nav (was causing red line)
         .gs-nav-inner is position:relative so dropdown
         anchors inside it (NOT full-width)
   ============================================================= */
#gs-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 9999;
  font-family: var(--gs-font);
  /* NO border-bottom here */
}
#gs-nav .gs-nav-inner {
  position: relative;          /* dropdown anchors here */
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

/* Logo */
.gs-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.gs-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gs-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.gs-logo-text .gs-brand {
  font-size: 18px;
  font-weight: 900;
  color: var(--gs-black);
  line-height: 1;
}
.gs-logo-text .gs-brand span { color: var(--gs-red); }
.gs-logo-text .gs-tag {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}

/* Desktop nav row */
.gs-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Mega trigger buttons */
.gs-mtrigger {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-text);
  font-family: var(--gs-font);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.gs-mtrigger:hover,
.gs-mitem.gs-open .gs-mtrigger {
  background: var(--gs-light);
  color: var(--gs-red);
}
.gs-mtrigger .gs-caret {
  font-size: 9px;
  transition: transform .25s;
}
.gs-mitem.gs-open .gs-mtrigger .gs-caret {
  transform: rotate(180deg);
}

/* Plain nav link */
.gs-nav-plain {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gs-text);
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.gs-nav-plain:hover { background: var(--gs-light); color: var(--gs-red); }

/* Book Online button */
.gs-nav-book {
  background: var(--gs-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  transition: background .2s;
  white-space: nowrap;
}
.gs-nav-book:hover { background: var(--gs-red-dark); color: #fff; }

/* =============================================================
   MEGA DROPDOWN
   position:absolute inside .gs-nav-inner → contained width
   NOT position:fixed / NOT 100vw
   ============================================================= */
.gs-mitem { position: static; }

.gs-mdrop {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 960px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 14px 50px rgba(0,0,0,.13);
  border: 1px solid rgba(0,0,0,.08);
  border-top: 3px solid var(--gs-red); /* only on dropdown, NOT on nav bar */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 8000;
  overflow: hidden;
}
.gs-mitem.gs-open > .gs-mdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* Dropdown inner grid: tabs | content | image */
.gs-mdrop-inner {
  display: grid;
  grid-template-columns: 250px 1fr 190px;
  min-height: 290px;
}

/* Left: tab nav */
.gs-tab-nav {
  background: #fafafa;
  border-right: 1px solid #eee;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gs-tab-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 11px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: all .2s;
}
.gs-tab-btn:hover,
.gs-tab-btn.gs-active {
  background: #fff5f5;
  border-color: var(--gs-red);
}
.gs-tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
  transition: all .2s;
}
.gs-tab-btn.gs-active .gs-tab-icon,
.gs-tab-btn:hover    .gs-tab-icon { background: var(--gs-red); color: #fff; }
.gs-tab-label strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gs-black);
  font-family: var(--gs-font);
  line-height: 1.2;
}
.gs-tab-label em {
  display: block;
  font-size: 11.5px;
  color: #888;
  font-style: normal;
  margin-top: 2px;
}
.gs-tab-btn.gs-active .gs-tab-label strong { color: var(--gs-red); }

/* Middle: panels */
.gs-tab-panels { padding: 18px 22px; overflow: hidden; }
.gs-tab-panel { display: none; }
.gs-tab-panel.gs-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  animation: gsFadeIn .2s ease;
}
.gs-tab-panel.gs-single { grid-template-columns: 1fr !important; }
@keyframes gsFadeIn {
  from { opacity:0; transform:translateY(4px); }
  to   { opacity:1; transform:translateY(0); }
}
.gs-tab-panel ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gs-text);
  border-bottom: 1px solid #f2f2f2;
  transition: color .15s;
  font-family: var(--gs-font);
}
.gs-tab-panel ul li:last-child a { border-bottom: none; }
.gs-tab-panel ul li a i { font-size: 8px; color: var(--gs-red); flex-shrink: 0; }
.gs-tab-panel ul li a:hover { color: var(--gs-red); }

/* Right: image panel */
.gs-mdrop-img { border-left: 1px solid #eee; overflow: hidden; }
.gs-mdrop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 290px;
  display: block;
}

/* About dropdown variant */
.gs-mdrop-about { grid-template-columns: 1fr 200px 190px; }
.gs-about-links { padding: 18px 22px; }
.gs-about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.gs-about-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 9px;
  transition: all .2s;
  text-decoration: none;
}
.gs-about-card:hover { background: #fff5f5; border-color: var(--gs-red); }
.gs-about-card-icon {
  width: 33px;
  height: 33px;
  border-radius: 6px;
  background: var(--gs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #888;
  flex-shrink: 0;
  transition: all .2s;
}
.gs-about-card:hover .gs-about-card-icon { background: var(--gs-red); color: #fff; }
.gs-about-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--gs-black); font-family: var(--gs-font); }
.gs-about-card em     { display: block; font-size: 11px; color: #888; font-style: normal; margin-top: 2px; }
.gs-nofee {
  padding: 13px;
  background: var(--gs-light);
  border-radius: 9px;
  border-left: 3px solid var(--gs-red);
}
.gs-nofee h4 { font-size: 13.5px; font-weight: 700; color: var(--gs-black); margin-bottom: 5px; font-family: var(--gs-font); }
.gs-nofee p  { font-size: 12.5px; color: #555; line-height: 1.55; margin: 0; }
.gs-about-side { border-left: 1px solid #eee; padding: 18px 0; }
.gs-about-side h5 { padding: 0 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #999; margin-bottom: 10px; font-family: var(--gs-font); }
.gs-about-side ul li a {
  display: block;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gs-text);
  border-bottom: 1px solid #f5f5f5;
  transition: all .15s;
  font-family: var(--gs-font);
}
.gs-about-side ul li a:hover { color: var(--gs-red); background: #fff5f5; padding-left: 22px; }

/* Areas dropdown variant */
.gs-mdrop-areas { grid-template-columns: 190px 1fr; }
.gs-areas-panel { display: block !important; grid-column: 2 / -1; }
.gs-suburbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.gs-suburbs a {
  display: block;
  padding: 7px 5px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  transition: color .15s;
  font-family: var(--gs-font);
}
.gs-suburbs a:hover { color: var(--gs-red); }

/* =============================================================
   HAMBURGER & MOBILE MENU
   ============================================================= */
.gs-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.gs-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gs-black);
  border-radius: 2px;
  transition: .3s;
}
.gs-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gs-hamburger.open span:nth-child(2) { opacity: 0; }
.gs-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#gs-mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 8888;
}
#gs-mob-overlay.open { display: block; }

#gs-mob-menu {
  position: fixed;
  top: 0;
  left: -290px;
  width: 275px;
  height: 100vh;
  background: var(--gs-black);
  z-index: 8999;
  overflow-y: auto;
  transition: left .3s ease;
  display: flex;
  flex-direction: column;
  font-family: var(--gs-font);
}
#gs-mob-menu.open { left: 0; }

.gs-mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gs-mob-head .gs-brand { color: #fff; font-size: 16px; font-weight: 900; }
.gs-mob-head .gs-brand span { color: var(--gs-red); }
#gs-mob-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}
#gs-mob-close:hover { color: #fff; }

.gs-mob-nav { flex: 1; padding: 8px 0; }
.gs-mob-nav > li { border-bottom: 1px solid rgba(255,255,255,.07); }
.gs-mob-nav > li > a,
.gs-mob-nav > li > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--gs-font);
  text-align: left;
  transition: background .15s;
}
.gs-mob-nav > li > a:hover,
.gs-mob-nav > li > button:hover { background: rgba(255,255,255,.06); color: #fff; }
.gs-mob-nav > li > button i { font-size: 10px; transition: transform .25s; }
.gs-mob-nav > li.open > button i { transform: rotate(180deg); }

.gs-mob-sub { display: none; background: rgba(0,0,0,.18); }
.gs-mob-sub.open { display: block; }
.gs-mob-sub li a {
  display: block;
  padding: 9px 18px 9px 32px;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  font-family: var(--gs-font);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s;
}
.gs-mob-sub li a:hover { color: #ff6666; }

.gs-mob-foot {
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gs-mob-foot a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--gs-font);
  transition: all .2s;
}
.gs-mob-call { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.gs-mob-book { background: var(--gs-red); color: #fff; }
.gs-mob-book:hover { background: var(--gs-red-dark); color: #fff; }

/* =============================================================
   PAGE CONTENT WRAPPER
   ============================================================= */
#gs-main { min-height: 40vh; }

/* =============================================================
   FOOTER (PHP fallback — Elementor Theme Builder overrides)
   ============================================================= */
#gs-footer {
  background: var(--gs-black);
  font-family: var(--gs-font);
}
.gs-foot-top {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 58px 24px 38px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.gs-foot-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 290px;
}
.gs-foot-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.gs-foot-col li { margin-bottom: 9px; }
.gs-foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.gs-foot-col a::before { content: '›'; color: var(--gs-red); font-weight: 900; }
.gs-foot-col a:hover { color: #fff; }
.gs-foot-bottom {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.gs-foot-bottom p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.gs-pay { display: flex; gap: 6px; }
.gs-pay span {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

/* =============================================================
   SERVICE PAGE TEMPLATE STYLES
   ============================================================= */
.gs-svc-hero {
  background: var(--gs-black);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.gs-svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
}
.gs-svc-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
.gs-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.gs-breadcrumb a { color: rgba(255,255,255,.6); }
.gs-breadcrumb a:hover { color: #ff6666; }
.gs-breadcrumb span { color: #ff6666; }
.gs-svc-h1 {
  color: #fff;
  font-size: clamp(26px,3.5vw,46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.gs-svc-sub {
  color: rgba(255,255,255,.75);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 26px;
}
.gs-btn-row { display: flex; gap: 13px; flex-wrap: wrap; }
.gs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  font-family: var(--gs-font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.gs-btn-red  { background: var(--gs-red);   color: #fff; border-color: var(--gs-red); }
.gs-btn-red:hover  { background: var(--gs-red-dark); border-color: var(--gs-red-dark); color: #fff; }
.gs-btn-dark { background: var(--gs-black); color: #fff; border-color: var(--gs-black); }
.gs-btn-dark:hover { background: #2a2a2a; color: #fff; }
.gs-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.gs-btn-outline:hover { border-color: #fff; color: #fff; }
.gs-btn-outline-dark { background: transparent; color: var(--gs-black); border-color: var(--gs-border); }
.gs-btn-outline-dark:hover { border-color: var(--gs-black); }

.gs-svc-img-frame {
  position: relative;
}
.gs-svc-img-frame .gs-frame-inner {
  border-radius: 14px;
  overflow: hidden;
  padding: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}
.gs-svc-img-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.gs-svc-badge {
  position: absolute;
  bottom: 18px;
  right: -10px;
  background: #fff;
  border-radius: 10px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.gs-svc-badge .badge-star { font-size: 24px; }
.gs-svc-badge strong { display: block; font-size: 12.5px; font-weight: 700; color: var(--gs-black); }
.gs-svc-badge em { display: block; font-size: 11px; color: #888; font-style: normal; }

/* Brands bar */
.gs-brands {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.gs-brands-wrap {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px;
}
.gs-brands-wrap span {
  font-size: 13px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: 1px;
  font-family: var(--gs-font);
}

/* Content section */
.gs-sec {
  padding: 64px 0;
}
.gs-sec-wrap {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.gs-sec-text h2 {
  font-size: clamp(22px,2.5vw,34px);
  font-weight: 700;
  color: var(--gs-black);
  margin-bottom: 16px;
}
.gs-sec-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--gs-muted);
  margin-bottom: 14px;
}
.gs-sec-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
  display: block;
}

/* Cards section */
.gs-cards-sec {
  background: var(--gs-light);
  padding: 64px 0;
}
.gs-cards-wrap {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.gs-card {
  background: #fff;
  border-radius: var(--gs-radius);
  padding: 30px;
  border: 1px solid rgba(0,0,0,.06);
}
.gs-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gs-black);
  margin-bottom: 16px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--gs-red);
}
.gs-card-list { list-style: none; padding: 0; margin: 0; }
.gs-card-list li {
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--gs-muted);
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  line-height: 1.55;
}
.gs-card-list li:last-child { border-bottom: none; }
.gs-card-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gs-red);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.3;
}
.gs-card p { font-size: 14.5px; line-height: 1.8; color: var(--gs-muted); margin-bottom: 12px; }
.gs-card strong { color: var(--gs-black); }

/* CTA Banner */
.gs-cta-banner {
  background: var(--gs-red);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.gs-cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.gs-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.gs-cta-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 15px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--gs-font);
}
.gs-cta-tag a { color: #fff; font-weight: 900; text-decoration: underline; }
.gs-cta-banner h2 {
  color: #fff;
  font-size: clamp(22px,3vw,36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.gs-cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* FAQ */
.gs-faq-sec { padding: 70px 0; background: #fff; }
.gs-faq-wrap {
  max-width: var(--gs-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 56px;
  align-items: start;
}
.gs-faq-sidebar h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--gs-black);
  margin-bottom: 16px;
}
.gs-faq-sidebar img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--gs-radius);
  margin-top: 18px;
  display: block;
}
.gs-faq-list { border-top: 2px solid #eee; }
.gs-faq-item { border-bottom: 1px solid #eee; }
.gs-faq-q {
  padding: 16px 4px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gs-black);
  user-select: none;
  font-family: var(--gs-font);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.gs-faq-q:hover { color: var(--gs-red); }
.gs-faq-icon {
  font-size: 19px;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--gs-red);
  display: inline-block;
  transition: transform .28s;
}
.gs-faq-a {
  display: none;
  padding: 0 4px 16px;
  font-size: 14.5px;
  color: var(--gs-muted);
  line-height: 1.75;
}

/* Elementor edit notice for admins */
.gs-edit-notice {
  background: #fff8f8;
  border: 2px dashed var(--gs-red);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 30px auto;
  max-width: 860px;
  text-align: center;
  font-family: var(--gs-font);
}
.gs-edit-notice p { font-size: 14px; color: #555; margin-bottom: 14px; }
.gs-edit-notice strong { color: var(--gs-red); }

/* WordPress defaults */
.wp-caption { max-width: 100%; }
.alignleft  { float: left;  margin: 0 20px 10px 0; }
.alignright { float: right; margin: 0 0 10px 20px; }
.aligncenter { display: block; margin: 0 auto 10px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .gs-mdrop { width: calc(100vw - 48px); }
}
@media (max-width: 900px) {
  .gs-nav-links { display: none; }
  .gs-hamburger { display: flex; }
  .gs-svc-hero-wrap,
  .gs-sec-wrap,
  .gs-faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .gs-svc-img-frame { display: none; }
  .gs-cards-wrap { grid-template-columns: 1fr; }
  .gs-foot-top   { grid-template-columns: 1fr; gap: 32px; }
  .gs-mdrop-about { grid-template-columns: 1fr !important; }
  .gs-about-side  { display: none; }
}
@media (max-width: 600px) {
  .gs-btn-row { flex-direction: column; }
  .gs-about-grid { grid-template-columns: 1fr; }
  .gs-suburbs { grid-template-columns: repeat(2,1fr); }
}

/* =============================================================
   HOMEPAGE HERO SLIDER (3 slides, dots only — no arrows)
   ============================================================= */
.gs-hero-slider {
  position: relative;
  background: #0e0e0e;
  color: #fff;
  overflow: hidden;
}
.gs-hero-track { position: relative; }
.gs-hero-slide {
  display: none;
  opacity: 0;
  transition: opacity .6s ease;
}
.gs-hero-slide.gs-active {
  display: flex;
  opacity: 1;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}
.gs-hero-slider:has(.gs-hero-slide.gs-active) .gs-hero-slide:not(.gs-active) {
  position: absolute;
  top: 0; left: 0; right: 0;
  pointer-events: none;
}
.gs-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 5;
}
.gs-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .2s;
}
.gs-hero-dot:hover { background: rgba(255,255,255,.7); }
.gs-hero-dot.gs-active {
  background: var(--gs-red);
  transform: scale(1.25);
}
.gs-hero-dot:focus-visible {
  outline: 2px solid var(--gs-red);
  outline-offset: 3px;
}
.gs-tw {
  border-right: 3px solid var(--gs-red);
  padding-right: 4px;
  animation: gs-tw-blink 1s step-end infinite;
}
@keyframes gs-tw-blink {
  0%, 60% { border-color: var(--gs-red); }
  61%, 100% { border-color: transparent; }
}
@media (max-width: 880px) {
  .gs-hero-slide .gs-wrap { grid-template-columns: 1fr !important; gap: 32px !important; }
  .gs-hero-slide { padding: 64px 24px !important; min-height: 0 !important; }
  .gs-hero-dots { bottom: 16px; }
}

/* =============================================================
   SERVICE GRID — green-style design rendered in red
   ============================================================= */
.gs-svc-grid .gs-svc-card {
  position: relative;
}
.gs-svc-grid .gs-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.gs-svc-grid .gs-svc-card:hover h3 { color: var(--gs-red); }
@media (max-width: 1024px) {
  .gs-svc-grid .gs-svc-grid__inner { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .gs-svc-grid .gs-svc-grid__inner { grid-template-columns: 1fr !important; }
}

/* =============================================================
   HOMEPAGE — full design
   ============================================================= */

/* ---- 1. HERO ---- */
.gs-home-hero { position: relative; overflow: hidden; color: #fff; padding: 70px 24px; min-height: 540px; display: flex; align-items: center; }
.gs-home-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.85), rgba(20,20,20,.7)),
    url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1600&auto=format&fit=crop') center/cover no-repeat;
}
.gs-home-hero__wrap { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gs-home-hero__pill { display: inline-flex; align-items: center; gap: 8px; background: var(--gs-red); color: #fff; padding: 8px 18px; border-radius: 999px; font-size: 12.5px; font-weight: 700; margin-bottom: 22px; letter-spacing: .3px; }
.gs-home-hero__pill i { font-size: 13px; }
.gs-home-hero__h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 900; line-height: 1.1; margin: 0 0 22px; color: #fff; font-family: 'Ubuntu', sans-serif; }
.gs-home-hero__h1-red { color: var(--gs-red); display: block; margin-top: 6px; }
.gs-home-hero__sub { font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.85); max-width: 540px; margin: 0 0 28px; }
.gs-home-hero__media { position: relative; }
.gs-home-hero__media img { width: 100%; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.35); display: block; }
.gs-home-hero__rating { position: absolute; bottom: -22px; right: -10px; background: #fff; color: #111; border-radius: 999px; padding: 10px 18px 10px 12px; display: flex; gap: 12px; align-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.gs-home-hero__rating-icon { background: #fff; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,.12); }
.gs-home-hero__rating-num { font-size: 13.5px; }
.gs-home-hero__rating-num strong { font-weight: 900; }
.gs-home-hero__rating-sub { font-size: 11px; color: #777; }
.gs-btn-outline-light { border-color: rgba(255,255,255,.5) !important; color: #fff !important; background: transparent; }
.gs-btn-outline-light:hover { background: #fff; color: #111 !important; }
@media (max-width: 980px) {
  .gs-home-hero__wrap { grid-template-columns: 1fr; gap: 36px; }
  .gs-home-hero { padding: 50px 24px; min-height: 0; }
  .gs-home-hero__rating { bottom: -16px; right: 12px; }
}

/* ---- 2. TRUST STRIP ---- */
.gs-trust-strip { background: #fff; padding: 32px 24px; border-bottom: 1px solid #eee; }
.gs-trust-strip__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.gs-trust-strip__btns { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.gs-trust-strip__or { color: #999; font-size: 14px; font-weight: 600; }
.gs-trust-strip__cb { margin-top: 14px; font-size: 14px; color: #555; }
.gs-trust-strip__cb a { color: var(--gs-red); font-weight: 700; text-decoration: underline; }

/* ---- 3. RATING BAR ---- */
.gs-rating-bar { background: #f5f5f5; border-bottom: 3px solid var(--gs-red); padding: 18px 24px; }
.gs-rating-bar__inner { max-width: 1100px; margin: 0 auto; text-align: center; display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 15px; color: #444; }
.gs-rating-bar__num { color: var(--gs-red); font-weight: 900; font-size: 24px; }
.gs-rating-bar__stars { color: var(--gs-red); display: inline-flex; gap: 3px; font-size: 16px; }
.gs-rating-bar__sub { color: #777; font-size: 13.5px; }

/* ---- 4. REVIEWS ---- */
.gs-reviews { padding: 40px 24px 60px; background: #fff; }
.gs-reviews__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 18px; }
.gs-reviews__brand { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 22px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.gs-reviews__brand strong { font-size: 14px; }
.gs-reviews__brand-stars { color: #fbbc04; font-size: 14px; }
.gs-reviews__brand-count { font-size: 12.5px; color: #666; }
.gs-reviews__card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 18px; }
.gs-reviews__head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.gs-reviews__avatar { width: 36px; height: 36px; border-radius: 50%; background: #fdecec; color: var(--gs-red); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.gs-reviews__name { font-size: 13.5px; font-weight: 700; color: #111; }
.gs-reviews__stars { color: #fbbc04; font-size: 12px; }
.gs-reviews__text { font-size: 13.5px; color: #444; line-height: 1.55; margin: 0; }
.gs-btn-sm { padding: 7px 14px; font-size: 12.5px; }
@media (max-width: 980px) {
  .gs-reviews__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gs-reviews__inner { grid-template-columns: 1fr; }
}

/* ---- 7. WHY CHOOSE US ---- */
.gs-why-choose { padding: 80px 24px; background: #fff; }
.gs-why-choose__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gs-why-choose__text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin: 0 0 28px; font-family: 'Ubuntu', sans-serif; }
.gs-why-choose__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.gs-why-choose__card { background: #f5f5f5; border-radius: 10px; padding: 18px 16px; }
.gs-why-choose__icon { width: 38px; height: 38px; border-radius: 8px; background: var(--gs-red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 10px; }
.gs-why-choose__card h3 { font-size: 14.5px; font-weight: 800; margin: 0 0 6px; font-family: 'Ubuntu', sans-serif; color: #111; }
.gs-why-choose__card p { font-size: 13px; color: #555; margin: 0; line-height: 1.5; }
.gs-why-choose__media { position: relative; }
.gs-why-choose__media::before { content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 4px solid var(--gs-red); border-radius: 18px; z-index: 0; }
.gs-why-choose__media img { width: 100%; border-radius: 14px; position: relative; z-index: 1; display: block; }
@media (max-width: 980px) {
  .gs-why-choose__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- 8. TRUSTED & EXPERIENCED ---- */
.gs-trusted { padding: 80px 24px; background: #f5f5f5; }
.gs-trusted__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gs-trusted__media img { width: 100%; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.gs-trusted__text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin: 0 0 18px; font-family: 'Ubuntu', sans-serif; }
.gs-trusted__text > p { font-size: 14.5px; color: #555; line-height: 1.7; margin: 0 0 24px; }
.gs-trusted__feat { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.gs-trusted__feat-icon { width: 42px; height: 42px; border-radius: 10px; background: #fdecec; color: var(--gs-red); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.gs-trusted__feat h4 { font-size: 15.5px; font-weight: 800; margin: 0 0 4px; font-family: 'Ubuntu', sans-serif; color: #111; }
.gs-trusted__feat p { font-size: 13.5px; color: #555; margin: 0; line-height: 1.6; }
@media (max-width: 980px) {
  .gs-trusted__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- 9. SIX REASONS ---- */
.gs-six-reasons { padding: 80px 24px; background: #fff; }
.gs-six-reasons__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.gs-six-reasons__text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin: 0 0 24px; font-family: 'Ubuntu', sans-serif; }
.gs-six-reasons__list { border-top: 1px solid #eee; }
.gs-six-reasons__item { border-bottom: 1px solid #eee; }
.gs-six-reasons__item .gs-faq-q { padding: 14px 4px; font-size: 14px; color: #111; gap: 10px; }
.gs-six-reasons__num { color: var(--gs-red); font-weight: 900; font-size: 14px; flex-shrink: 0; }
.gs-six-reasons__title { flex: 1; font-weight: 700; }
.gs-six-reasons__item .gs-faq-a { padding: 0 4px 16px 30px; font-size: 13.5px; color: #555; line-height: 1.65; }
.gs-six-reasons__media { position: relative; }
.gs-six-reasons__media img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 8px 24px rgba(0,0,0,.10); }
.gs-six-reasons__overlay-btn { position: absolute; bottom: 18px; left: 18px; background: rgba(0,0,0,.85); color: #fff; padding: 12px 20px; border-radius: 8px; font-weight: 700; font-size: 13.5px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.gs-six-reasons__overlay-btn:hover { background: var(--gs-red); color: #fff; }
@media (max-width: 980px) {
  .gs-six-reasons__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- 10. SERVICE AREAS ---- */
.gs-svc-areas { padding: 80px 24px; background: #f5f5f5; }
.gs-svc-areas__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.gs-svc-areas__map { position: sticky; top: 100px; }
.gs-svc-areas__panel h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 900; margin: 0 0 12px; font-family: 'Ubuntu', sans-serif; }
.gs-svc-areas__sub { font-size: 14.5px; color: #555; margin: 0 0 24px; line-height: 1.6; }
.gs-svc-areas__tabs { display: flex; flex-wrap: wrap; gap: 0; padding: 0; background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; margin-bottom: 24px; overflow: hidden; }
.gs-svc-areas__tab { flex: 1; min-width: 140px; padding: 14px 16px; cursor: pointer; text-align: center; font-size: 14px; transition: all .15s; border-right: 1px solid #eee; }
.gs-svc-areas__tab:last-child { border-right: 0; }
.gs-svc-areas__tab.gs-active { background: var(--gs-red); color: #fff; }
.gs-svc-areas__tab:hover:not(.gs-active) { background: #f9f9f9; }
.gs-svc-areas__panel-list { display: none; padding: 18px 20px; background: #fff; border: 1px solid #e0e0e0; border-radius: 10px; margin-bottom: 14px; }
.gs-svc-areas__panel-list.gs-active { display: block; }
.gs-svc-areas__suburbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 16px; }
.gs-svc-areas__suburbs a { font-size: 13.5px; color: #444; text-decoration: none; padding: 4px 0; transition: color .15s; }
.gs-svc-areas__suburbs a:hover { color: var(--gs-red); }
.gs-svc-areas__remote { font-size: 13.5px; color: #555; margin: 18px 0 18px; line-height: 1.6; }
@media (max-width: 980px) {
  .gs-svc-areas__inner { grid-template-columns: 1fr; gap: 32px; }
  .gs-svc-areas__map { position: static; max-width: 320px; margin: 0 auto; }
  .gs-svc-areas__suburbs { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 11. CTA #2 ---- */
.gs-cta-2 { background: linear-gradient(135deg, #b80000 0%, var(--gs-red) 100%); padding: 60px 24px; color: #fff; }
.gs-cta-2__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.gs-cta-2__pre { display: inline-block; background: rgba(0,0,0,.25); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700; margin-bottom: 14px; letter-spacing: .3px; }
.gs-cta-2__text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; line-height: 1.2; margin: 0 0 14px; color: #fff; font-family: 'Ubuntu', sans-serif; }
.gs-cta-2__text > p { font-size: 14.5px; color: rgba(255,255,255,.9); line-height: 1.65; margin: 0 0 22px; max-width: 580px; }
.gs-cta-2__media img { width: 100%; border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.25); display: block; }
@media (max-width: 980px) {
  .gs-cta-2__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---- 13. ARTICLES ---- */
.gs-articles { padding: 80px 24px; background: #fff; }
.gs-articles__inner { max-width: 1240px; margin: 0 auto; }
.gs-articles__inner > h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; text-align: center; margin: 0 0 36px; font-family: 'Ubuntu', sans-serif; }
.gs-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gs-articles__card { background: #fff; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: transform .18s, box-shadow .18s; }
.gs-articles__card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.10); }
.gs-articles__thumb { display: block; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.gs-articles__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-articles__placeholder { width: 100%; height: 100%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 48px; }
.gs-articles__body { padding: 20px; }
.gs-articles__date { font-size: 12px; color: #999; margin-bottom: 8px; }
.gs-articles__date i { color: var(--gs-red); margin-right: 4px; }
.gs-articles__title { font-size: 16px; font-weight: 800; margin: 0 0 10px; line-height: 1.35; font-family: 'Ubuntu', sans-serif; }
.gs-articles__title a { color: #111; text-decoration: none; }
.gs-articles__title a:hover { color: var(--gs-red); }
.gs-articles__excerpt { font-size: 13.5px; color: #555; margin: 0 0 14px; line-height: 1.55; }
.gs-articles__more { color: var(--gs-red); font-weight: 700; font-size: 13px; text-decoration: none; }
.gs-articles__more i { font-size: 11px; margin-left: 2px; }
@media (max-width: 980px) {
  .gs-articles__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   FULL-WIDTH HOMEPAGE SECTIONS
   --------------------------------------------------------------
   Force every top-level homepage section to break out of any
   parent container (including Elementor's .elementor-container)
   and span the entire viewport width. Pairs with body{overflow-x:hidden}
   above to prevent horizontal scroll.
   ============================================================= */
.gs-home-hero,
.gs-trust-strip,
.gs-rating-bar,
.gs-reviews,
.gs-svc-grid,
.gs-cta-banner,
.gs-cta-2,
.gs-why-choose,
.gs-trusted,
.gs-six-reasons,
.gs-svc-areas,
.gs-faq-sec,
.gs-articles {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Inside an Elementor-stretched section, also kill the container
   max-width so the column itself is true full-width. */
.elementor-section.elementor-section-stretched > .elementor-container,
.elementor-section.elementor-top-section > .elementor-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}
.elementor-section.elementor-top-section > .elementor-container > .elementor-column {
  width: 100% !important;
}

/* Elementor's outer wrappers must not constrain width either */
.elementor.elementor-page,
[data-elementor-type="wp-page"],
#gs-main {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
