/* ===========================================================
   GPV CONTACT + APPOINTMENT
   NAVY + TEAL LOGO COLORS
=========================================================== */

:root {
  --ca-navy: #0b253d;
  --ca-navy-2: #12354f;

  --ca-teal: #18b5ae;
  --ca-teal-dark: #0f8f8b;
  --ca-teal-soft: #e9f9f8;

  --ca-white: #ffffff;

  --ca-text: #15283a;
  --ca-muted: #697d8c;

  --ca-bg: #f1f6f9;
  --ca-border: #dfeaec;

  --ca-shadow:
    0 15px 42px rgba(11, 37, 61, 0.09);
}


/* ===========================================================
   BREADCRUMB
   CENTERED
   NO CIRCLES / NO DECORATIVE SHAPES
=========================================================== */

.gpv-page-hero {
  position: relative;

  padding:
    48px 0 52px;

  overflow: hidden;

  color: #ffffff;

  text-align: center;

  background:
    linear-gradient(
      110deg,
      var(--ca-navy) 0%,
      #105365 58%,
      var(--ca-teal-dark) 100%
    );
}


/* REMOVE OLD TOP RIGHT / BOTTOM LEFT CIRCLES */

.gpv-page-hero::before,
.gpv-page-hero::after,
.gpv-page-hero-shape {
  content: none !important;
  display: none !important;
}


.gpv-page-hero-inner {
  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}


.gpv-breadcrumb {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin:
    0 0 15px;

  color: #ffffff;

  font-size: 14px;

  font-weight: 700;
}


.gpv-breadcrumb a {
  color:
    rgba(255, 255, 255, 0.82);

  transition:
    color 0.2s ease;
}


.gpv-breadcrumb a:hover {
  color: #ffffff;
}


.gpv-breadcrumb i {
  color:
    rgba(255, 255, 255, 0.5);

  font-size: 9px;
}


.gpv-breadcrumb span {
  color:
    #83e9e4;
}


.gpv-page-hero h1 {
  margin:
    0 0 10px;

  color: #ffffff;

  font-size:
    clamp(
      38px,
      4vw,
      54px
    );

  line-height: 1.1;

  font-weight: 800;

  letter-spacing:
    -1px;
}


.gpv-page-hero p {
  width:
    min(
      760px,
      100%
    );

  margin:
    0 auto;

  color:
    rgba(255, 255, 255, 0.8);

  font-size: 15px;

  line-height: 1.75;
}


/* ===========================================================
   COMMON
=========================================================== */

.gpv-section-label {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 12px;

  color:
    var(--ca-teal-dark);

  font-size: 14px;

  font-weight: 800;
}


.gpv-contact-info > h2,
.gpv-form-card > h2,
.gpv-appointment-form-wrap > h2,
.gpv-map-heading h2 {
  margin:
    0 0 24px;

  color:
    var(--ca-navy);

  font-size:
    clamp(
      33px,
      3.5vw,
      45px
    );

  line-height: 1.15;

  letter-spacing:
    -1px;

  font-weight: 800;
}


.gpv-contact-info > h2 span,
.gpv-form-card > h2 span,
.gpv-appointment-form-wrap > h2 span,
.gpv-map-heading h2 span {
  color:
    var(--ca-teal);
}


/* ===========================================================
   CONTACT
=========================================================== */

.gpv-contact-section {
  padding:
    80px 0;

  background:
    #eef3f7;
}


.gpv-contact-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 75px;

  align-items: center;
}


/* ===========================================================
   LEFT INFO
=========================================================== */

.gpv-contact-info {
  padding:
    5px 0;
}


.gpv-info-item {
  display: flex;

  align-items: flex-start;

  gap: 16px;

  margin-bottom: 23px;
}


.gpv-info-icon {
  width: 48px;

  height: 48px;

  display: grid;

  place-items: center;

  flex: none;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--ca-teal),
      var(--ca-teal-dark)
    );

  border-radius: 50%;

  font-size: 17px;

  box-shadow:
    0 8px 22px
    rgba(24, 181, 174, 0.2);
}


.gpv-info-item h3 {
  margin:
    1px 0 5px;

  color:
    var(--ca-navy);

  font-size: 15px;

  line-height: 1.35;

  font-weight: 800;
}


.gpv-info-item a,
.gpv-info-item p {
  margin: 0;

  color:
    var(--ca-muted);

  font-size: 14px;

  line-height: 1.8;

  font-weight: 500;
}


.gpv-info-item p {
  max-width: 480px;
}


.gpv-info-item a:hover {
  color:
    var(--ca-teal-dark);
}


.gpv-contact-phone-row {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 5px;
}


.gpv-contact-phone-row span {
  color:
    #8d9ca7;
}


/* ===========================================================
   SOCIAL ICONS BELOW ADDRESS
=========================================================== */

.gpv-contact-social-wrap {
  margin-top: 28px;
}


.gpv-contact-social-wrap h3 {
  margin:
    0 0 13px;

  color:
    var(--ca-navy);

  font-size: 15px;

  font-weight: 800;
}


.gpv-contact-socials {
  display: flex;

  align-items: center;

  gap: 10px;
}


.gpv-contact-socials a {
  width: 40px;

  height: 40px;

  display: grid;

  place-items: center;

  color:
    var(--ca-teal-dark);

  background:
    #ffffff;

  border:
    1px solid
    #cde8e6;

  border-radius: 50%;

  font-size: 14px;

  box-shadow:
    0 6px 18px
    rgba(11, 37, 61, 0.06);

  transition:
    0.2s ease;
}


.gpv-contact-socials a:hover {
  color: #ffffff;

  border-color:
    var(--ca-teal-dark);

  background:
    var(--ca-teal-dark);

  transform:
    translateY(-3px);
}


/* ===========================================================
   CONTACT FORM
   REDUCED HEIGHT
=========================================================== */

.gpv-form-card {
  padding:
    38px 42px;

  background:
    #ffffff;

  border-radius: 17px;

  box-shadow:
    var(--ca-shadow);
}


.gpv-field {
  display: grid;

  gap: 7px;

  margin-bottom: 14px;
}


.gpv-field label {
  color:
    var(--ca-navy);

  font-size: 11px;

  font-weight: 800;
}


.gpv-field input,
.gpv-field select,
.gpv-field textarea {
  width: 100%;

  min-height: 50px;

  padding:
    0 16px;

  outline: none;

  border:
    1px solid
    #d5e1e8;

  border-radius: 8px;

  color:
    var(--ca-text);

  background:
    #f7fafc;

  font-size: 13px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.gpv-field textarea {
  min-height: 105px;

  padding:
    14px 16px;

  resize: vertical;
}


.gpv-field input:focus,
.gpv-field select:focus,
.gpv-field textarea:focus {
  border-color:
    var(--ca-teal);

  background:
    #ffffff;

  box-shadow:
    0 0 0 3px
    rgba(24, 181, 174, 0.09);
}


.gpv-submit-btn {
  min-height: 48px;

  padding:
    0 23px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border: 0;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--ca-teal),
      var(--ca-teal-dark)
    );

  font-size: 13px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 9px 22px
    rgba(24, 181, 174, 0.21);

  transition:
    0.2s ease;
}


.gpv-submit-btn:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 13px 27px
    rgba(24, 181, 174, 0.28);
}


/* ===========================================================
   MAP
   NO TOP LINE
   CONTAINER WIDTH ONLY
=========================================================== */

.gpv-map-section {
  padding:
    70px 0 85px;

  background:
    #ffffff;
}


.gpv-map-heading {
  margin-bottom: 30px;

  text-align: center;
}


.gpv-map-wrapper {
  width: 100%;

  height: 390px;

  overflow: hidden;

  border: 0 !important;

  border-radius: 18px;

  box-shadow:
    0 14px 38px
    rgba(11, 37, 61, 0.1);
}


/* REMOVE ANY OLD MAP LINE */

.gpv-map-wrapper::before,
.gpv-map-wrapper::after {
  content: none !important;
  display: none !important;
}


.gpv-map-wrapper iframe {
  width: 100%;

  height: 100%;

  display: block;

  border: 0;
}


/* ===========================================================
   APPOINTMENT
=========================================================== */

.gpv-appointment-section {
  padding:
    80px 0;

  background:
    #eef4f7;
}


/*
   IMPORTANT:
   IMAGE + FORM ARE NOW SEPARATE
*/

.gpv-appointment-grid {
  display: grid;

  grid-template-columns:
    0.86fr
    1.14fr;

  gap: 42px;

  align-items: stretch;
}


/* ===========================================================
   APPOINTMENT IMAGE CARD
=========================================================== */

.gpv-appointment-image {
  position: relative;

  min-height: 650px;

  overflow: hidden;

  border-radius: 20px;

  background:
    var(--ca-navy);

  box-shadow:
    var(--ca-shadow);
}


.gpv-appointment-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(11, 37, 61, 0.05),
      rgba(11, 37, 61, 0.8)
    );
}


.gpv-appointment-image > img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position:
    center top;
}


.gpv-appointment-image-overlay {
  position: absolute;

  left: 35px;

  right: 35px;

  bottom: 35px;

  z-index: 2;

  color: #ffffff;
}


.gpv-appointment-image-overlay > span {
  display: block;

  margin-bottom: 10px;

  color:
    #81e8e2;

  font-size: 11px;

  letter-spacing: 1.2px;

  font-weight: 800;
}


.gpv-appointment-image-overlay h2 {
  margin:
    0 0 12px;

  color: #ffffff;

  font-size: 34px;

  line-height: 1.2;

  font-weight: 800;
}


.gpv-appointment-image-overlay h2 strong {
  color:
    #79e3de;
}


.gpv-appointment-image-overlay p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.8);

  font-size: 13px;

  line-height: 1.7;
}


/* ===========================================================
   APPOINTMENT FORM CARD
=========================================================== */

.gpv-appointment-form-wrap {
  padding:
    44px 46px;

  background:
    #ffffff;

  border-radius: 20px;

  box-shadow:
    var(--ca-shadow);
}


.gpv-form-intro {
  margin:
    -8px 0 25px;

  color:
    var(--ca-muted);

  font-size: 13px;

  line-height: 1.75;
}


.gpv-form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    0 15px;
}


.gpv-field-full {
  grid-column:
    1 / -1;
}


/* ===========================================================
   POPUP
=========================================================== */

.gpv-form-popup {
  position: fixed;

  inset: 0;

  z-index: 20000;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

  opacity: 0;

  visibility: hidden;

  transition:
    0.25s ease;
}


.gpv-form-popup.open {
  opacity: 1;

  visibility: visible;
}


.gpv-popup-overlay {
  position: absolute;

  inset: 0;

  background:
    rgba(7, 28, 48, 0.62);

  backdrop-filter:
    blur(3px);
}


.gpv-popup-card {
  position: relative;

  z-index: 2;

  width:
    min(
      420px,
      100%
    );

  padding:
    40px 30px 30px;

  text-align: center;

  background:
    #ffffff;

  border-radius: 20px;

  box-shadow:
    0 25px 70px
    rgba(0, 0, 0, 0.2);
}


.gpv-popup-close {
  position: absolute;

  top: 14px;

  right: 14px;

  width: 35px;

  height: 35px;

  display: grid;

  place-items: center;

  border: 0;

  border-radius: 50%;

  color:
    var(--ca-navy);

  background:
    var(--ca-teal-soft);

  cursor: pointer;
}


.gpv-popup-icon {
  width: 68px;

  height: 68px;

  margin:
    0 auto 18px;

  display: grid;

  place-items: center;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--ca-teal),
      var(--ca-teal-dark)
    );

  border-radius: 50%;

  font-size: 27px;
}


.gpv-popup-card.error
.gpv-popup-icon {
  background:
    #d84d4d;
}


.gpv-popup-card h3 {
  margin:
    0 0 8px;

  color:
    var(--ca-navy);

  font-size: 21px;

  font-weight: 800;
}


.gpv-popup-card p {
  margin:
    0 0 22px;

  color:
    var(--ca-muted);

  font-size: 13px;

  line-height: 1.7;
}


.gpv-popup-button {
  min-height: 43px;

  padding:
    0 24px;

  border: 0;

  border-radius: 999px;

  color: #ffffff;

  background:
    var(--ca-teal-dark);

  font-size: 13px;

  font-weight: 800;

  cursor: pointer;
}


/* ===========================================================
   TABLET
=========================================================== */

@media (max-width: 950px) {

  .gpv-contact-grid {
    grid-template-columns:
      1fr;

    gap: 50px;
  }


  .gpv-contact-info {
    max-width: 720px;
  }


  .gpv-appointment-grid {
    grid-template-columns:
      1fr;

    gap: 35px;
  }


  .gpv-appointment-image {
    min-height: 500px;
  }


  .gpv-appointment-image > img {
    object-position:
      center 24%;
  }

}


/* ===========================================================
   MOBILE
=========================================================== */

@media (max-width: 620px) {

  .gpv-page-hero {
    padding:
      39px 0 43px;
  }


  .gpv-page-hero h1 {
    font-size: 36px;
  }


  .gpv-page-hero p {
    font-size: 13px;

    line-height: 1.7;
  }


  .gpv-contact-section,
  .gpv-appointment-section {
    padding:
      60px 0;
  }


  .gpv-contact-grid {
    gap: 38px;
  }


  .gpv-contact-info > h2,
  .gpv-form-card > h2,
  .gpv-appointment-form-wrap > h2,
  .gpv-map-heading h2 {
    font-size: 32px;
  }


  .gpv-info-item {
    gap: 13px;
  }


  .gpv-info-icon {
    width: 44px;

    height: 44px;
  }


  .gpv-info-item a,
  .gpv-info-item p {
    font-size: 13px;
  }


  .gpv-contact-phone-row {
    display: grid;

    gap: 2px;
  }


  .gpv-contact-phone-row span {
    display: none;
  }


  .gpv-form-card,
  .gpv-appointment-form-wrap {
    padding:
      30px 20px;
  }


  .gpv-form-grid {
    grid-template-columns:
      1fr;
  }


  .gpv-field-full {
    grid-column: auto;
  }


  .gpv-submit-btn {
    width: 100%;
  }


  .gpv-map-section {
    padding:
      55px 0 65px;
  }


  .gpv-map-wrapper {
    height: 330px;

    border-radius: 13px;
  }


  .gpv-appointment-image {
    min-height: 390px;
  }


  .gpv-appointment-image-overlay {
    left: 22px;

    right: 22px;

    bottom: 24px;
  }


  .gpv-appointment-image-overlay h2 {
    font-size: 27px;
  }


  .gpv-contact-socials a {
    width: 38px;

    height: 38px;
  }

}

/* =========================================================
   CONTACT CARDS WITH BIG OUTSIDE CIRCLE ICON
========================================================= */

.gpv-contact-card-list {
  display: grid;
  gap: 24px;

  margin-top: 18px;
}


/* MAIN CARD */
.gpv-contact-card {
  position: relative;

  min-height: 112px;

  /* space outside card for icon */
  margin-left: 82px;

  /* normal content padding */
  padding:
    22px 28px;

  display: flex;
  align-items: center;

  background: #ffffff;

  border: 1px solid #dfe8ec;

  border-radius: 18px;

  box-shadow:
    0 5px 16px
    rgba(11, 37, 61, 0.08);

  overflow: visible;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}


.gpv-contact-card:hover {
  transform:
    translateY(-2px);

  border-color:
    rgba(24, 181, 174, 0.42);

  box-shadow:
    0 12px 26px
    rgba(11, 37, 61, 0.11);
}


/* BIG CIRCLE ICON OUTSIDE */

.gpv-contact-card-icon {
  position: absolute;

  /*
    68px icon width
    + 12px gap
    = 80px outside
  */
  left: -80px;

  top: 50%;

  transform:
    translateY(-50%);

  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--ca-teal),
      var(--ca-teal-dark)
    );

  border:
    6px solid
    #eef3f7;

  border-radius: 50%;

  font-size: 23px;

  box-shadow:
    0 8px 22px
    rgba(24, 181, 174, 0.24);

  z-index: 2;
}


/* CONTENT */

.gpv-contact-card-content {
  min-width: 0;

  flex: 1;
}


/* LABEL */

.gpv-contact-card-label {
  display: block;

  margin-bottom: 7px;

  color:
    var(--ca-teal-dark);

  font-size: 11px;

  line-height: 1.2;

  font-weight: 800;

  letter-spacing: 1.1px;

  text-transform: uppercase;
}


/* MAIN TEXT */

.gpv-contact-card-main {
  display: block;

  margin: 0;

  color:
    var(--ca-navy);

  font-size: 15px;

  line-height: 1.6;

  font-weight: 800;
}


a.gpv-contact-card-main:hover {
  color:
    var(--ca-teal-dark);
}


/* PHONE NUMBERS */

.gpv-contact-card-phone-row {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 6px;
}


.gpv-contact-card-phone-row a {
  color:
    var(--ca-navy);

  font-size: 15px;

  font-weight: 800;
}


.gpv-contact-card-phone-row a:hover {
  color:
    var(--ca-teal-dark);
}


.gpv-contact-card-phone-row span {
  color:
    #92a1aa;

  font-size: 14px;
}


/* SMALL SUBTEXT */

.gpv-contact-card-content > p:not(.gpv-contact-card-main) {
  margin:
    5px 0 0;

  color:
    var(--ca-muted);

  font-size: 13px;

  line-height: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

  .gpv-contact-card-list {
    gap: 20px;
  }


  .gpv-contact-card {
    min-height: 100px;

    /* icon kosam outside space */
    margin-left: 66px;

    padding:
      18px 18px;

    border-radius: 15px;

    overflow: visible;
  }


  .gpv-contact-card-icon {
    /* 54px icon + 8px gap */
    left: -62px;

    width: 54px;
    height: 54px;

    border-width: 5px;

    font-size: 18px;
  }


  .gpv-contact-card-label {
    font-size: 10px;
  }


  .gpv-contact-card-main,
  .gpv-contact-card-phone-row a {
    font-size: 13px;
  }


  .gpv-contact-card-phone-row {
    display: grid;

    gap: 2px;
  }


  .gpv-contact-card-phone-row span {
    display: none;
  }


  .gpv-contact-card-content >
  p:not(.gpv-contact-card-main) {
    font-size: 12px;
  }

}