/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {

  --primary-bg: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  padding: 100px 25px;

  background:

    radial-gradient(circle at 50% 40%,
      rgba(212, 175, 55, 0.055),
      transparent 35%),

    var(--primary-bg);

  color: var(--ivory);

}


/* =========================================
   SUBTLE TOP BORDER
========================================= */

.contact-hero::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 2px;

  background:

    linear-gradient(90deg,
      transparent,
      rgba(212, 175, 55, 0.4),
      transparent);

}


/* =========================================
   MAIN CONTAINER
========================================= */

.contact-container {

  position: relative;

  z-index: 5;

  width: 100%;

  max-width: 1100px;

  margin: 0 auto;

  text-align: center;

  display: flex;

  flex-direction: column;

  align-items: center;

}


/* =========================================
   CHAPTER LABEL
========================================= */

.contact-label {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  margin-bottom: 55px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 5px;

  opacity: 0;

  animation:

    fadeUp 1s ease forwards;

  animation-delay: 0.2s;

}


.label-line {

  width: 35px;

  height: 1px;

  background:

    rgba(212, 175, 55, 0.55);

}


/* =========================================
   MAIN HEADING
========================================= */

.contact-title {

  margin: 0;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 200px;



  font-weight: 500;

  line-height: 0.95;

  letter-spacing: -4px;

  max-width: 1100px;

}


/* Heading Lines */

.contact-title span {

  display: block;

  opacity: 0;

  transform: translateY(60px);

  animation:

    titleReveal 1.2s cubic-bezier(.22, .61, .36, 1) forwards;

}


.contact-title span:first-child {

  animation-delay: 0.4s;

}


.contact-title span:last-child {

  animation-delay: 0.6s;

}


/* =========================================
   DESCRIPTION
========================================= */

.contact-description {

  max-width: 750px;

  margin:

    60px auto 0;

  color:

    rgba(255, 255, 240, 0.65);

  font-family: "Inter", sans-serif;

  font-size: 18px;

  line-height: 1.9;

  font-weight: 400;

  opacity: 0;

  transform: translateY(30px);

  animation:

    fadeUp 1s ease forwards;

  animation-delay: 0.9s;

}


/* =========================================
   BUTTON
========================================= */

.contact-button {

  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 230px;

  height: 68px;

  margin-top: 55px;

  padding: 0 40px;

  overflow: hidden;

  border:

    1px solid var(--gold);

  color: var(--gold);

  background:

    rgba(212, 175, 55, 0.025);

  text-decoration: none;

  font-family: "Inter", sans-serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 3px;

  transition:

    color 0.5s ease,

    transform 0.4s ease,

    box-shadow 0.5s ease;

  opacity: 0;

  animation:

    fadeUp 1s ease forwards;

  animation-delay: 1.2s;
  border-radius: 999px;

}


/* Gold Fill */

.contact-button::before {

  content: "";

  position: absolute;

  inset: 0;

  background: var(--gold);

  transform:

    translateY(100%);

  transition:

    transform 0.5s cubic-bezier(.22, .61, .36, 1);

}


.contact-button span {

  position: relative;

  z-index: 2;

}


/* Arrow */

.contact-button i {

  position: relative;

  z-index: 2;

  width: 0;

  height: 1px;

  margin-left: 0;

  background: var(--primary-bg);

  transition:

    width 0.4s ease,

    margin-left 0.4s ease;

}


/* Hover */

.contact-button:hover {

  color: var(--primary-bg);

  transform:

    translateY(-5px);

  box-shadow:

    0 15px 35px rgba(212, 175, 55, 0.15),

    0 0 25px rgba(212, 175, 55, 0.08);

}


.contact-button:hover::before {

  transform:

    translateY(0);

}


.contact-button:hover i {

  width: 22px;

  margin-left: 15px;

}


/* =========================================
   VERTICAL GOLD LINE
========================================= */

.contact-line {

  position: relative;

  width: 1px;

  height: 180px;

  margin-top: 15px;

  background:

    linear-gradient(to bottom,
      rgba(212, 175, 55, 0.35),
      rgba(212, 175, 55, 0));

  opacity: 0;

  animation:

    lineReveal 1.5s ease forwards;

  animation-delay: 1.5s;

}


/* =========================================
   MOVING LINE GLOW
========================================= */

.line-glow {

  position: absolute;

  top: -10px;

  left: 50%;

  width: 3px;

  height: 45px;

  transform:

    translateX(-50%);

  background:

    linear-gradient(to bottom,
      transparent,
      var(--gold),
      transparent);

  filter:

    blur(2px);

  animation:

    lineMove 3s ease-in-out infinite;

}


/* =========================================
   GOLD DOT
========================================= */

.line-dot {

  position: absolute;

  top: -5px;

  left: 50%;

  width: 8px;

  height: 8px;

  transform:

    translateX(-50%);

  border-radius: 50%;

  background: var(--gold);

  box-shadow:

    0 0 10px rgba(212, 175, 55, 0.8),

    0 0 25px rgba(212, 175, 55, 0.35);

  animation:

    dotMove 3s ease-in-out infinite;

}


/* =========================================
   BACKGROUND ORBS
========================================= */

.contact-orb {

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.08),
      transparent 70%);

  filter: blur(35px);

  animation:

    orbFloat 10s ease-in-out infinite alternate;

}


.contact-orb-one {

  width: 500px;

  height: 500px;

  top: -300px;

  left: -250px;

}


.contact-orb-two {

  width: 450px;

  height: 450px;

  right: -250px;

  bottom: -250px;

  animation-delay: 3s;

}


/* =========================================
   FLOATING PARTICLES
========================================= */

.contact-particles span {

  position: absolute;

  width: 3px;

  height: 3px;

  border-radius: 50%;

  background: var(--gold);

  opacity: 0;

  box-shadow:

    0 0 10px rgba(212, 175, 55, 0.6);

  animation:

    particleFloat 7s ease-in-out infinite;

}


.contact-particles span:nth-child(1) {

  left: 15%;

  top: 25%;

  animation-delay: 0s;

}


.contact-particles span:nth-child(2) {

  left: 80%;

  top: 20%;

  animation-delay: 2s;

}


.contact-particles span:nth-child(3) {

  left: 25%;

  top: 75%;

  animation-delay: 4s;

}


.contact-particles span:nth-child(4) {

  left: 75%;

  top: 70%;

  animation-delay: 1s;

}


.contact-particles span:nth-child(5) {

  left: 50%;

  top: 15%;

  animation-delay: 3s;

}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes fadeUp {

  from {

    opacity: 0;

    transform:
      translateY(30px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


@keyframes titleReveal {

  from {

    opacity: 0;

    transform:
      translateY(60px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


@keyframes lineReveal {

  from {

    opacity: 0;

    height: 0;

  }

  to {

    opacity: 1;

    height: 180px;

  }

}


@keyframes lineMove {

  0% {

    top: 0;

    opacity: 0;

  }

  30% {

    opacity: 1;

  }

  70% {

    opacity: 1;

  }

  100% {

    top: 100%;

    opacity: 0;

  }

}


@keyframes dotMove {

  0% {

    top: 0;

    opacity: 0;

  }

  30% {

    opacity: 1;

  }

  70% {

    opacity: 1;

  }

  100% {

    top: 100%;

    opacity: 0;

  }

}


@keyframes orbFloat {

  0% {

    transform:
      translate(0, 0) scale(0.9);

    opacity: 0.5;

  }

  100% {

    transform:
      translate(30px, 30px) scale(1.1);

    opacity: 0.9;

  }

}


@keyframes particleFloat {

  0% {

    opacity: 0;

    transform:
      translateY(20px) scale(0.5);

  }

  30% {

    opacity: 0.7;

  }

  70% {

    opacity: 0.7;

  }

  100% {

    opacity: 0;

    transform:
      translateY(-50px) scale(1.2);

  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .contact-title {

    font-size:
      clamp(55px, 9vw, 90px);

  }


  .contact-description {

    max-width: 650px;

    font-size: 17px;

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .contact-hero {

    min-height: 100svh;

    padding:
      80px 20px;

  }


  .contact-label {

    gap: 10px;

    margin-bottom: 40px;

    font-size: 9px;

    letter-spacing: 3px;

  }


  .label-line {

    width: 20px;

  }


  .contact-title {

    font-size:
      clamp(48px, 14vw, 72px);

    line-height: 0.98;

    letter-spacing: -2px;

  }


  .contact-description {

    margin-top: 40px;

    font-size: 15px;

    line-height: 1.8;

  }


  .contact-button {

    width: 100%;

    max-width: 250px;

    height: 62px;

    margin-top: 40px;

  }


  .contact-line {

    height: 100px;

  }


  .contact-orb-one {

    width: 300px;

    height: 300px;

  }


  .contact-orb-two {

    width: 300px;

    height: 300px;

  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

  }

}

/* =========================================
   COMMUNICATION GALLERY
========================================= */

.communication-gallery {

  --primary-bg: #004225;
  --ivory: #FFFFF0;
  --gold: #D4AF37;

  position: relative;

  width: 100%;

  min-height: 100vh;

  padding: 120px 5%;

  overflow: hidden;

  background: var(--primary-bg);

  color: var(--ivory);

}


/* =========================================
   BACKGROUND EFFECT
========================================= */

.communication-gallery::before {

  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  top: -400px;

  left: 50%;

  transform: translateX(-50%);

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.07),
      transparent 65%);

  pointer-events: none;

}


/* =========================================
   CONTAINER
========================================= */

.communication-container {

  position: relative;

  z-index: 2;

  max-width: 1450px;

  margin: 0 auto;

}


/* =========================================
   HEADER
========================================= */

.communication-header {

  text-align: center;

  margin-bottom: 100px;

}


.communication-label {

  display: block;

  margin-bottom: 25px;

  color: var(--gold);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 5px;

  text-transform: uppercase;

  animation: headerFade 1s ease forwards;

}


.communication-header h2 {

  margin: 0;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size:

    clamp(55px, 6vw, 90px);

  font-weight: 500;

  line-height: 1;

  letter-spacing: -2px;

  animation:

    headingReveal 1.2s cubic-bezier(.22, .61, .36, 1) forwards;

}


/* =========================================
   CARD GRID
========================================= */

.communication-grid {

  display: grid;

  grid-template-columns:

    repeat(5, 1fr);

  gap: 28px;

}


/* =========================================
   CARD
========================================= */

.communication-card {

  position: relative;

  min-height: 290px;

  padding: 50px 25px 40px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  text-decoration: none;

  overflow: hidden;

  background:

    rgba(255, 255, 240, 0.025);

  border:

    1px solid rgba(255, 255, 240, 0.08);

  border-top:

    2px solid rgba(212, 175, 55, 0.7);

  transition:

    transform 0.5s cubic-bezier(.22, .61, .36, 1),

    background 0.5s ease,

    border-color 0.5s ease,

    box-shadow 0.5s ease;

  opacity: 0;

  animation:

    cardReveal 0.9s cubic-bezier(.22, .61, .36, 1) forwards;
  border-radius: 20px;

}


/* Card Stagger */

.communication-card:nth-child(1) {

  animation-delay: .2s;

}

.communication-card:nth-child(2) {

  animation-delay: .3s;

}

.communication-card:nth-child(3) {

  animation-delay: .4s;

}

.communication-card:nth-child(4) {

  animation-delay: .5s;

}

.communication-card:nth-child(5) {

  animation-delay: .6s;

}


/* =========================================
   GOLD LIGHT EFFECT
========================================= */

.communication-card::before {

  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  left: 50%;

  top: 50%;

  transform:

    translate(-50%, -50%) scale(0);

  border-radius: 50%;

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.10),
      transparent 70%);

  transition:

    transform 0.7s cubic-bezier(.22, .61, .36, 1);

  pointer-events: none;

}


/* =========================================
   HOVER
========================================= */

.communication-card:hover {

  transform:

    translateY(-14px);

  background:

    rgba(255, 255, 240, 0.055);

  border-color:

    rgba(212, 175, 55, 0.35);

  box-shadow:

    0 20px 50px rgba(0, 0, 0, 0.15),

    0 0 30px rgba(212, 175, 55, 0.08);

}


.communication-card:hover::before {

  transform:

    translate(-50%, -50%) scale(1.5);

}


/* =========================================
   ICON
========================================= */

.card-icon {

  position: relative;

  z-index: 2;

  width: 58px;

  height: 58px;

  margin-bottom: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

  transition:

    transform 0.5s ease,

    filter 0.5s ease;

}


.card-icon svg {

  width: 38px;

  height: 38px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.6;

  stroke-linecap: round;

  stroke-linejoin: round;

}


.communication-card:hover .card-icon {

  transform:

    translateY(-7px) scale(1.12);

  filter:

    drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));

}


/* =========================================
   CARD LABEL
========================================= */

.card-label {

  position: relative;

  z-index: 2;

  margin-bottom: 14px;

  color:

    rgba(255, 255, 240, 0.55);

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 4px;

  text-transform: capitalize;

  transition:

    color 0.4s ease;

}


.communication-card:hover .card-label {

  color: var(--gold);

}


/* =========================================
   CARD VALUE
========================================= */

.card-value {

  position: relative;

  z-index: 2;

  color: var(--ivory);

  font-family:

    "Inter", sans-serif;

  font-size: 22px;

  font-weight: 500;

  line-height: 1.3;

  transition:

    transform 0.4s ease;

}


.communication-card:hover .card-value {

  transform:

    translateY(-2px);

}


/* =========================================
   BOOKING LINK
========================================= */

.card-link {

  text-decoration: underline;

  text-decoration-color:

    rgba(212, 175, 55, 0.6);

  text-underline-offset: 7px;

}


/* =========================================
   HOVER ARROW
========================================= */

.card-arrow {

  position: absolute;

  right: 22px;

  bottom: 20px;

  color: var(--gold);

  font-size: 20px;

  opacity: 0;

  transform:

    translateX(-10px);

  transition:

    opacity 0.4s ease,

    transform 0.4s ease;

}


.communication-card:hover .card-arrow {

  opacity: 1;

  transform:

    translateX(0);

}


/* =========================================
   BOTTOM LINE
========================================= */

.communication-line {

  width: 55%;

  height: 1px;

  margin:

    110px auto 0;

  position: relative;

  background:

    rgba(212, 175, 55, 0.12);

}


.communication-line span {

  position: absolute;

  top: 0;

  left: 0;

  width: 25%;

  height: 1px;

  background: var(--gold);

  animation:

    lineSlide 4s ease-in-out infinite;

  box-shadow:

    0 0 10px rgba(212, 175, 55, 0.5);

}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes headerFade {

  from {

    opacity: 0;

    transform:
      translateY(20px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


@keyframes headingReveal {

  from {

    opacity: 0;

    transform:
      translateY(50px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


@keyframes cardReveal {

  from {

    opacity: 0;

    transform:
      translateY(50px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


@keyframes lineSlide {

  0% {

    left: 0;

  }

  50% {

    left: 75%;

  }

  100% {

    left: 0;

  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

  .communication-grid {

    grid-template-columns:

      repeat(3, 1fr);

  }


  .communication-card:nth-child(4) {

    grid-column: 1 / 2;

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .communication-gallery {

    padding:

      90px 20px;

  }


  .communication-header {

    margin-bottom: 60px;

  }


  .communication-label {

    font-size: 10px;

    letter-spacing: 3px;

  }


  .communication-header h2 {

    font-size:

      clamp(48px, 13vw, 70px);

    letter-spacing: -1px;

  }


  .communication-grid {

    grid-template-columns: 1fr;

    gap: 18px;

  }


  .communication-card {

    min-height: 250px;

    padding: 40px 25px;

  }


  .communication-line {

    width: 80%;

    margin-top: 70px;

  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .communication-header h2 {

    font-size: 45px;

  }


  .card-value {

    font-size: 20px;

  }


  .communication-card {

    min-height: 230px;

  }

}

/* =========================================
   INQUIRY SECTION
   COLORS
========================================= */

.inquiry-section {

  --british-green: #004225;
  --ivory: #FFFFF0;
  --luxury-gold: #D4AF37;

  width: 100%;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 90px 30px;

  background: var(--british-green);

  box-sizing: border-box;

}


/* =========================================
   OUTER 2-COLUMN CONTAINER
========================================= */

.inquiry-outer-container {

  width: 100%;

  max-width: 1280px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

}


/* =========================================
   LEFT TEXT (OUTSIDE BOX)
========================================= */

.inquiry-left {

  color: var(--ivory);

}


.inquiry-left .inquiry-chapter {

  display: block;

  margin-bottom: 22px;

  color: var(--luxury-gold);

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 3px;

}


.inquiry-left h2 {

  margin: 0 0 20px;

  color: var(--ivory);

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 64px;

  font-weight: 500;

  line-height: 1.05;

  letter-spacing: -1.5px;

}


.inquiry-left p {

  max-width: 480px;

  margin: 0;

  color: rgba(255, 255, 240, 0.7);

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.8;

}


/* =========================================
   MAIN FORM CARD (RIGHT SIDE)
========================================= */

.inquiry-wrapper {

  position: relative;

  width: 100%;

  max-width: 600px;

  margin: 0 auto;

  background: var(--ivory);

  box-sizing: border-box;

  box-shadow:

    0 30px 80px rgba(0, 0, 0, 0.25);
  border-radius: 25px;

}


/* =========================================
   GOLD LEFT ACCENT
========================================= */

.inquiry-accent {

  position: absolute;

  top: 0;

  left: 0;

  width: 9px;

  height: 100%;

  background: var(--luxury-gold);

}


/* =========================================
   FORM CONTENT
========================================= */

.inquiry-content {

  padding:

    48px 45px;

  box-sizing: border-box;

}


/* =========================================
   FORM
========================================= */

.form-title {
  color: var(--british-green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 35px 0;
  border-bottom: 1px solid rgba(0, 66, 37, 0.1);
  padding-bottom: 15px;
}

.inquiry-form {

  width: 100%;

}


/* =========================================
   TWO COLUMN ROW
========================================= */

.form-row {

  display: grid;

  grid-template-columns:

    repeat(2, 1fr);

  gap: 46px;

  margin-bottom: 38px;

}


/* =========================================
   FORM GROUP
========================================= */

.form-group {

  position: relative;

  width: 100%;

}


.form-group label {

  display: block;

  margin-bottom: 14px;

  color:

    rgba(0, 66, 37, 0.7);

  font-family:

    "Inter",
    Arial,
    sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 2px;

}


/* =========================================
   INPUTS
========================================= */

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;

  padding:

    10px 12px 16px 12px;

  border: none;

  border-bottom:

    1px solid rgba(0, 66, 37, 0.12);

  border-radius: 0;

  outline: none;

  background:

    transparent;

  color: var(--british-green);

  font-family:

    "Inter",
    Arial,
    sans-serif;

  font-size: 14px;

  box-sizing: border-box;

  transition:

    border-color 0.35s ease,

    box-shadow 0.35s ease;

}


/* =========================================
   PLACEHOLDER
========================================= */

.form-group input::placeholder,
.form-group textarea::placeholder {

  color:

    rgba(0, 66, 37, 0.28);

  opacity: 1;

}


/* =========================================
   INPUT FOCUS
========================================= */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  border-bottom-color:

    var(--luxury-gold);

  box-shadow:

    0 2px 0 rgba(212, 175, 55, 0.18);

}


/* =========================================
   SELECT
========================================= */

.form-group select {

  cursor: pointer;

  appearance: none;

  -webkit-appearance: none;

  padding-right: 35px;

  background-image:

    linear-gradient(45deg,
      transparent 50%,
      var(--british-green) 50%),

    linear-gradient(135deg,
      var(--british-green) 50%,
      transparent 50%);

  background-position:

    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;

  background-size:

    5px 5px,
    5px 5px;

  background-repeat: no-repeat;

}


/* =========================================
   FULL WIDTH FORM
========================================= */

.form-full {

  margin-bottom: 38px;

}


/* =========================================
   MESSAGE
========================================= */

.message-group {

  margin-top: 4px;

}


.form-group textarea {

  min-height: 115px;

  resize: vertical;

  line-height: 1.6;

}


/* =========================================
   SUBMIT BUTTON
========================================= */

.inquiry-submit {

  position: relative;

  width: 230px;

  height: 52px;

  margin-top: 5px;

  border: none;

  background: var(--british-green);

  color: var(--ivory);

  font-family:

    "Inter",
    Arial,
    sans-serif;

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 1.5px;

  cursor: pointer;

  overflow: hidden;

  transition:

    transform 0.35s ease,

    box-shadow 0.35s ease,

    color 0.35s ease;

}


/* Gold Hover Background */

.inquiry-submit::before {

  content: "";

  position: absolute;

  inset: 0;

  background: var(--luxury-gold);

  transform:

    translateX(-101%);

  transition:

    transform 0.45s cubic-bezier(.22, .61, .36, 1);

}


.inquiry-submit {

  z-index: 1;

}


.inquiry-submit::after {

  content: "SEND INQUIRY";

  position: absolute;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--british-green);

  transform:

    translateX(-101%);

  transition:

    transform 0.45s cubic-bezier(.22, .61, .36, 1);

}


/* Hover */

.inquiry-submit:hover {

  transform:

    translateY(-3px);

  box-shadow:

    0 12px 25px rgba(0, 66, 37, 0.18);

}


.inquiry-submit:hover::before {

  transform:

    translateX(0);

}


.inquiry-submit:hover::after {

  transform:

    translateX(0);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

  .inquiry-outer-container {

    grid-template-columns: 1fr;

    gap: 50px;

  }


  .inquiry-left h2 {

    font-size: 48px;

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .inquiry-section {

    min-height: auto;

    padding:

      45px 16px;

  }


  .inquiry-wrapper {

    max-width: 100%;

  }


  .inquiry-accent {

    width: 6px;

  }


  .inquiry-content {

    padding:

      45px 25px;

    grid-template-columns: 1fr;

    gap: 40px;

  }


  .inquiry-header {

    margin-bottom: 40px;

  }


  .inquiry-chapter {

    font-size: 10px;

    letter-spacing: 2.5px;

    margin-bottom: 18px;

  }


  .inquiry-header h2 {

    font-size: 42px;

    line-height: 1.05;

  }


  .inquiry-header p {

    font-size: 13px;

    line-height: 1.7;

  }


  .form-row {

    grid-template-columns: 1fr;

    gap: 32px;

    margin-bottom: 32px;

  }


  .form-full {

    margin-bottom: 32px;

  }


  .inquiry-submit {

    width: 100%;

  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

  .inquiry-section {

    padding:

      30px 12px;

  }


  .inquiry-content {

    padding:

      40px 20px 40px 23px;

  }


  .inquiry-header h2 {

    font-size: 36px;

  }


  .inquiry-header p {

    font-size: 12px;

  }

}

/* =========================================
   BEXFORD — FINAL PATHWAY
   COLOR SYSTEM
========================================= */

.final-pathway {

  --british-green: #004225;
  --ivory: #FFFFF0;
  --luxury-gold: #D4AF37;

  position: relative;

  width: 100%;

  min-height: auto;

  padding-bottom: 100px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  align-items: center;

  background: var(--british-green);

  color: var(--ivory);

  isolation: isolate;

}


/* =========================================
   SUBTLE BACKGROUND GLOW
========================================= */

.final-pathway::before {

  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  top: 5%;

  left: 50%;

  transform: translateX(-50%);

  background:

    radial-gradient(circle,
      rgba(212, 175, 55, 0.055) 0%,
      rgba(212, 175, 55, 0.02) 35%,
      transparent 70%);

  pointer-events: none;

  z-index: -1;

}


/* =========================================
   MAIN CONTENT
========================================= */

.pathway-content {

  position: relative;

  z-index: 5;

  width: 100%;

  max-width: 900px;

  padding-top: 115px;

  text-align: center;

  animation:

    pathwayReveal 1.2s cubic-bezier(.22, .61, .36, 1) both;

}


/* =========================================
   CHAPTER LABEL
========================================= */

.pathway-chapter {

  display: inline-block;

  color: var(--luxury-gold);

  font-family:

    "Inter",
    Arial,
    sans-serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 4px;

  margin-bottom: 25px;

  animation:

    labelReveal 1s ease both;

}


/* =========================================
   MAIN TITLE
========================================= */

.pathway-content h2 {

  margin: 0;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: clamp(58px,
      7vw,
      92px);

  font-weight: 600;

  line-height: 0.95;

  letter-spacing: -2px;

  text-shadow:

    0 0 30px rgba(255, 255, 240, 0.04);

}


/* =========================================
   MESSAGE AREA
========================================= */

.pathway-message {

  margin-top: 55px;

  animation:

    messageReveal 1.2s 0.35s cubic-bezier(.22, .61, .36, 1) both;

}


.pathway-message h3 {

  margin: 0 0 35px;

  color: var(--ivory);

  font-family:

    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 38px;

  font-weight: 600;

  line-height: 1.2;

}


.pathway-message p {

  max-width: 730px;

  margin: 0 auto;

  color:

    rgba(255, 255, 240, 0.58);

  font-family:

    "Inter",
    Arial,
    sans-serif;

  font-size: 17px;

  line-height: 1.7;

}


/* =========================================
   BUTTON
========================================= */

.pathway-button {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 480px;

  max-width: 90%;

  height: 90px;

  margin: 65px auto 0;

  border:

    1px solid rgba(212, 175, 55, 0.75);

  color: var(--luxury-gold);

  text-decoration: none;

  font-family:

    "Inter",
    Arial,
    sans-serif;

  font-size: 17px;

  font-weight: 600;

  letter-spacing: 5px;

  overflow: hidden;

  transition:

    color 0.45s ease,

    transform 0.45s ease,

    box-shadow 0.45s ease;
  border-radius: 999px;

}


.pathway-button::before {

  content: "";

  position: absolute;

  inset: 0;

  background: var(--luxury-gold);

  transform:

    translateY(101%);

  transition:

    transform 0.5s cubic-bezier(.22, .61, .36, 1);

  z-index: -1;

}


.pathway-button:hover {

  color: var(--british-green);

  transform:

    translateY(-5px);

  box-shadow:

    0 15px 40px rgba(212, 175, 55, 0.15);

}


.pathway-button:hover::before {

  transform:

    translateY(0);

}


/* =========================================
   ANIMATED CURVED PATH
========================================= */

.orbit-path {

  display: none;

  position: absolute;

  width: 520px;

  height: 360px;

  left: 50%;

  top: 245px;

  transform:

    translateX(-100%);

  pointer-events: none;

  z-index: 2;

}


.orbit-path svg {

  width: 100%;

  height: 100%;

  overflow: visible;

}


.orbit-line {

  fill: none;

  stroke: var(--luxury-gold);

  stroke-width: 2;

  stroke-linecap: round;

  opacity: 0.8;

  stroke-dasharray: 1000;

  stroke-dashoffset: 1000;

  animation:

    drawPath 2.5s 0.5s cubic-bezier(.22, .61, .36, 1) forwards;

}


/* =========================================
   BALL TRAVELLING ALONG CURVE
========================================= */

.orbit-ball {

  position: absolute;

  width: 14px;

  height: 14px;

  left: 40px;

  top: 322px;

  border-radius: 50%;

  background: var(--luxury-gold);

  box-shadow:

    0 0 0 4px rgba(212, 175, 55, 0.08),

    0 0 15px rgba(212, 175, 55, 0.65),

    0 0 35px rgba(212, 175, 55, 0.35);

  animation:

    ballTravel 5s 2.5s cubic-bezier(.45, .05, .55, .95) infinite;

}


/* =========================================
   BALL PULSE / GLOW
========================================= */

.orbit-ball::before {

  content: "";

  position: absolute;

  inset: -7px;

  border-radius: 50%;

  border:

    1px solid rgba(212, 175, 55, 0.35);

  animation:

    ballPulse 1.8s ease-out infinite;

}


/* =========================================
   FLOATING PARTICLES
========================================= */

.path-particle {

  display: none;

  position: absolute;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--luxury-gold);

  box-shadow:

    0 0 12px rgba(212, 175, 55, 0.55);

  z-index: 3;

}


.particle-1 {

  top: 225px;

  right: 12%;

  width: 24px;

  height: 24px;

  animation:

    floatingParticle 4s ease-in-out infinite;

}


.particle-2 {

  top: 550px;

  left: 49%;

  width: 10px;

  height: 10px;

  opacity: 0.6;

  animation:

    floatingParticle 3.5s 0.5s ease-in-out infinite;

}


.particle-3 {

  bottom: 120px;

  left: 11%;

  width: 13px;

  height: 13px;

  opacity: 0.8;

  animation:

    floatingParticle 5s 1s ease-in-out infinite;

}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes drawPath {

  to {

    stroke-dashoffset: 0;

  }

}


@keyframes ballTravel {

  0% {

    left: 40px;

    top: 322px;

    transform: scale(0.75);

  }

  20% {

    left: 115px;

    top: 220px;

    transform: scale(1);

  }

  40% {

    left: 210px;

    top: 135px;

    transform: scale(1.15);

  }

  60% {

    left: 315px;

    top: 78px;

    transform: scale(1.3);

  }

  80% {

    left: 410px;

    top: 67px;

    transform: scale(1.15);

  }

  100% {

    left: 480px;

    top: 82px;

    transform: scale(0.8);

  }

}


@keyframes ballPulse {

  0% {

    transform: scale(0.7);

    opacity: 0.8;

  }

  70% {

    transform: scale(1.8);

    opacity: 0;

  }

  100% {

    transform: scale(1.8);

    opacity: 0;

  }

}


@keyframes floatingParticle {

  0%,
  100% {

    transform:

      translateY(0) scale(1);

    opacity: 0.65;

  }

  50% {

    transform:

      translateY(-18px) scale(1.15);

    opacity: 1;

  }

}


@keyframes pathwayReveal {

  from {

    opacity: 0;

    transform:

      translateY(35px);

  }

  to {

    opacity: 1;

    transform:

      translateY(0);

  }

}


@keyframes labelReveal {

  from {

    opacity: 0;

    letter-spacing: 10px;

  }

  to {

    opacity: 1;

    letter-spacing: 4px;

  }

}


@keyframes messageReveal {

  from {

    opacity: 0;

    transform:

      translateY(45px);

  }

  to {

    opacity: 1;

    transform:

      translateY(0);

  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .final-pathway {

    min-height: 800px;

  }


  .pathway-content {

    padding-top: 100px;

  }


  .pathway-message {

    margin-top: 230px;

  }


  .orbit-path {

    width: 450px;

    height: 320px;

    transform:

      translateX(-105%);

  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .final-pathway {

    min-height: 780px;

  }


  .pathway-content {

    padding:

      90px 25px 0;

  }


  .pathway-chapter {

    font-size: 11px;

    letter-spacing: 3px;

  }


  .pathway-content h2 {

    font-size: 54px;

    letter-spacing: -1px;

  }


  /* Move animation above content */

  .orbit-path {

    width: 330px;

    height: 240px;

    top: 210px;

    left: 50%;

    transform:

      translateX(-50%);

    opacity: 0.8;

  }


  .pathway-message {

    margin-top: 230px;

  }


  .pathway-message h3 {

    font-size: 31px;

    margin-bottom: 25px;

  }


  .pathway-message p {

    font-size: 14px;

    line-height: 1.7;

  }


  .pathway-button {

    width: 100%;

    height: 70px;

    margin-top: 45px;

    font-size: 13px;

    letter-spacing: 3px;

  }


  .particle-1 {

    top: 160px;

    right: 12%;

    width: 16px;

    height: 16px;

  }


  .particle-2 {

    top: 460px;

  }


  .particle-3 {

    left: 8%;

    bottom: 100px;

  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

  .final-pathway {

    min-height: 150px;

  }


  .pathway-content {

    padding-top: 75px;

  }


  .pathway-content h2 {

    font-size: 46px;

  }


  .orbit-path {

    width: 290px;

    height: 220px;

  }


  .pathway-message {

    margin-top: 220px;

  }


  .pathway-message h3 {

    font-size: 28px;

  }


  .pathway-button {

    height: 65px;

    font-size: 11px;

  }

}

/* ==========================================
   CONTACT PAGE
   FREE CONSULTATION CTA
========================================== */

.contact-cta-section {
  position: relative;

  width: 100%;

  padding: 120px 6%;

  background: #004225;

  overflow: hidden;

  isolation: isolate;
}


/* ==========================================
   BACKGROUND GRID
========================================== */

.contact-cta-grid {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 240, 0.025) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 240, 0.025) 1px,
      transparent 1px);

  background-size: 70px 70px;

  opacity: 0.45;

  mask-image:
    linear-gradient(to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent);

  pointer-events: none;

  z-index: -2;
}


/* ==========================================
   BACKGROUND GLOW
========================================== */

.contact-cta-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -500px;
  right: -300px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(212, 175, 55, 0.09),
      transparent 65%);

  pointer-events: none;

  z-index: -1;
}


.contact-cta-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -350px;
  left: -300px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(255, 255, 240, 0.035),
      transparent 65%);

  pointer-events: none;

  z-index: -1;
}


/* ==========================================
   ORBITS
========================================== */

.contact-orbit {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  z-index: -1;
}


.contact-orbit-one {
  width: 350px;
  height: 350px;

  top: 15%;
  left: -250px;

  border: 1px solid rgba(255, 255, 240, 0.05);

  animation:
    contactOrbitRotate 20s linear infinite;
}


.contact-orbit-two {
  width: 230px;
  height: 230px;

  top: 30%;
  left: -190px;

  border: 1px solid rgba(212, 175, 55, 0.08);

  animation:
    contactOrbitReverse 15s linear infinite;
}


@keyframes contactOrbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


@keyframes contactOrbitReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}


/* ==========================================
   MAIN CONTAINER
========================================== */

.contact-cta-container {
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.05fr 0.85fr;

  gap: 90px;

  align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.contact-cta-content {
  max-width: 700px;
}


.contact-cta-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 25px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.contact-cta-eyebrow::before {
  content: "";

  width: 35px;

  height: 1px;

  background: #D4AF37;
}


/* ==========================================
   HEADING
========================================== */

.contact-cta-content h2 {
  margin: 0 0 25px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(50px, 5.5vw, 78px);

  font-weight: 500;

  line-height: 1.02;

  letter-spacing: -1.5px;
}


.contact-cta-content h2 span {
  display: block;

  color: #D4AF37;

  font-style: normal;
}


/* ==========================================
   DESCRIPTION
========================================== */

.contact-cta-content>p {
  max-width: 620px;

  margin: 0 0 35px;

  color: rgba(255, 255, 240, 0.68);

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.85;
}


/* ==========================================
   CTA ACTIONS
========================================== */

.contact-cta-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;
}


/* ==========================================
   PRIMARY BUTTON
========================================== */

.contact-primary-button {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  min-height: 58px;

  padding: 0 25px;

  background: #D4AF37;

  color: #004225;

  border: 1px solid #D4AF37;

  border-radius: 999px;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 700;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}


.contact-primary-button:hover {
  transform: translateY(-5px);

  background: #FFFFF0;

  border-color: #FFFFF0;

  box-shadow:
    0 20px 45px rgba(212, 175, 55, 0.2);
}


/* ==========================================
   SECONDARY WHATSAPP BUTTON
========================================== */

.contact-secondary-button {
  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  min-height: 58px;

  padding: 0 20px;

  background: transparent;

  color: #FFFFF0;

  border: 1px solid rgba(255, 255, 240, 0.25);

  border-radius: 999px;

  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 600;

  transition:
    transform 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}


.contact-secondary-button:hover {
  transform: translateY(-5px);

  color: #D4AF37;

  border-color: #D4AF37;

  background: rgba(212, 175, 55, 0.04);
}


.contact-whatsapp-icon {
  display: flex;

  align-items: center;

  justify-content: center;
}


.contact-whatsapp-icon svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.contact-button-arrow {
  font-size: 18px;

  transition:
    transform 0.3s ease;
}


.contact-primary-button:hover .contact-button-arrow {
  transform: translateX(6px);
}


.contact-secondary-button:hover .contact-button-arrow {
  transform: translate(4px, -4px);
}


/* ==========================================
   TRUST NOTE
========================================== */

.contact-trust-note {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 22px;

  color: rgba(255, 255, 240, 0.42);

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
}


.contact-trust-line {
  width: 30px;

  height: 1px;

  background: rgba(212, 175, 55, 0.4);
}


/* ==========================================
   CONTACT INFO CARD
========================================== */

.contact-info-card {
  position: relative;

  padding: 42px 38px;

  background:
    linear-gradient(145deg,
      rgba(255, 255, 240, 0.09),
      rgba(255, 255, 240, 0.025));

  border: 1px solid rgba(212, 175, 55, 0.35);

  border-radius: 25px;

  backdrop-filter: blur(10px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}


.contact-info-card:hover {
  transform: translateY(-8px);

  border-color: rgba(212, 175, 55, 0.65);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(212, 175, 55, 0.06);
}


/* ==========================================
   GOLD CARD LINE
========================================== */

.contact-card-top-line {
  position: absolute;

  top: 0;
  left: 35px;

  width: 60px;
  height: 3px;

  background: #D4AF37;
}


/* ==========================================
   CARD CONTENT
========================================== */

.contact-card-label {
  display: block;

  margin-bottom: 15px;

  color: #D4AF37;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}


.contact-info-card h3 {
  margin: 0 0 15px;

  color: #FFFFF0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 40px;

  font-weight: 500;

  line-height: 1.1;
}


.contact-info-card>p {
  margin: 0 0 30px;

  color: rgba(255, 255, 240, 0.58);

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.75;
}


/* ==========================================
   CONTACT DETAILS
========================================== */

.contact-details {
  display: flex;

  flex-direction: column;

  border-top: 1px solid rgba(255, 255, 240, 0.12);
}


.contact-detail-item {
  display: grid;

  grid-template-columns: 38px 1fr 20px;

  align-items: center;

  gap: 12px;

  min-height: 75px;

  border-bottom: 1px solid rgba(255, 255, 240, 0.1);

  text-decoration: none;

  transition:
    background 0.3s ease;
}


.contact-detail-item:hover {
  background:
    rgba(255, 255, 240, 0.025);
}


.contact-detail-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 32px;
  height: 32px;

  border: 1px solid rgba(212, 175, 55, 0.4);

  border-radius: 50%;

  color: #D4AF37;

  font-family: Arial, sans-serif;

  font-size: 12px;
}


.contact-detail-content {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.contact-detail-content small {
  color: rgba(255, 255, 240, 0.4);

  font-family: "Inter", Arial, sans-serif;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.contact-detail-content strong {
  color: #FFFFF0;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  font-weight: 500;
}


.contact-detail-arrow {
  color: rgba(212, 175, 55, 0.5);

  font-size: 16px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


.contact-detail-item:hover .contact-detail-arrow {
  transform: translateX(5px);

  color: #D4AF37;
}


/* ==========================================
   HOURS
========================================== */

.contact-hours {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;

  color: rgba(255, 255, 240, 0.42);

  font-family: "Inter", Arial, sans-serif;

  font-size: 9px;
}


.contact-hours-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #D4AF37;

  box-shadow:
    0 0 10px rgba(212, 175, 55, 0.6);
}


/* ==========================================
   FIXED WHATSAPP BUTTON
========================================== */

.fixed-whatsapp-button {
  position: fixed;

  right: 25px;
  bottom: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 60px;
  height: 60px;

  background: #D4AF37;

  color: #004225;

  border: 1px solid #FFFFF0;

  border-radius: 50%;

  text-decoration: none;

  z-index: 9999;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(212, 175, 55, 0.18);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}


.fixed-whatsapp-button:hover {
  transform: scale(1.1);

  background: #FFFFF0;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.25);
}


.fixed-whatsapp-button svg {
  position: relative;

  width: 27px;
  height: 27px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;

  z-index: 2;
}


/* ==========================================
   WHATSAPP PULSE
========================================== */

.whatsapp-pulse {
  position: absolute;

  inset: -7px;

  border: 1px solid rgba(212, 175, 55, 0.5);

  border-radius: 50%;

  animation:
    whatsappPulse 2.2s ease-out infinite;
}


@keyframes whatsappPulse {

  0% {
    transform: scale(0.9);

    opacity: 0.8;
  }

  70% {
    transform: scale(1.2);

    opacity: 0;
  }

  100% {
    transform: scale(1.2);

    opacity: 0;
  }

}


/* ==========================================
   WHATSAPP TOOLTIP
========================================== */

.whatsapp-tooltip {
  position: absolute;

  right: 75px;

  top: 50%;

  transform:
    translateY(-50%) translateX(10px);

  width: max-content;

  padding: 10px 14px;

  background: #FFFFF0;

  color: #004225;

  border-radius: 2px;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  font-weight: 600;

  white-space: nowrap;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2);
}


.whatsapp-tooltip::after {
  content: "";

  position: absolute;

  right: -5px;

  top: 50%;

  transform: translateY(-50%) rotate(45deg);

  width: 10px;
  height: 10px;

  background: #FFFFF0;
}


.fixed-whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;

  visibility: visible;

  transform:
    translateY(-50%) translateX(0);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 950px) {

  .contact-cta-section {
    padding: 90px 5%;
  }


  .contact-cta-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .contact-cta-content {
    max-width: 750px;
  }


  .contact-info-card {
    max-width: 650px;

    width: 100%;
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .contact-cta-section {
    padding: 75px 20px;
  }


  .contact-cta-content h2 {
    font-size: 46px;

    letter-spacing: -0.8px;
  }


  .contact-cta-content>p {
    font-size: 14px;

    line-height: 1.75;
  }


  .contact-cta-actions {
    flex-direction: column;

    width: 100%;
  }


  .contact-primary-button,
  .contact-secondary-button {
    width: 100%;
  }


  .contact-info-card {
    padding: 35px 25px;
  }


  .contact-info-card h3 {
    font-size: 35px;
  }


  .fixed-whatsapp-button {
    right: 18px;

    bottom: 18px;

    width: 56px;

    height: 56px;
  }


  .whatsapp-tooltip {
    display: none;
  }

  .final-pathway {
    padding-bottom: -40px;
  }

  .pathway-content {
    padding-top: 60px;
  }

  .pathway-message {
    margin-top: 35px;
  }

  .insights {
    padding-top: 30px;
  }

}