/* --- 1. GLOBAL TYPOGRAPHY & VARIABLES --- */
/* Fallback Variables */
/* Standard HTML Tags */
body {
  overflow-x: hidden;
}
body,
p,
li {
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-size: var(--ts-body-fs, 16px);
  line-height: var(--ts-body-lh, 1.6);
  font-weight: var(--ts-body-fw, 400);
  color: var(--ts-color-text, var(--ts-color-text, #707070));
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ts-font-heading, var(--ts-font-heading, "Cosmica Bold", sans-serif));
  color: inherit;
  text-transform: uppercase;
}
h1 {
  font-size: var(--ts-h1-fs, 60px);
  line-height: var(--ts-h1-lh, 1.2);
  font-weight: var(--ts-h1-fw, 700);
}
h2 {
  font-size: var(--ts-h2-fs, 40px);
  line-height: var(--ts-h2-lh, 1.2);
  font-weight: var(--ts-h2-fw, 700);
}
h3 {
  font-size: var(--ts-h3-fs, 26px);
  line-height: var(--ts-h3-lh, 1.3);
  font-weight: var(--ts-h3-fw, 700);
}
h4 {
  font-size: var(--ts-h4-fs, 20px);
  line-height: var(--ts-h4-lh, 1.4);
  font-weight: var(--ts-h4-fw, 700);
}
h5 {
  font-size: var(--ts-h5-fs, 16px);
  line-height: var(--ts-h5-lh, 1.5);
  font-weight: var(--ts-h5-fw, 700);
}
h6 {
  font-size: var(--ts-h6-fs, 14px);
  line-height: var(--ts-h6-lh, 1.5);
  font-weight: var(--ts-h6-fw, 700);
}
/* Utility Classes */
.ts-heading {
  font-family: var(--ts-font-heading, var(--ts-font-heading, "Cosmica Bold", sans-serif));
  font-weight: bold;
  text-transform: uppercase;
  color: var(--ts-color-dark, var(--ts-color-dark, #162a42));
}
.ts-text {
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-size: var(--ts-body-fs, 16px);
  line-height: var(--ts-body-lh, 1.6);
  color: var(--ts-color-text, var(--ts-color-text, #707070));
}
* {
  outline: none !important;
}
/* --- 2. FONTS --- */
@font-face {
  font-family: "Cosmica Extra Bold";
  src: url("assets/fonts/Cosmica/Cosmica-Extrabold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cosmica Bold";
  src: url("assets/fonts/Cosmica/Cosmica-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cosmica Medium";
  src: url("assets/fonts/Cosmica/Cosmica-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cosmica";
  src: url("assets/fonts/Cosmica/Cosmica-Extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cosmica";
  src: url("assets/fonts/Cosmica/Cosmica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cosmica";
  src: url("assets/fonts/Cosmica/Cosmica-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cosmica";
  src: url("assets/fonts/Cosmica/Cosmica-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* --- 2.1 OXYGEN CORE TYPOGRAPHY --- */
.ct-headline {
  font-family: var(--ts-font-heading, var(--ts-font-heading, "Cosmica Bold", sans-serif));
  font-weight: bold;
  text-transform: uppercase;
  color: var(--ts-color-text, var(--ts-color-dark, #162a42));
}
.ct-text-block,
.oxy-rich-text {
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-size: var(--ts-body-fs, 16px);
  line-height: var(--ts-body-lh, 1.6);
  color: var(--ts-color-text, var(--ts-color-text, #707070));
}
/* --- 2.5 GLOBAL BUTTONS --- */
.ct-link-button,
.oxy-button {
  background-color: var(--ts-btn-bg, var(--ts-color-primary, #2ac4d1)) !important;
  color: var(--ts-btn-txt, var(--ts-color-white, #ffffff));
  font-family: var(--ts-font-heading, var(--ts-font-heading, "Cosmica Bold", sans-serif));
  font-size: var(--ts-body-fs, 16px);
  letter-spacing: 1px;
  padding: var(--ts-btn-padding, 22px 40px);
  border: none !important;
  cursor: pointer;
  border-radius: var(--ts-btn-radius, 50px) !important;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  align-self: center;
  display: block;
  box-shadow: 0 10px 20px rgba(42, 196, 209, 0.15);
  margin-top: 10px;
}
.ct-link-button:hover,
.oxy-button:hover {
  background-color: var(--ts-btn-hover, #219ca7) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(42, 196, 209, 0.3);
  color: var(--ts-btn-txt, var(--ts-color-white, #ffffff));
}
/* --- 3. OXYGEN & HEADER --- */
.ct-section-inner-wrap,
.oxy-header-container {
  max-width: 90% !important;
  padding: 0 !important;
}
.oxy-header-wrapper {
  width: 100%;
  z-index: 1000;
}
.oxy-header-wrapper .oxy-header-row,
.oxy-header-wrapper .oxy-header-container {
  background-color: transparent !important;
  border: none !important;
}
.oxy-site-navigation__mobile-open-button {
  font-family: var(--ts-font-menu, "Cosmica Medium", sans-serif);
  font-size: var(--ts-menu-fs, 15px) !important;
  color: var(--ts-color-text, #707070) !important;
}
.oxy-site-navigation__mobile-open-button svg {
  width: 30px !important;
}
.oxy-site-navigation ul {
  margin-bottom: 0;
}
@media (max-width: 1120px) {
  .oxy-site-navigation ul li {
    display: block !important;
  }
}
.oxy-site-navigation ul li:hover {
  background-color: transparent !important;
}
.oxy-site-navigation ul li.current_page_item a {
  color: #2ac4d1 !important;
}
.oxy-site-navigation ul li.current_page_item a::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 2px;
  bottom: 0;
  background-color: var(--ts-color-primary, #2ac4d1);
  transition: width 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}
.oxy-site-navigation ul li a,
.oxy-site-navigation ul li button {
  font-family: var(--ts-font-menu, "Cosmica Medium", sans-serif);
  font-weight: normal;
  color: #808080 !important;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: right;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  background: transparent !important;
  font-size: var(--ts-menu-fs, 15px);
  border: none;
  cursor: pointer;
}
.oxy-site-navigation ul li a::before,
.oxy-site-navigation ul li button::before {
  display: none;
}
.oxy-site-navigation ul li a::after,
.oxy-site-navigation ul li button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--ts-color-primary, #2ac4d1);
  transition: width 0.3s ease;
}
.oxy-site-navigation ul li a:hover {
  color: var(--ts-color-primary, #2ac4d1) !important;
}
.oxy-site-navigation ul li a:hover::after {
  width: 90%;
}
.site-header {
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
}
.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.site-header__logo img {
  height: 40px;
  width: auto;
}
.site-header__nav {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__link {
  color: var(--ts-color-white, #ffffff);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  font-weight: normal;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  padding-bottom: 5px;
}
.site-header__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--ts-color-primary, #2ac4d1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-header__link:hover {
  color: var(--ts-color-primary, #2ac4d1);
}
.site-header__link:hover::after {
  width: 100%;
}
/* --- 4. MODULES --- */
/* Hero */
.hero-module {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ts-hero-color, var(--ts-color-white, #ffffff));
  overflow: hidden;
}
.hero-module__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: heroZoom 15s ease-out infinite alternate;
}
.hero-module__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ts-hero-overlay-bg, rgba(22, 42, 66, 0.7));
  display: var(--ts-hero-overlay-display, block);
  z-index: 1;
}
.hero-module__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .hero-module__content {
    max-width: 800px;
  }
}
.hero-module__logo-img {
  max-width: 500px;
  margin-bottom: 40px;
  height: auto;
}
@media (max-width: 1024px) {
  .hero-module__logo-img {
    max-width: 100%;
  }
}
.hero-module__heading {
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: inherit;
}
@media (max-width: 1024px) {
  .hero-module__heading {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero-module__subheading {
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0;
  margin: 0;
  margin-top: 40px;
  text-transform: uppercase;
  color: inherit;
}
@media (max-width: 1024px) {
  .hero-module__subheading {
    font-size: 20px;
    line-height: 24px;
  }
}
/* Headline Moments */
.headline-moments-module {
  padding: 80px 0 80px 5%;
  background: var(--ts-color-white, #ffffff);
}
@media (max-width: 768px) {
  .headline-moments-module {
    padding: 40px 5%;
  }
}
.headline-moments-module__container {
  max-width: unset;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .headline-moments-module__container {
    grid-template-columns: 1fr;
  }
}
.headline-moments-module__text {
  grid-column: span 5;
}
@media (max-width: 900px) {
  .headline-moments-module__text {
    grid-column: span 1;
  }
}
.headline-moments-module__desc {
  font-family: sans-serif;
  color: var(--ts-color-text, #707070);
  line-height: 1.6;
}
.headline-moments-module__grid {
  grid-column: span 7;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 350px;
  gap: 5px;
}
@media (max-width: 900px) {
  .headline-moments-module__grid {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .headline-moments-module__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
}
.headline-moments-module__grid-item {
  overflow: hidden;
}
.headline-moments-module__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.headline-moments-module__grid-item img:hover {
  transform: scale(1.05);
}
.headline-moments-module__grid-item:nth-child(1),
.headline-moments-module__grid-item:nth-child(4) {
  grid-column: span 5;
}
@media (max-width: 768px) {
  .headline-moments-module__grid-item:nth-child(1),
  .headline-moments-module__grid-item:nth-child(4) {
    grid-column: span 1 !important;
  }
}
.headline-moments-module__grid-item:nth-child(2),
.headline-moments-module__grid-item:nth-child(3) {
  grid-column: span 7;
}
@media (max-width: 768px) {
  .headline-moments-module__grid-item:nth-child(2),
  .headline-moments-module__grid-item:nth-child(3) {
    grid-column: span 1 !important;
  }
}
/* Event Types */
.event-types-module {
  padding: 80px 5%;
  background: var(--ts-color-light, #f5f5f5);
  text-align: center;
}
.event-types-module__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .event-types-module__cards {
    grid-template-columns: 1fr;
  }
}
.event-types-module__card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  cursor: pointer;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.event-types-module__card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.event-types-module__card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.event-types-module__card:hover .event-types-module__card-img {
  transform: scale(1.05);
}
.event-types-module__card-title {
  padding: 20px;
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-size: 26px;
  font-weight: 500;
  color: var(--ts-color-text, #707070);
}
/* Spaces */
.spaces-module {
  padding: 80px 5%;
  background: var(--ts-color-white, #ffffff);
  text-align: center;
}
.spaces-module__desc {
  font-family: sans-serif;
  color: var(--ts-color-text, #707070);
  max-width: 1024px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .spaces-module__desc {
    max-width: 800px;
  }
}
.spaces-module__gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 350px;
  gap: 5px;
}
@media (max-width: 768px) {
  .spaces-module__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}
.spaces-module__item {
  overflow: hidden;
}
.spaces-module__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.spaces-module__item img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .spaces-module__item {
    grid-column: span 1 !important;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}
.spaces-module__gallery--layout-1 {
  grid-auto-rows: auto;
}
.spaces-module__gallery--layout-1 .spaces-module__item {
  grid-column: span 12;
}
.spaces-module__gallery--layout-1 .spaces-module__item img {
  height: auto;
  /* Allow image to be vertically unrestricted */
  max-height: 80vh;
  /* Just keeping a reasonable sane cap */
}
.spaces-module__gallery--layout-2 .spaces-module__item {
  grid-column: span 6;
}
.spaces-module__gallery--layout-3 .spaces-module__item {
  grid-column: span 4;
}
.spaces-module__gallery--layout-4 .spaces-module__item {
  grid-column: span 6;
}
.spaces-module__gallery--layout-5 .spaces-module__item:nth-child(1),
.spaces-module__gallery--layout-5 .spaces-module__item:nth-child(2),
.spaces-module__gallery--layout-5 .spaces-module__item:nth-child(3) {
  grid-column: span 4;
}
.spaces-module__gallery--layout-5 .spaces-module__item:nth-child(4),
.spaces-module__gallery--layout-5 .spaces-module__item:nth-child(5) {
  grid-column: span 6;
}
.spaces-module__gallery--layout-6 .spaces-module__item {
  grid-column: span 4;
}
/* Stats */
.stats-module {
  padding: 80px 5%;
  background: var(--ts-color-white, #ffffff);
  text-align: center;
}
.stats-module__title {
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  font-size: 24px;
  color: var(--ts-color-dark, #162a42);
  margin-bottom: 10px;
}
.stats-module__desc {
  color: var(--ts-color-text, #707070);
  font-family: sans-serif;
  margin: 0 auto 80px auto;
  max-width: 800px;
}
.stats-module__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 769px) {
  .stats-module__grid {
    flex-direction: column;
  }
}
.stats-module__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-module__number {
  color: var(--ts-color-primary, #2ac4d1);
  font-size: 48px;
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  line-height: 1;
  margin-bottom: 5px;
}
.stats-module__label {
  font-size: 14px;
  color: var(--ts-color-dark, #162a42);
  font-weight: bold;
  text-transform: uppercase;
}
/* Contact */
.contact-module {
  padding: 80px 5%;
  background: var(--ts-color-white, #ffffff);
}
.contact-module__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-module__container {
    grid-template-columns: 1fr;
  }
}
.contact-module__info {
  padding-right: 40px;
}
@media (max-width: 768px) {
  .contact-module__info {
    text-align: center;
    padding: 0;
  }
}
.contact-module__desc {
  font-family: sans-serif;
  color: var(--ts-color-text, #707070);
  line-height: 1.6;
}
.contact-module__divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0 30px;
}
.contact-module__location {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  color: var(--ts-color-text, #707070);
  cursor: pointer;
}
@media (max-width: 768px) {
  .contact-module__location {
    text-align: left;
    justify-content: center;
    padding: 0;
  }
}
.contact-module__location:hover .contact-module__location-icon {
  background: var(--ts-color-white, #ffffff);
  border: 1px solid var(--ts-color-primary, #2ac4d1);
  box-shadow: 0 5px 15px rgba(42, 196, 209, 0.3);
  transform: scale(1.1);
}
.contact-module__location:hover .contact-module__location-icon svg {
  animation: pinBounce 0.5s ease;
}
.contact-module__location-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.contact-module__location-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(42, 196, 209, 0.4);
  animation: pulseRing 2s infinite;
}
.contact-module__location-text {
  font-size: 15px;
  line-height: 1.6;
}
.contact-module__location-text strong {
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  color: var(--ts-color-dark, #162a42);
  font-size: 18px;
  display: block;
  margin-bottom: 3px;
}
.contact-module__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-module__input,
.contact-module__textarea {
  width: 100%;
  padding: 20px 30px;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-size: 15px;
  color: #999;
}
.contact-module__input:focus,
.contact-module__textarea:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(42, 196, 209, 0.1);
}
.contact-module__input::placeholder,
.contact-module__textarea::placeholder {
  color: #999;
  font-weight: 500;
}
.contact-module__textarea {
  min-height: 180px;
  resize: vertical;
  border-radius: 30px;
}
.contact-module__submit {
  background: var(--ts-color-primary, #2ac4d1);
  color: var(--ts-color-white, #ffffff);
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  font-size: 16px;
  letter-spacing: 1px;
  padding: 22px 40px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  align-self: center;
  width: 100%;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(42, 196, 209, 0.15);
  margin-top: 10px;
}
.contact-module__submit:hover {
  background: var(--ts-color-primary, #2ac4d1);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(42, 196, 209, 0.3);
}
.contact-module__form-wrapper {
  /* CF7 specific resets & styles so it matches .contact-module__form */
}
.contact-module__form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Ajax Loader & response output tweaks */
}
.contact-module__form-wrapper .wpcf7-form p {
  margin: 0;
  padding: 0;
  width: 100%;
}
.contact-module__form-wrapper .wpcf7-form input[type="text"],
.contact-module__form-wrapper .wpcf7-form input[type="email"],
.contact-module__form-wrapper .wpcf7-form input[type="tel"],
.contact-module__form-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 20px 30px;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  font-family: var(--ts-font-body, var(--ts-font-body, "Cosmica", sans-serif));
  font-size: 15px;
  color: #999;
}
.contact-module__form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-module__form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-module__form-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-module__form-wrapper .wpcf7-form textarea:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(42, 196, 209, 0.1);
}
.contact-module__form-wrapper .wpcf7-form input[type="text"]::placeholder,
.contact-module__form-wrapper .wpcf7-form input[type="email"]::placeholder,
.contact-module__form-wrapper .wpcf7-form input[type="tel"]::placeholder,
.contact-module__form-wrapper .wpcf7-form textarea::placeholder {
  color: #999;
  font-weight: 500;
}
.contact-module__form-wrapper .wpcf7-form textarea {
  min-height: 180px;
  resize: vertical;
  border-radius: 30px;
}
.contact-module__form-wrapper .wpcf7-form input[type="submit"] {
  background: var(--ts-color-primary, #2ac4d1);
  color: var(--ts-color-white, #ffffff);
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  font-size: 16px;
  letter-spacing: 1px;
  padding: 22px 40px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  align-self: center;
  display: block;
  width: 100%;
  box-shadow: 0 10px 20px rgba(42, 196, 209, 0.15);
  margin-top: 10px;
}
.contact-module__form-wrapper .wpcf7-form input[type="submit"]:hover {
  background: var(--ts-color-primary, #2ac4d1);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(42, 196, 209, 0.3);
}
.contact-module__form-wrapper .wpcf7-form .wpcf7-spinner {
  margin-left: 10px;
}
.contact-module__form-wrapper .wpcf7-form .wpcf7-response-output {
  border-radius: 4px;
  margin: 0 !important;
}
/* Map Module */
.map-module {
  width: 100%;
  padding: 0 5% 80px 5%;
  background: var(--ts-color-white, #ffffff);
}
.map-module__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.map-module__embed {
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
  background: var(--ts-color-light, #f5f5f5);
}
@media (max-width: 768px) {
  .map-module__embed {
    padding-bottom: 60%;
  }
}
.map-module__embed iframe,
.map-module__embed img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Footer */
/* ==========================================================================
   SITE FOOTER (As per Screenshot 02.16.27)
   ========================================================================== */
.site-footer {
  background: var(--ts-color-dark, #162a42);
  padding: 60px 5%;
  color: var(--ts-color-white, #ffffff);
}
.site-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .site-footer__container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.site-footer__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.site-footer__brand img {
  height: 45px;
  width: auto;
  display: block;
}
.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__label {
  font-family: sans-serif;
  font-size: 14px;
  color: var(--ts-color-white, #ffffff);
  opacity: 0.9;
}
.site-footer__address {
  font-family: sans-serif;
  font-size: 14px;
  color: var(--ts-color-white, #ffffff);
  margin: 0;
  opacity: 0.8;
  letter-spacing: 0.5px;
}
.site-footer__socials {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-footer__socials {
    width: 100%;
    justify-content: flex-start;
  }
}
.site-footer__social-icon {
  font-family: var(--ts-font-heading, "Cosmica Bold", sans-serif);
  font-size: 12px;
  color: var(--ts-color-white, #ffffff);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-footer__social-icon:hover {
  color: var(--ts-color-primary, #2ac4d1);
  transform: translateY(-2px);
}
/* Section Header Shared */
.section-header {
  font-family: var(--ts-font-heading, var(--ts-font-heading, "Cosmica Bold", sans-serif));
  font-size: var(--ts-sec-fs, 45px);
  line-height: var(--ts-sec-lh, 1.2);
  font-weight: var(--ts-sec-fw, 700);
  color: var(--ts-color-text, var(--ts-color-text, #707070));
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .section-header {
    font-size: 32px;
    line-height: normal;
  }
}
/* --- Media + Screens Module --- */
.media-screens-module {
  background: var(--ts-color-light, #f5f5f5);
}
.media-screens-module__container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
@media (max-width: 900px) {
  .media-screens-module__container {
    grid-template-columns: 1fr;
  }
}
.media-screens-module__image-col {
  grid-column: span 6;
  overflow: hidden;
}
.media-screens-module__image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.media-screens-module__image-col img:hover {
  transform: scale(1.05);
}
.media-screens-module__text-col {
  grid-column: span 6;
  padding: 80px 5%;
  max-width: 600px;
  margin: 0 20px;
}
@media (max-width: 900px) {
  .media-screens-module__text-col {
    grid-column: span 1;
    padding: 40px 5%;
    text-align: center;
  }
}
.media-screens-module__text {
  font-family: sans-serif;
  color: var(--ts-color-text, #707070);
  line-height: 1.6;
  font-size: var(--ts-body-fs, 16px);
}
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(42, 196, 209, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(42, 196, 209, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(42, 196, 209, 0);
  }
}
@keyframes pinBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Custom AOS Diagonal Reveals */
[data-aos="fade-top-left"] {
  transform: translate(-50px, -50px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="fade-top-left"].aos-animate {
  transform: translate(0, 0);
  opacity: 1;
}
[data-aos="fade-top-right"] {
  transform: translate(50px, -50px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="fade-top-right"].aos-animate {
  transform: translate(0, 0);
  opacity: 1;
}
[data-aos="fade-bottom-left"] {
  transform: translate(-50px, 50px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="fade-bottom-left"].aos-animate {
  transform: translate(0, 0);
  opacity: 1;
}
[data-aos="fade-bottom-right"] {
  transform: translate(50px, 50px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos="fade-bottom-right"].aos-animate {
  transform: translate(0, 0);
  opacity: 1;
}
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: normal;
  display: block;
  text-align: center;
  padding-top: 5px;
}
.wpcf7-spinner {
  margin: 10px auto;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 12px;
  text-align: center;
}
