/*
Theme Name: GPS Flyers
Theme URI: https://gpsflyers.com
Description: Modern redesign of gpsflyers.com (Marketing360 import). Clean flat design, responsive, native forms.
Version: 1.0.0
Author: GPS Flyers
Text Domain: gpsflyers-modern
Requires at least: 6.0
Requires PHP: 8.1
*/

:root {
  --gps-blue: #1e73bf;
  --gps-blue-light: #e8f1fa;
  --gps-navy: #0b2a4a;
  --gps-red: #dd3333;
  --gps-dark: #111418;
  --gps-light: #f4f6f8;
  --gps-border: #e3e7ec;
  --gps-text: #33404d;
  --gps-text-light: #6c7a8a;
  --radius: 10px;
  --shadow: 0 6px 20px rgba(11, 42, 74, .08);
  --shadow-lg: 0 14px 40px rgba(11, 42, 74, .14);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gps-text);
  background-color: #dde2ea;
  background-image:
    linear-gradient(180deg, rgba(238, 240, 245, .94) 0%, rgba(233, 236, 242, .97) 100%);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; background: transparent; }
a { color: var(--gps-blue); text-decoration: none; }
a:hover { color: var(--gps-navy); }
p { margin: 0 0 0.75rem; }
h1, h2, h3, h4 { color: var(--gps-navy); line-height: 1.2; margin: 0 0 0.4rem; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h3 { font-size: 1.1rem; }
ul, ol { padding-left: 1.2rem; margin: 0 0 0.75rem; }
li { margin-bottom: 0.25rem; }

/* ---------------- Header ---------------- */
.gpsm-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(226, 236, 246, .95) 0%, rgba(200, 212, 224, .9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(200, 212, 224, .55);
  box-shadow: 0 2px 14px rgba(11, 42, 74, .08);
}
.gpsm-header::after {
  content: "";
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gps-red), var(--gps-blue), var(--gps-navy));
  opacity: .3;
}
.gpsm-header-inner {
  position: relative;
  max-width: var(--maxw); margin: .5rem auto; padding: .45rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: linear-gradient(180deg, rgba(226, 236, 246, .95) 0%, rgba(200, 212, 224, .9) 100%);
  border: 0; border-radius: 0;
  box-shadow: none;
}
/* grey accent lines matching the page border color, above and below the nav container */
.gpsm-header-inner::before,
.gpsm-header-inner::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #c8d1da 15%, #e3e7ec 50%, #c8d1da 85%, transparent);
  opacity: .85;
}
.gpsm-header-inner::before { top: 0; }
.gpsm-header-inner::after { bottom: 0; }
.gpsm-logo img { max-height: 46px; width: auto; display: block; }
.gpsm-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .95rem; flex-wrap: nowrap; }
.gpsm-nav ul li { position: relative; }
.gpsm-nav > ul > li > a { color: var(--gps-navy); font-weight: 700; font-size: 1.05rem; white-space: nowrap; padding: .3rem .1rem; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.gpsm-nav > ul > li > a:hover { color: var(--gps-blue); border-bottom-color: var(--gps-red); }
.gpsm-nav > ul > li.current-menu-item > a { color: var(--gps-blue); border-bottom-color: var(--gps-blue); }
.gpsm-nav .subNav { display: none; }
.gpsm-nav li:hover .subNav {
  display: block; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: #fff; border: 1px solid var(--gps-border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .4rem 0; z-index: 60;
}
.gpsm-nav .subNav li { padding: 0; }
.gpsm-nav .subNav a { display: block; padding: .4rem 1rem; font-weight: 500; font-size: .95rem; }
.gpsm-nav .button.navButton, .gpsm-nav a.navButton {
  background: var(--gps-red); color: #fff; padding: .42rem .95rem; border-radius: 50px; font-weight: 700; white-space: nowrap;
}
.gpsm-nav a.navButton:hover { background: var(--gps-dark); color: #fff; }
.gpsm-nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.gpsm-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gps-navy); margin: 5px 0; border-radius: 2px; }

/* Call Now button hover - show phone number */
.gpsm-call-now {
  position: relative;
  white-space: nowrap;
}
.gpsm-call-now::after {
  content: "951-588-7777";
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gps-navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}
.gpsm-call-now:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gpsm-call-now:hover {
  background: var(--gps-dark);
  color: #fff;
}

@media (max-width: 900px) {
  .gpsm-nav-toggle { display: block; }
  .gpsm-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--gps-border); box-shadow: var(--shadow); }
  .gpsm-nav.open { display: block; }
  .gpsm-nav ul { flex-direction: column; align-items: stretch; padding: 1rem 1.25rem; gap: .6rem; }
  .gpsm-nav .subNav { display: block; position: static; box-shadow: none; border: 0; padding: 0 0 0 .5rem; min-width: 0; background: none; }
  .gpsm-nav li:hover .subNav { position: static; box-shadow: none; }
}

/* ---------------- Hero / Front Page ---------------- */
/* Homepage inline newsletter signup next to Call/Quote buttons in content */
.blockText .gpsn-signup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: .5rem;
  background: var(--gps-navy);
  color: #fff;
  border-radius: 50px;
  padding: .35rem .75rem .35rem 1rem;
  box-shadow: 0 4px 14px rgba(11, 42, 74, .2);
  /* Pull up next to the buttons paragraph */
  margin-top: -3.8rem;
  float: right;
  clear: none;
}
.blockText .gpsn-signup .gpsn-signup-form { display: flex; align-items: center; gap: .4rem; }
.blockText .gpsn-signup .gpsn-signup-form br { display: none; }
.blockText .gpsn-signup .gpsn-signup-email {
  flex: 0 1 220px;
  max-width: 240px;
  padding: .35rem .7rem;
  font-size: .9rem;
  border-radius: 50px;
  border: 1px solid #b9c9d8;
  background: #fff;
  color: var(--gps-navy);
}
.blockText .gpsn-signup .gpsn-signup-btn {
  padding: .35rem 1rem;
  font-size: .85rem;
  border-radius: 50px;
  white-space: nowrap;
  background: #dd3333;
  color: #fff;
}
.blockText .gpsn-signup .gpsn-signup-btn:hover { background: #fff; color: #dd3333; }
.blockText .gpsn-signup .gpsn-signup-msg { display: none; }
.blockText .gpsn-signup .gpsn-signup-msg:not(:empty) { display: block; font-size: .8rem; text-align: center; margin-top: .3rem; }
@media (max-width: 560px) {
  .blockText .gpsn-signup {
    float: none;
    margin-top: .5rem;
    flex-direction: column;
    width: 100%;
    border-radius: 12px;
  }
  .blockText .gpsn-signup .gpsn-signup-email { flex: 1 1 100%; max-width: none; }
  .blockText .gpsn-signup .gpsn-signup-btn { width: 100%; }
}

/* Clearfix for the blockText to contain the floated signup */
.blockText::after { content: ""; display: table; clear: both; }

/* Page content text: Times New Roman 12pt */
.blockText,
.blockText p,
.blockText li,
.blockText td,
.blockText th,
.blockText blockquote,
.blockText ol,
.blockText ul {
  font-family: "Times New Roman", Times, serif !important;
  font-size: 12pt !important;
  line-height: 1.6;
}

.gpsm-hero {
  position: relative;
  background: linear-gradient(135deg, var(--gps-navy) 0%, #13416d 50%, var(--gps-blue) 100%);
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.25rem) 1.25rem;
  overflow: hidden;
}
.gpsm-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(221, 51, 51, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.gpsm-hero-inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center;
}
.gpsm-hero-content { text-align: center; }
.gpsm-hero-content h1 {
  color: #fff; font-size: clamp(1.9rem, 5vw, 2.8rem); line-height: 1.1; margin-bottom: .5rem;
}
.gpsm-hero-content .hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: rgba(255,255,255,.9); margin-bottom: 1.25rem;
}
.gpsm-hero-buttons { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.gpsm-hero-buttons .button {
  background: var(--gps-red); color: #fff; padding: .8rem 1.6rem; border-radius: 50px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(221, 51, 51, .35); transition: transform .15s, box-shadow .15s;
}
.gpsm-hero-buttons .button:hover { background: #fff; color: var(--gps-red); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(221, 51, 51, .45); }
.gpsm-hero-buttons .button.secondary { background: transparent; border: 2px solid #fff; box-shadow: none; }
.gpsm-hero-buttons .button.secondary:hover { background: #fff; color: var(--gps-navy); }
.gpsm-hero-visual { display: flex; justify-content: center; align-items: center; }
.gpsm-hero-visual img { max-width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

@media (max-width: 900px) {
  .gpsm-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .gpsm-hero-visual { order: -1; margin-bottom: 1rem; }
}

/* ---------------- Content ---------------- */
.gpsm-main {
  padding: clamp(.3rem, .6vw, .5rem) clamp(.6rem, 2vw, 1.5rem) 2rem;
  min-height: 62vh;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .76) 100%),
    url(assets/stars-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.primaryContent {
  max-width: calc(var(--maxw) * .85);
  margin: 0 auto;
  padding: clamp(.5rem, 1vw, .9rem) clamp(1.25rem, 4vw, 3.5rem) 3.25rem;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--gps-border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.primaryContent::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #111418, #9aa0a6 40%, #e3e7ec 50%, #9aa0a6 60%, #111418);
  pointer-events: none;
}
.blockContainer { padding: 0.35rem 0; }
.blockContainer .blockContainer, .blockContainer .blockWrap_bloghead { padding: 0; }
.blockImg img, .blockContent img, .blockInnerContent img { border-radius: var(--radius); background: transparent; }
.pageTitle { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.5rem; text-align: center; position: relative; padding-bottom: .4rem; }
.pageTitle::after {
  content: "";
  display: block; width: 64px; height: 3px; margin: .5rem 0 0;
  background: linear-gradient(90deg, var(--gps-red), var(--gps-blue));
  border-radius: 3px;
}
.blockText .pageTitle::after, .blockInnerContent .pageTitle::after { margin-left: 0; margin-right: auto; }
.gpsm-post-meta { font-size: .95rem; color: var(--gps-muted, #5a6b7b); margin: 0 0 1.25rem; }
/* per-section page imagery */
.gpsm-page-images {
  display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--gps-border);
}
.gpsm-page-figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--gps-light); border: 1px solid var(--gps-border); box-shadow: var(--shadow); }
.gpsm-page-figure img { display: block; width: 100%; height: auto; object-fit: cover; }
.gpsm-page-figure figcaption {
  padding: .55rem .85rem; font-size: .85rem; color: var(--gps-text-light); background: #fff;
  border-top: 1px solid var(--gps-border);
}
.gpsm-client-logos {
  display: grid; gap: 1.5rem 1.25rem; grid-template-columns: repeat(4, 1fr);
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--gps-border);
}
.logo-cell { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .45rem; text-align: center; }
.logo-box {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 72px; padding: .35rem;
  background: #f7f9fb; border-radius: 10px; overflow: hidden;
  transition: background .15s, transform .15s;
}
.logo-box:hover { background: #eef2f6; transform: translateY(-2px); }
.logo-box img { display: block; max-width: 82%; max-height: 58px; width: auto; height: auto; object-fit: contain; }
.logo-name { font-size: .82rem; font-weight: 700; color: var(--gps-navy); line-height: 1.25; }

@media (max-width: 820px) {
  .gpsm-client-logos { grid-template-columns: repeat(2, 1fr); }
}
.pageSubtitle { color: var(--gps-blue); font-size: clamp(1rem, 2.4vw, 1.4rem); margin-bottom: 1rem; text-align: center; }
.contentTitle { font-size: clamp(1.2rem, 2.6vw, 1.6rem); margin-top: 0.25rem; margin-bottom: 0.35rem; }
.blockText a, .blockInnerContent a { text-decoration: underline; text-underline-offset: 2px; }
.blockText a.button, .blockInnerContent a.button, .button {
  display: inline-block; background: var(--gps-red); color: #fff !important; text-decoration: none;
  padding: .65rem 1.5rem; border-radius: 50px; font-weight: 700; border: 0; cursor: pointer;
  box-shadow: 0 4px 12px rgba(221, 51, 51, .28); letter-spacing: .2px;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.button:hover { background: var(--gps-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(11, 42, 74, .28); }
table { border-collapse: collapse; width: 100%; margin: 0.75rem 0; }
table th, table td { border: 1px solid var(--gps-border); padding: .5rem .7rem; text-align: left; }
table th { background: var(--gps-light); }
.unstyledList { list-style: none; padding-left: 0; margin: 0 0 0.5rem; }
.unstyledList li { margin-bottom: 0.2rem; }

/* imported collections (side-by-side items) become a responsive grid */
.itemsCollectionContent { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.itemsCollectionContent.cols1, .itemsCollectionContent.oneColCenter { grid-template-columns: 1fr; }
.itemsCollectionContent.cols2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.itemsCollectionContent .item {
  background: var(--gps-light); border: 1px solid var(--gps-border); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.itemsCollectionContent .item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.itemsCollectionContent .item h2 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.itemsCollectionContent .item h2 a { text-decoration: none; }
.itemsCollectionContent .item .itemImg img { border-radius: 8px; margin-bottom: .5rem; }
.moreLink { font-weight: 700; }

/* services/home section */
.services-section { background: var(--gps-navy); border-radius: var(--radius); padding: 1.5rem 1.2rem; margin: 1rem 0; }
.services-section h2 { color: #fff; text-align: center; margin-bottom: 0.75rem; }
.services-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.service-box { background: #123a63; border: 1px solid #1e4a7e; border-radius: var(--radius); padding: 0.85rem 1rem; min-width: 200px; text-align: center; transition: transform .2s; }
.service-box:hover { transform: translateY(-4px); background: var(--gps-blue); }
.service-box h3 { margin: 0; font-size: 0.95rem; }
.service-box h3 a { color: #fff; text-decoration: none; }

/* contact / rfq info cards */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.85rem; margin: 1rem 0; }
.info-card {
  background: var(--gps-light); border: 1px solid var(--gps-border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center; transition: box-shadow .2s;
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card h3 { color: var(--gps-blue); margin-bottom: 0.4rem; font-size: 1.05rem; }
.info-card a { color: var(--gps-text); }
.info-card a:hover { color: var(--gps-blue); }

/* Selective centering - only where needed */
.blockText .contentTitle, .blockInnerContent .contentTitle { text-align: center; }
.blockText .pageTitle, .blockInnerContent .pageTitle { text-align: left; }
.blockText .pageSubtitle, .blockInnerContent .pageSubtitle { text-align: left; }
.blockText .button, .blockInnerContent .button { display: inline-block; }
.blockText > *:last-child, .blockInnerContent > *:last-child { margin-bottom: 0; }

/* Center sub-heading text below title on contact/quote pages */
.page-subtitle { text-align: left; color: var(--gps-text-light); margin-bottom: 1.5rem; }

/* Center forms */
.gpsf-form { max-width: 580px; margin-left: auto; margin-right: auto; }
.gpsf-submit { text-align: center; }

/* Hide breadcrumbs */
.breadcrumbs, .breadcrumbs-nav, .page-breadcrumbs, .breadcrumb, .nav-breadcrumb { display: none !important; }

/* Page content area design */
.page-content-wrapper {
  background: #fff;
  border: 1px solid var(--gps-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin: 1rem 0;
}
.page-header {
  border-bottom: 1px solid var(--gps-border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.page-header .pageTitle { margin-bottom: 0.25rem; text-align: left; }
.page-header .page-subtitle { margin-bottom: 0; text-align: left; color: var(--gps-text-light); }

/* Center sub-heading text below title on contact/quote pages */
.page-subtitle { text-align: left; color: var(--gps-text-light); margin-bottom: 1.5rem; }

/* Content area inside wrapper - align with title */
.page-content-wrapper > *:not(.page-header) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact/Quote page specific */
.contact-page .page-content-wrapper,
.quote-page .page-content-wrapper {
  background: linear-gradient(180deg, #fff 0%, var(--gps-blue-light) 100%);
}

/* ---------------- Blog listing ---------------- */
.gpsm-blog .pageTitle { margin-bottom: 1.4rem; }
.gpsm-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 1.25rem; }
.gpsm-post-card { display: block; background: #fff; border: 1px solid var(--gps-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.gpsm-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gpsm-post-card .card-body { padding: 1.1rem 1.3rem; }
.gpsm-post-card .card-date { color: #6c7a8a; font-size: .8rem; margin-bottom: 0.25rem; }
.gpsm-pagination { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.gpsm-pagination .page-numbers { padding: .4rem .8rem; border: 1px solid var(--gps-border); border-radius: 8px; background: #fff; color: var(--gps-navy); font-weight: 600; text-decoration: none; }
.gpsm-pagination .page-numbers.current { background: var(--gps-blue); color: #fff; border-color: var(--gps-blue); }

/* ---------------- Footer ---------------- */
.gpsm-footer { background: var(--gps-navy); color: #c8d4e0; margin-top: clamp(1.5rem, 3vw, 3rem); position: relative; }
.gpsm-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gps-red), var(--gps-blue), #fff);
  pointer-events: none;
}
.gpsm-footer-top {
  max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.25rem 1.25rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem;
}
.gpsm-footer h2 { color: #fff; font-size: 1.1rem; margin-bottom: 0.6rem; }
.gpsm-footer a { color: #c8d4e0; }
.gpsm-footer a:hover { color: #fff; }
.gpsm-footer ul { list-style: none; padding: 0; margin: 0; }
.gpsm-footer ul li { margin-bottom: 0.4rem; }
.gpsm-footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 0.85rem 1.25rem 1.25rem;
  border-top: 1px solid #1c4168; font-size: .8rem; color: #8fa3b5; text-align: center;
}
.gpsm-social a { display: inline-block; margin-right: .8rem; }
.gpsm-social svg { width: 22px; height: 22px; }

/* ---------------- Forms ---------------- */
.gps-form-area { margin: 0.75rem 0; }
.gpsf-form { background: #fff; border: 1px solid var(--gps-border); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.gpsf-form .form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-bottom: 1rem; }
.gpsf-form label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--gps-navy); font-size: .9rem; }
.gpsf-form input, .gpsf-form select, .gpsf-form textarea {
  width: 100%; padding: .65rem .85rem; border: 1px solid var(--gps-border); border-radius: 6px; font-size: 0.95rem; font-family: inherit; background: #fff; color: var(--gps-text);
}
.gpsf-form input:focus, .gpsf-form select:focus, .gpsf-form textarea:focus { outline: none; border-color: var(--gps-blue); box-shadow: 0 0 0 3px var(--gps-blue-light); }
.gpsf-form textarea { min-height: 120px; resize: vertical; }
.gpsf-form .form-submit { text-align: center; margin-top: 0.75rem; }
.gpsf-form .button { padding: .8rem 2.25rem; font-size: 1rem; }
.gpsf-form .gpsf-success { background: #e8f5e9; border-color: #4caf50; color: #2e7d32; padding: 0.85rem; border-radius: var(--radius); margin-bottom: 1rem; }
.gpsf-form .gpsf-error { background: #fdecea; border-color: var(--gps-red); color: #c62828; padding: 0.85rem; border-radius: var(--radius); margin-bottom: 1rem; }
.gpsf-form .hp-field { display: none !important; }

.scCredit { display: none; }
#scrollTopBtn { display: none; }