/* ============================================================
   Glazing Spark UI kit — site-specific layout & components.
   Pairs with ../../colors_and_type.css.
   Faithful to the production CSS rules in site/styles/style.css,
   condensed and cleaned up.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;1,400&family=Playfair+Display:wght@600&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--gs-font-sans);
  color: var(--gs-text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }

.container { max-width: 1500px; width: 100%; padding: 20px 30px; margin: 0 auto; }
.triple { width: calc(33.333% - 14px); }
.double { width: calc(50% - 12px); }
.bold { font-weight: 700; } .italic { font-style: italic; }
.colourRed { color: var(--gs-red); }
.btn-center { text-align: center; }

/* ===== Top contact strip (fixed) ===== */
.gs-topbar {
  background: var(--gs-navy); color: #fff;
  position: sticky; top: 0; z-index: 30;
  min-height: 48px; display: flex; justify-content: center;
}
.gs-topbar .container { padding: 0 20px; }
.gs-topbar nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 12px; gap: 20px; flex-wrap: wrap; }
.gs-topbar .hours p { color: #fff; font-size: 12px; line-height: 1.2; margin: 0; }
.gs-topbar .contact { display: flex; gap: 4px; align-items: center; }
.gs-topbar .contact a { display: inline-flex; align-items: center; gap: 4px; color: #fff; padding: 6px 6px; min-height: 36px; }
.gs-topbar .contact a:hover { color: #fff; opacity: .85; }
.gs-topbar .fa-whatsapp { color: greenyellow; }

/* ===== Main nav (sticky directly under topbar) ===== */
.gs-nav {
  background: var(--gs-grey-100); color: var(--gs-navy);
  position: sticky; top: 48px; z-index: 29;
  border-bottom: 1px solid var(--gs-border);
}
.gs-nav .container { padding: 14px 20px; }
.gs-nav .row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.gs-logo { display: inline-flex; align-items: center; gap: 10px; background: var(--gs-navy); color: #fff; padding: 6px 12px; font-family: var(--gs-font-display); font-size: 17px; line-height: 1.1; letter-spacing: 0.02em; cursor: pointer; }
.gs-logo img { width: 30px; height: 30px; border-radius: 50%; background: #fff; }
.gs-tagline { font-family: var(--gs-font-script); color: var(--gs-red); font-size: 19px; font-style: italic; margin-left: 14px; }
.gs-nav-links ul { list-style: none; display: flex; gap: 4px; }
.gs-nav-links li a { display: inline-block; padding: 8px 10px; font-size: 14px; font-weight: 600; color: var(--gs-navy); position: relative; }
.gs-nav-links li a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; background: var(--gs-red); transform: scaleX(0); transition: transform .4s ease; }
.gs-nav-links li a:hover::after, .gs-nav-links li.active a::after { transform: scaleX(1); }
.gs-nav-links li.active a { color: var(--gs-navy); }
.gs-nav-burger { display: none; font-size: 22px; color: var(--gs-navy); cursor: pointer; background: none; border: 0; }
@media (max-width: 940px) {
  .gs-tagline { display: none; }
  .gs-nav-links { display: none; }
  .gs-nav-links.open { display: block; position: absolute; top: 100%; right: 0; background: var(--gs-grey-200); padding: 12px 20px; border-top: 1px solid var(--gs-border); }
  .gs-nav-links.open ul { flex-direction: column; gap: 0; }
  .gs-nav-burger { display: inline-flex; }
}

/* ===== Buttons ===== */
.gs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 6px; cursor: pointer;
  font-size: 16px; font-weight: 600; text-decoration: none;
  border: 2px solid transparent; transition: all 1s ease;
  font-family: inherit;
}
.gs-btn.primary { background: var(--gs-navy); color: #fff; border-color: var(--gs-navy); font-weight: 500; }
.gs-btn.primary:hover { background: var(--gs-red); border-color: var(--gs-red); color: #fff; }
.gs-btn.outline { background: #fff; color: var(--gs-navy); border-color: var(--gs-red); }
.gs-btn.outline:hover { background: var(--gs-red); border-color: var(--gs-red); color: #fff; }
.gs-btn.reverse { background: #fff; color: var(--gs-navy); border-color: #fff; }
.gs-btn.reverse:hover { background: var(--gs-red); border-color: var(--gs-red); color: #fff; }
.gs-btn .fa-whatsapp { color: greenyellow; }

/* ===== Hero ===== */
.gs-hero { display: flex; justify-content: center; }
.gs-hero .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 40px 30px; }
.gs-hero .text-box { flex: 1; max-width: 460px; }
.gs-hero h1 { font-size: 28px; color: var(--gs-navy); margin-bottom: 14px; line-height: 1.25; font-weight: 700; }
.gs-hero p { font-size: 16px; margin-bottom: 20px; color: var(--gs-text); }
.gs-hero .cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.gs-hero .image-box { flex: 1; display: flex; flex-direction: column; align-items: center; }
.gs-hero .written { font-family: var(--gs-font-script); color: var(--gs-red); font-style: italic; font-size: 26px; line-height: 1; margin-bottom: -10px; z-index: 1; align-self: center; }
.gs-hero .van { align-self: flex-end; max-width: 420px; }
.gs-hero .ratings { display: flex; gap: 18px; margin-top: 6px; }
.gs-hero .ratings a { display: inline-block; }
.gs-hero .ratings img { width: 100px; }
.gs-hero .ratings span { display:block; font-size:10px; color:#000; margin-left:22px; }

@media (max-width: 856px) {
  .gs-hero .container { flex-direction: column; text-align: center; }
  .gs-hero .text-box { max-width: 100%; }
  .gs-hero .cta-row { justify-content: center; }
  .gs-hero .ratings { justify-content: center; }
}

/* ===== Red banner ===== */
.gs-banner { background: var(--gs-red); color: #fff; text-align: center; padding: 18px 20px; }
.gs-banner h2 { color: #fff; font-size: 18px; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 4px; }
.gs-banner p { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; margin: 0; }

/* ===== Section base ===== */
.gs-section { display: flex; justify-content: center; padding: 30px 20px; }
.gs-section.grey { background: var(--gs-grey-200); }
.gs-section.blue { background: var(--gs-navy); color: #fff; }
.gs-section .container .text { text-align: center; margin-bottom: 0; }
.gs-section h2 { color: var(--gs-navy); }
.gs-section.blue h2, .gs-section.blue h3, .gs-section.blue p { color: #fff; }
.gs-section .steps { display: flex; gap: 20px; margin: 50px 0 30px; align-items: stretch; flex-wrap: wrap; justify-content: center; }
.gs-section .step { background: #fff; padding: 20px; border-top: 5px solid var(--gs-red); border-radius: 8px; flex: 1; min-width: 240px; text-align: center; }
.gs-section .step h3 { color: var(--gs-navy); font-size: 16px; margin: 0 0 10px; }
.gs-section .step p { font-size: 14px; margin: 0; color: var(--gs-text); line-height: 1.5; }
.gs-section .step .num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--gs-red); color: #fff; border-radius: 50px; font-weight: 700; font-size: 18px; margin: -45px auto 14px; }
.gs-section .note { text-align: center; padding-top: 20px; font-size: 14px; }

/* ===== About card ===== */
.gs-about { padding: 30px 20px; display: flex; justify-content: center; text-align: center; }
.gs-about .container { max-width: 800px; padding: 20px 0; }
.gs-about h2 { color: var(--gs-navy); }
.gs-about h3 { color: var(--gs-red); }
.gs-about .mission { background: var(--gs-grey-200); padding: 30px; border-radius: 8px; margin-top: 40px; position: relative; }
.gs-about .badge { width: 80px; position: absolute; top: -31px; right: -19px; transform: rotate(15deg); }
@media (max-width: 856px) { .gs-about .badge { right: -5px; } }

/* ===== Services grid ===== */
.gs-services .container { padding: 30px 20px; }
.gs-services .grid { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }
.gs-services .card { background: var(--gs-grey-200); padding: 20px 20px 14px; border-radius: 8px; width: calc(33.333% - 14px); display: flex; flex-direction: column; }
@media (max-width: 940px) { .gs-services .card { width: calc(50% - 10px); } }
@media (max-width: 570px) { .gs-services .card { width: 100%; } }
.gs-services .img { margin: -20px -20px 14px; position: relative; }
.gs-services .img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gs-services .img .before, .gs-services .img .after { position: absolute; top: 8px; background: #fff; padding: 5px 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: #333; font-weight: 600; }
.gs-services .img .before { left: 8px; } .gs-services .img .after { right: 8px; }
.gs-services h3 { color: var(--gs-navy); font-size: 18px; margin: 0 0 8px; line-height: 1.3; }
.gs-services .from { font-style: italic; font-size: 14px; font-weight: 600; color: var(--gs-red); }
.gs-services p { font-size: 14px; line-height: 1.5; color: var(--gs-text); margin: 0 0 8px; }
.gs-services .findout { text-align: center; padding-top: 24px; }

/* ===== FAQ accordion ===== */
.gs-faq h3 { color: var(--gs-text); text-align: center; }
.gs-faq .top-three { max-width: 1010px; margin: 30px auto; }
.gs-faq .top-three .step h4 { color: var(--gs-navy); font-size: 16px; margin: 0 0 8px; }
.gs-faq .top-three .step p { color: var(--gs-text); font-size: 14px; margin: 0; }
.gs-faq .accordion-wrap { max-width: 900px; margin: 20px auto; }
.gs-faq .accordion { list-style: none; padding: 0; margin: 0; }
.gs-faq .accordion li { position: relative; padding: 18px 50px 18px 20px; margin: 0 0 10px; border: 1px dotted #bbb; background: var(--gs-grey-300); cursor: pointer; }
.gs-faq .accordion h2 { font-size: 16px; line-height: 1.2; font-weight: 600; color: var(--gs-navy); margin: 0; }
.gs-faq .accordion p { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: var(--gs-text); border-top: 1px solid #ccc; padding-top: 10px; max-height: 400px; overflow: hidden; transition: max-height .3s ease, margin-top .25s, opacity .25s; }
.gs-faq .accordion li.closed p { max-height: 0; margin-top: 0; padding-top: 0; border-top-color: transparent; opacity: 0; }
.gs-faq .accordion .glyph { position: absolute; right: 24px; top: 22px; width: 14px; height: 14px; }
.gs-faq .accordion .glyph::before, .gs-faq .accordion .glyph::after { content: ""; position: absolute; background: var(--gs-red); width: 3px; height: 9px; left: 6px; top: 2px; transition: transform .25s ease; }
.gs-faq .accordion .glyph::before { transform: translate(-2px,0) rotate(45deg); }
.gs-faq .accordion .glyph::after { transform: translate(2px,0) rotate(-45deg); }
.gs-faq .accordion li.closed .glyph::before { transform: translate(2px,0) rotate(45deg); }
.gs-faq .accordion li.closed .glyph::after { transform: translate(-2px,0) rotate(-45deg); }

/* ===== Reviews ===== */
.gs-reviews .container { display: flex; flex-direction: column; align-items: center; }
.gs-reviews .summary { font-size: 18px; font-weight: 500; }
.gs-reviews .summary .stars { color: var(--gs-star); font-size: 20px; }
.gs-reviews .platforms { display: flex; gap: 18px; margin: 12px 0 20px; }
.gs-reviews .platforms img { width: 100px; }
.gs-reviews .carousel { width: 100%; max-width: 460px; position: relative; min-height: 230px; }
.gs-reviews .slide { background: #fff; border-radius: 8px; padding: 24px; border-top: 5px solid var(--gs-red); position: absolute; inset: 0; opacity: 0; transform: translateX(32px); transition: opacity .5s, transform .5s; pointer-events: none; }
.gs-reviews .slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.gs-reviews .slide .head { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
.gs-reviews .avatar { width: 44px; height: 44px; border-radius: 12px; background: var(--gs-navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; letter-spacing: 1px; }
.gs-reviews .meta { flex: 1; }
.gs-reviews .name { color: var(--gs-red); font-family: 'Playfair Display', Georgia, serif; font-size: 17px; font-weight: 600; letter-spacing: -.3px; }
.gs-reviews .stars-row { color: var(--gs-red); font-size: 15px; text-align: right; }
.gs-reviews .date { color: #333344; font-size: 11px; letter-spacing: .5px; text-align: right; margin-top: 4px; }
.gs-reviews .quote { color: var(--gs-text); font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 15px; line-height: 1.4; margin: 12px 0 0; }
.gs-reviews .dots { display: flex; gap: 8px; justify-content: center; margin: 16px 0; }
.gs-reviews .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; opacity: .35; cursor: pointer; transition: transform .25s, opacity .25s; }
.gs-reviews .dot.active { opacity: 1; transform: scale(1.4); }

/* ===== Contact ===== */
.gs-contact .container { padding-bottom: 40px; }
.gs-contact h2 { text-align: center; margin: 20px 0 30px; }
.gs-contact .row { display: flex; gap: 30px; flex-wrap: wrap; }
.gs-contact .info, .gs-contact .form { flex: 1; min-width: 280px; }
.gs-contact h3 { color: var(--gs-text); font-size: 18px; margin: 18px 0 8px; }
.gs-contact .info a { display: inline-flex; gap: 6px; align-items: center; color: var(--gs-text); font-weight: 600; }
.gs-contact .info a i { color: var(--gs-red); }
.gs-form { background: var(--gs-grey-200); padding: 28px; border-radius: 10px; }
.gs-form .field { margin-bottom: 14px; }
.gs-form label { font-size: 14px; display: block; margin-bottom: 5px; color: var(--gs-text); }
.gs-form .req { color: var(--gs-red); }
.gs-form .opt { font-style: italic; font-size: 12px; color: var(--gs-text-soft); }
.gs-form input, .gs-form textarea { width: 100%; padding: 13px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; background: #fff; font-family: inherit; }
.gs-form textarea { height: 100px; resize: vertical; }
.gs-form .gs-btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ===== Footer ===== */
.gs-footer { background: var(--gs-navy); color: #fff; padding: 40px 20px 20px; }
.gs-footer .container { padding: 20px 30px; }
.gs-footer .top { text-align: center; margin-bottom: 30px; }
.gs-footer .top .lockup { display: inline-flex; align-items: center; gap: 12px; background: var(--gs-navy); padding: 5px 10px; font-family: var(--gs-font-display); font-size: 22px; letter-spacing: .02em; }
.gs-footer .top .lockup img { width: 35px; height: 35px; border-radius: 50%; background: #fff; }
.gs-footer .grid { display: flex; gap: 30px; flex-wrap: wrap; justify-content: space-between; margin-bottom: 30px; }
.gs-footer .col { flex: 1; min-width: 220px; }
.gs-footer h3 { color: #fff; font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.gs-footer p { color: #fff; font-size: 14px; margin: 0 0 12px; opacity: .92; }
.gs-footer a { color: #fff; }
.gs-footer .col a { display: inline-flex; align-items: center; gap: 6px; font-weight: 400; font-size: 14px; margin: 0 0 6px; }
.gs-footer .col a .fa-whatsapp { color: greenyellow; }
.gs-footer .social { display: flex; gap: 8px; margin-bottom: 18px; }
.gs-footer .social a { width: 44px; height: 44px; border: 1px solid #fff; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; transition: background .25s, color .25s; }
.gs-footer .social a:hover { background: var(--gs-grey-200); color: var(--gs-navy); border-color: var(--gs-navy); }
.gs-footer .payments { display: flex; gap: 6px; flex-wrap: wrap; max-width: 240px; }
.gs-footer .payments img { width: 40px; height: 26px; background: #fff; object-fit: contain; padding: 2px; border-radius: 2px; }
.gs-footer .verified { text-align: center; margin: 18px 0 14px; }
.gs-footer .verified .creds { display: inline-flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; }
.gs-footer .verified img { height: 40px; background: #fff; padding: 4px; border-radius: 4px; }
.gs-footer .policies { display: flex; justify-content: center; gap: 8px 18px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); }
.gs-footer .policies a { font-size: 13px; opacity: .85; }

/* ===== Modal ===== */
.gs-modal { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn .25s ease; }
.gs-modal .panel { background: #fff; border-radius: 10px; max-width: 500px; width: 100%; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; animation: slideIn .3s ease; }
.gs-modal .close { position: absolute; right: 16px; top: 12px; font-size: 28px; cursor: pointer; color: var(--gs-text); background: none; border: 0; line-height: 1; }
.gs-modal .close:hover { color: var(--gs-red); }
.gs-modal h3 { color: var(--gs-navy); margin: 0 0 6px; }
.gs-modal .panel > p { margin-bottom: 14px; }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes slideIn { from { transform: translateY(-30px); opacity:0 } to { transform: translateY(0); opacity:1 } }

/* ===== Misc helpers ===== */
.gs-spacer-sm { height: 14px; }
.gs-spacer { height: 30px; }

/* ===== Service detail page components ===== */

/* Breadcrumbs */
.gs-breadcrumbs { background: var(--gs-grey-200); padding: 10px 14px; border-radius: 4px; }
.gs-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; margin: 0; padding: 0; }
.gs-breadcrumbs li { color: var(--gs-text); }
.gs-breadcrumbs li + li::before { content: "\203a"; margin-right: 6px; color: #888; }
.gs-breadcrumbs a { color: var(--gs-navy); font-weight: 600; }
.gs-breadcrumbs a:hover { color: var(--gs-red); }
.gs-breadcrumbs [aria-current="page"] { color: var(--gs-text); font-weight: 600; }

/* Service tile (new preferred grid card) */
.gs-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.gs-tile {
  background: #fff; border: 1px solid var(--gs-border); border-top: 5px solid var(--gs-red);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  cursor: pointer;
}
.gs-tile:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.gs-tile .img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #eee; }
.gs-tile .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-tile .price-pill {
  position: absolute; top: 10px; right: 10px;
  background: var(--gs-red); color: #fff;
  padding: 5px 11px; border-radius: 4px;
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em;
}
.gs-tile .body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.gs-tile .body h3 { color: var(--gs-navy); font-size: 18px; margin: 0 0 6px; font-weight: 700; line-height: 1.3; }
.gs-tile .body p { color: var(--gs-text); font-size: 14px; line-height: 1.55; margin: 0 0 12px; }
.gs-tile .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gs-tile .cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--gs-red); font-weight: 700; font-size: 14px; }
.gs-tile:hover .cta { text-decoration: underline; }

/* Tag pill */
.gs-tag {
  background: var(--gs-grey-100); color: var(--gs-navy);
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .03em;
}

/* Service detail split */
.gs-service-split {
  display: flex; gap: 28px; align-items: flex-start; justify-content: center;
  padding: 24px 0; border-top: 1px solid var(--gs-border); border-bottom: 1px solid var(--gs-border);
  max-width: 920px; margin: 0 auto;
}
.gs-service-split .img-wrap { flex: 0 0 320px; max-width: 320px; position: relative; }
.gs-service-split .img-wrap img { width: 100%; height: auto; border-radius: 6px; display: block; }
.gs-service-split .price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--gs-red); color: #fff;
  padding: 6px 12px; border-radius: 4px;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
}
.gs-service-split .body { flex: 1; }
.gs-service-split .body h2 { color: var(--gs-navy); font-size: 22px; margin: 0 0 10px; }
.gs-service-split .body p { font-size: 15px; line-height: 1.55; margin: 0 0 12px; }
.gs-service-split .body ul { list-style: none; padding: 6px 0 0; margin: 0; }
.gs-service-split .body li { color: var(--gs-text); margin-bottom: 8px; line-height: 1.5; font-size: 14px; }
.gs-service-split .body li::before { content: "\2713 "; color: var(--gs-red); font-weight: 700; }
@media (max-width: 940px) { .gs-service-split { flex-direction: column; } .gs-service-split .img-wrap { max-width: 100%; flex: none; } }

/* Pricing table */
.gs-price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; }
.gs-price-table th, .gs-price-table td { padding: 12px 14px; border-bottom: 1px solid var(--gs-border); text-align: left; font-size: 15px; }
.gs-price-table th { background: var(--gs-navy); color: #fff; font-weight: 600; }
.gs-price-table tr:last-child td { border-bottom: none; }
.gs-price-table td:nth-child(2), .gs-price-table th:nth-child(2) {
  white-space: nowrap; text-align: right; color: var(--gs-red); font-weight: 700;
}
.gs-price-table a { color: var(--gs-navy); font-weight: 600; }
.gs-price-table a:hover { color: var(--gs-red); text-decoration: underline; }
.gs-price-footnote { font-size: 12px; color: #666; margin-top: 10px; text-align: center; }

/* Symptom chooser */
.gs-symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 570px) { .gs-symptom-grid { grid-template-columns: 1fr; } }
.gs-symptom {
  background: #fff; padding: 14px 16px; border-radius: 6px;
  border-top: 3px solid var(--gs-navy);
}
.gs-symptom .lead { color: var(--gs-navy); font-weight: 700; font-size: 14px; margin: 0 0 4px; line-height: 1.4; }
.gs-symptom a { color: var(--gs-red); font-weight: 700; font-size: 14px; }
.gs-symptom a:hover { text-decoration: underline; }

/* Related services */
.gs-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 570px) { .gs-related-grid { grid-template-columns: 1fr; } }
.gs-related {
  display: block; background: #fff; border-top: 5px solid var(--gs-red);
  border-radius: 8px; padding: 16px; color: var(--gs-navy); text-decoration: none;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  cursor: pointer;
}
.gs-related:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.gs-related h3 { color: var(--gs-navy); font-size: 16px; margin: 0 0 4px; font-weight: 700; }
.gs-related p { color: var(--gs-text); font-size: 13px; margin: 4px 0 8px; line-height: 1.5; }
.gs-related .chev { color: var(--gs-red); font-weight: 700; font-size: 13px; }

/* Footer sitemap (sits above the navy footer's credentials block) */
.gs-footer-sitemap { background: var(--gs-navy); padding: 28px; display: flex; flex-wrap: wrap; gap: 24px; }
.gs-footer-sitemap .col { flex: 1; min-width: 200px; }
.gs-footer-sitemap h3 { color: #fff; margin: 0 0 10px; font-size: 16px; font-weight: 700; }
.gs-footer-sitemap ul { list-style: none; padding: 0; margin: 0; }
.gs-footer-sitemap li { padding: 3px 0; }
.gs-footer-sitemap a { color: rgba(255, 255, 255, .85); font-weight: 500; font-size: 14px; }
.gs-footer-sitemap a:hover { color: #fff; text-decoration: underline; }
.gs-footer-sitemap p { color: rgba(255, 255, 255, .85); font-size: 14px; line-height: 1.55; margin: 0; }

/* Hide focus rings only for mouse users */
:focus-visible { outline: 2px solid var(--gs-red); outline-offset: 2px; }
