/* ==========================================================================
   Gulf Legacy Publications — pages.css

   Component + page layer for the interior pages (about / service-1 /
   service-2 / contact / reviews / thank-you) and the shared navigation
   updates (centered menu, Services hover dropdown, mobile offcanvas) and
   the global #contactModal.

   Loaded AFTER assets/css/style.css + assets/css/responsive.css, so the
   home page keeps its own look; every selector here is namespaced `gp-`
   (content) or scoped under `.glp-navbar` / `.glp-footer` (chrome) so it
   never collides with the home-page classes in style.css.

   Bootstrap 5.3 owns the grid + utilities. Palette per brief:
     headings  #00236F   subheads #1A1B21   body #444651
     soft bg   #FAF8FF   white    #FFFFFF   navy #00236F
   ========================================================================== */

:root {
  --gp-navy: #00236F;
  --gp-navy-hover: #001B54;
  --gp-subhead: #1A1B21;
  --gp-body: #444651;
  --gp-soft: #FAF8FF;
  --gp-line: #C5C5D3;
  --gp-line-2: #EEF0F6;
  --gp-muted: #8A8D9B;
  --gp-star: #E8A400;
  --gp-shadow: 0 18px 44px rgba(0, 35, 111, .09);
  --gp-shadow-lg: 0 26px 60px rgba(0, 35, 111, .16);
}

/* ==========================================================================
   1. NAVIGATION — centered menu, hover dropdown, mobile offcanvas
   (extends .glp-navbar already skinned in style.css)
   ========================================================================== */
.glp-navbar {
  position: sticky;
  top: 0;
  z-index: 1040;
}

.glp-navbar .navbar-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gp-body);
  padding: 0.5rem 0.95rem;
}

.glp-navbar .navbar-nav .nav-link:hover,
.glp-navbar .navbar-nav .nav-link:focus,
.glp-navbar .navbar-nav .nav-link.active {
  color: var(--gp-navy);
}

/* Services dropdown */
.glp-navbar .dropdown-menu {
  border: 1px solid var(--gp-line);
  border-radius: 8px;
  padding: 0.35rem;
  margin-top: 0.5rem;
  min-width: 12rem;
  box-shadow: 0 16px 34px rgba(0, 35, 111, .12);
}

.glp-navbar .dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gp-body);
  border-radius: 5px;
  padding: 0.55rem 0.8rem;
}

.glp-navbar .dropdown-item:hover,
.glp-navbar .dropdown-item:focus,
.glp-navbar .dropdown-item.active {
  background-color: var(--gp-soft);
  color: var(--gp-navy);
}

.glp-navbar .dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.1em;
}

/* hover intent on desktop (JS also calls show/hide for keyboard parity) */
@media (min-width: 992px) {
  .glp-navbar .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }

  .glp-navbar .nav-item.dropdown>.dropdown-menu {
    margin-top: 0;
  }

  /* invisible bridge so the pointer can travel from link to menu */
  .glp-navbar .nav-item.dropdown {
    padding-bottom: 0.55rem;
    margin-bottom: -0.55rem;
  }
}

/* right-aligned CTA */
.glp-navbar .glp-nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.55rem 1.3rem;
  white-space: nowrap;
  text-transform: none;
}

/* mobile offcanvas drawer */
.glp-offcanvas {
  --bs-offcanvas-width: 320px;
}

.glp-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--gp-line);
}

.glp-offcanvas .offcanvas-title {
  color: var(--gp-navy);
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 991.98px) {
  .glp-offcanvas .navbar-nav {
    width: 100%;
    gap: 0.1rem;
  }

  .glp-offcanvas .nav-link {
    padding: 0.7rem 0.25rem;
    font-size: 1rem;
  }

  .glp-offcanvas .dropdown-menu {
    display: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 0.25rem 0.9rem;
    margin: 0;
    min-width: 0;
  }

  .glp-offcanvas .dropdown-menu.show {
    display: block;
  }

  .glp-offcanvas .glp-nav-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

/* keep the CTA pinned right on desktop, inline on mobile */
@media (min-width: 992px) {
  .glp-offcanvas .offcanvas-body {
    align-items: center;
  }

  .glp-offcanvas .glp-nav-cta {
    margin-left: auto;
  }
}

/* ==========================================================================
   2. SHARED PRIMITIVES
   ========================================================================== */
.gp-section {
  padding: clamp(3rem, 2rem + 4.5vw, 5.5rem) 0;
}

.gp-section--tight {
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0;
}

.gp-bg-soft {
  background-color: #F6FAFE;
}

.gp-bg-white {
  background-color: #F0F4F8;
}

.gp-h1 {
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--gp-navy);
}

.gp-h2 {
  font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--gp-navy);
}

.gp-h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gp-navy);
}

.gp-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gp-body);
}

.gp-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gp-body);
}

.gp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gp-muted);
  margin-bottom: 0.9rem;
}

.gp-section-head {
  max-width: 64rem;
  margin: 0 auto clamp(2.25rem, 1.5rem + 2vw, 3.25rem);
  text-align: center;
}

.gp-section-head .gp-h2 {
  margin-bottom: 0.85rem;
}

.gp-section-head p {
  margin: 0;
  color: var(--gp-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* buttons — mirror the home brand buttons but self-contained */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.gp-btn-primary {
  background-color: var(--gp-navy);
  border-color: var(--gp-navy);
  color: #fff;
}

.gp-btn-primary:hover,
.gp-btn-primary:focus-visible {
  background-color: var(--gp-navy-hover);
  border-color: var(--gp-navy-hover);
  color: #fff;
}

.gp-btn-outline {
  background-color: #fff;
  border-color: var(--gp-line);
  color: var(--gp-subhead);
}

.gp-btn-trans {
  background-color: transparent;
  border: 1px solid #505F76;
  color: #505F76;
}

.gp-btn-outline:hover,
.gp-btn-outline:focus-visible {
  border-color: var(--gp-navy);
  color: var(--gp-navy);
}

.gp-btn-lg {
  padding: 0.95rem 1.9rem;
}

.gp-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gp-navy);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.gp-learn-more svg {
  width: 14px;
  height: 14px;
  transition: transform .15s ease;
}

.gp-learn-more:hover {
  color: var(--gp-navy-hover);
}

.gp-learn-more:hover svg {
  transform: translateX(3px);
}

/* media placeholder (swap for real photography) */
.gp-media {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(0, 35, 111, .10), rgba(0, 35, 111, .02)),
    repeating-linear-gradient(45deg, #f3f1fa 0 16px, #eeecf7 16px 32px);
  box-shadow: var(--gp-shadow);
}

.gp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-media__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.35rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 15, 48, .82), rgba(0, 15, 48, 0));
}

.gp-media--mono {
  filter: grayscale(1) contrast(.97);
}

/* ==========================================================================
   3. ABOUT — hero + stats
   ========================================================================== */
.gp-hero {
  padding: clamp(2.5rem, 2rem + 4vw, 5rem) 0;
}

.gp-hero .gp-h1 {
  margin-bottom: 1.25rem;
}

.gp-hero p {
  max-width: 34rem;
}

.gp-hero-media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background:
    linear-gradient(135deg, rgba(0, 35, 111, .12), rgba(0, 35, 111, .03)),
    repeating-linear-gradient(45deg, #f1eff9 0 18px, #eae7f4 18px 36px);
  box-shadow: var(--gp-shadow-lg);
}

.gp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gp-line);
}

.gp-stat__num {
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.15rem);
  font-weight: 800;
  color: var(--gp-navy);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.gp-stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-muted);
}

/* ==========================================================================
   4. FEATURE CARDS  (Why Choose Us / Comprehensive Services)
   ========================================================================== */
.gp-feature {
  height: 100%;
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 10px;
  padding: 1.9rem 1.6rem;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.gp-feature:hover {
  box-shadow: var(--gp-shadow);
  transform: translateY(-3px);
  border-color: var(--gp-line-2);
}

.gp-feature__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--gp-soft);
  color: var(--gp-navy);
  margin-bottom: 1.2rem;
}

.gp-feature__icon svg {
  width: 22px;
  height: 22px;
}

.gp-feature__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gp-subhead);
  margin-bottom: 0.55rem;
}

.gp-feature__text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--gp-body);
  margin: 0 0 1rem;
}

.gp-feature__text:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   5. PUBLICATION JOURNEY  — all white on load, navy on hover
   ========================================================================== */
.gp-journey-card {
  position: relative;
  height: 100%;
  background: #FFFFFF;
  /* initial state — every card */
  border: 1px solid var(--gp-line);
  border-radius: 10px;
  padding: 1.9rem 1.5rem 1.7rem;
  overflow: hidden;
  transition: background-color .2s ease, border-color .2s ease,
    transform .2s ease, box-shadow .2s ease;
}

.gp-journey-card__num {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: #EDEFF6;
  transition: color .2s ease;
}

.gp-journey-card__title {
  position: relative;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gp-subhead);
  margin-bottom: 0.5rem;
  transition: color .2s ease;
}

.gp-journey-card__text {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gp-body);
  margin: 0;
  transition: color .2s ease;
}

/* hover / keyboard focus → solid navy (matches card 04 in the mockup) */
.gp-journey-card:hover,
.gp-journey-card:focus-within {
  background-color: #00236F;
  border-color: #00236F;
  transform: translateY(-4px);
  box-shadow: var(--gp-shadow-lg);
}

.gp-journey-card:hover .gp-journey-card__num,
.gp-journey-card:focus-within .gp-journey-card__num {
  color: rgba(255, 255, 255, .16);
}

.gp-journey-card:hover .gp-journey-card__title,
.gp-journey-card:focus-within .gp-journey-card__title {
  color: #fff;
}

.gp-journey-card:hover .gp-journey-card__text,
.gp-journey-card:focus-within .gp-journey-card__text {
  color: rgba(255, 255, 255, .82);
}

/* ==========================================================================
   6. INDEX BADGE CARDS  (Scopus / ABDC / SCI-SCIE)
   ========================================================================== */
.gp-index-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 10px;
  padding: 1.9rem 1.4rem;
  text-align: center;
}

.gp-index-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.gp-index-card__icon svg {
  width: 24px;
  height: 24px;
}

.gp-index-card__name {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--gp-navy);
  letter-spacing: 0.01em;
}

.gp-index-card__sub {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-muted);
  margin-top: 0.35rem;
}

.gp-index-card__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gp-body);
  margin: 0.8rem 0 0;
}

/* ==========================================================================
   7. SPLIT SHOWCASE  (service pages — text + image card)
   ========================================================================== */
.gp-split {
  padding: clamp(2.75rem, 2rem + 3vw, 4.5rem) 0;
}

.gp-split .gp-h2 {
  margin-bottom: 1rem;
}

.gp-check {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.9rem;
}

.gp-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gp-subhead);
  line-height: 1.55;
}

.gp-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gp-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300236F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.gp-showcase-media {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(135deg, rgba(0, 35, 111, .12), rgba(0, 35, 111, .03)),
    repeating-linear-gradient(45deg, #f1eff9 0 18px, #eae7f4 18px 36px);
  box-shadow: var(--gp-shadow);
}

.gp-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-showcase-media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.35rem 1.2rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 15, 48, .82), rgba(0, 15, 48, 0));
}

/* ==========================================================================
   8. CONTACT — banner + story + offices
   ========================================================================== */
.gp-banner {
  position: relative;
  text-align: center;
  color: #fff;
  padding: clamp(3.5rem, 3rem + 6vw, 6.5rem) 0;

}

.gp-contact-banner {
  background-image: url("../images/contact-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);
}

.gp-banner .gp-eyebrow {
  color: rgba(255, 255, 255, .7);
}

.gp-banner h1 {
  color: #fff;
  font-size: clamp(2.1rem, 1.6rem + 2.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.gp-banner p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

.gp-story h2 {
  margin-bottom: 1.1rem;
}

.gp-story p {
  color: var(--gp-body);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.gp-story p:last-child {
  margin-bottom: 0;
}

.gp-office {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  padding: 1.4rem 1.45rem;
}

.gp-office+.gp-office {
  margin-top: 1rem;
}

.gp-office__pin {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-office__pin img {
  width: 30px;
  height: 30px;
}

.gp-office__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gp-subhead);
  margin-bottom: 0.3rem;
}

.gp-office__addr {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--gp-body);
  margin-bottom: 0.5rem;
}

.gp-office__mail {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gp-navy);
  text-decoration: none;
  word-break: break-word;
}

.gp-office__mail:hover {
  text-decoration: underline;
}

/* ==========================================================================
   9. FORMS  (contact page + #contactModal)
   ========================================================================== */
.gp-form-card {
  background: #fff;
  border: 1px solid #C5C5D3;
  border-radius: 6px;
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}

.glp-form .gp-label,
.glp-form label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gp-subhead);
  margin-bottom: 0.4rem;
}

.glp-form .form-control,
.glp-form .form-select {
  font-size: 0.92rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  color: var(--gp-subhead);
  background-color: #fff;
}

.glp-form .form-control::placeholder {
  color: #a7a9b4;
}

.glp-form .form-control:focus,
.glp-form .form-select:focus {
  border-color: var(--gp-navy);
  box-shadow: 0 0 0 3px rgba(0, 35, 111, .10);
  outline: none;
}

.glp-form .glp-error {
  display: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: #c62d2d;
  margin-top: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
}

.glp-form .glp-error.is-shown,
.glp-form .is-invalid~.glp-error {
  display: block;
}

.glp-form .form-control.is-invalid,
.glp-form .form-select.is-invalid {
  border-color: #c62d2d;
  background-image: none;
  box-shadow: none;
}

/* honeypot */
.glp-hp {
  position: absolute !important;
  left: -5000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   10. REVIEWS  — action bar, testimonials, wide card, CTA banner
   ========================================================================== */
.gp-reviews-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.gp-search {
  position: relative;
  flex: 1 1 20rem;
  max-width: 30rem;
}

.gp-search input {
  width: 100%;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem 0.7rem 2.4rem;
  border: 1px solid var(--gp-line);
  border-radius: 6px;
  color: var(--gp-subhead);
  background: #fff;
}

.gp-search input:focus {
  outline: none;
  border-color: var(--gp-navy);
  box-shadow: 0 0 0 3px rgba(0, 35, 111, .10);
}

.gp-search svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gp-muted);
}

.gp-review {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #C5C5D3;
  border-radius: 4px;
  padding: 1.65rem 1.55rem;
}

.gp-review__name {
  font-size: 1rem;
  font-weight: 700;
  color: #00236F;
}

.gp-review__field {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gp-muted);
  margin-top: 0.2rem;
}

.gp-stars {
  color: #171C1F;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.gp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.55rem 0 0.9rem;
}

.gp-pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 5px;
  background: #EAEEF2;
  color: #505F76;
  border: 1px solid #C5C5D3;
}

.global-gp-phill {
  background: #1E3A8A;
  color: #fff;
  border: 1px solid #1E3A8A;
}

.gp-review__quote {
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--gp-body);
  margin: 0;
}

.gp-review--wide {
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
}

.gp-review--wide .gp-review__org {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gp-soft);
  color: var(--gp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.gp-review--wide .gp-review__org svg {
  width: 22px;
  height: 22px;
}

.gp-review--wide .gp-review__quote {
  font-size: 1rem;
  line-height: 1.75;
}

.gp-noresults {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--gp-muted);
  font-size: 0.95rem;
}

.gp-cta-banner {
  text-align: center;
  border: 1px solid #C5C5D3;
  border-radius: 14px;
  background: transparent;
  padding: clamp(2.25rem, 1.75rem + 3vw, 3.5rem);
}

.gp-cta-banner .gp-h2 {
  margin-bottom: 0.85rem;
}

.gp-cta-banner p {
  max-width: 36rem;
  margin: 0 auto 1.6rem;
  color: var(--gp-body);
  line-height: 1.7;
}

/* ==========================================================================
   11. GLOBAL CONTACT MODAL  (#contactModal)
   ========================================================================== */
#contactModal .modal-content {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

#contactModal .modal-header {
  border-bottom: 1px solid var(--gp-line);
  padding: 1.2rem 1.5rem;
}

#contactModal .modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gp-navy);
}

#contactModal .modal-body {
  padding: 1.5rem;
}

#contactModal .modal-body>p.gp-modal-intro {
  font-size: 0.92rem;
  color: var(--gp-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   12. THANK-YOU PAGE
   ========================================================================== */
.gp-ty {
  min-height: min(100%, 46rem);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.gp-ty__head {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--gp-line);
}

.gp-ty__brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gp-navy);
  text-decoration: none;
}

.gp-ty__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.gp-ty__box {
  max-width: 32rem;
  text-align: center;
}

.gp-ty__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gp-soft);
  color: var(--gp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-ty__icon svg {
  width: 34px;
  height: 34px;
}

.gp-ty__box h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gp-navy);
  margin-bottom: 0.75rem;
}

.gp-ty__box p {
  color: var(--gp-body);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   13. FOOTER — extra column support (offices) if used
   ========================================================================== */
.glp-footer .gp-footer-col p.glp-footer-head {
  margin-bottom: 1rem;
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  .gp-hero-media {
    aspect-ratio: 16 / 10;
    margin-top: 2rem;
  }

  .gp-split .gp-showcase-media {
    margin-top: 2rem;
  }

  .gp-section-head {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .gp-hero .d-flex.flex-wrap .gp-btn {
    width: 100%;
  }

  .gp-reviews-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .gp-reviews-bar .gp-btn {
    width: 100%;
  }

  .gp-search {
    max-width: none;
  }
}