.elementor-1368 .elementor-element.elementor-element-1ab6c2e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8d6cd47 *//* ========== RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal-deep: #1a8a8a;
  --teal-mid: #3cbcb4;
  --teal-light: #7de4dc;
  --teal-pale: #b8f0ec;
  --teal-wash: #e6faf8;
  --teal-bg: #f2fcfb;
  --charcoal: #1a1a1a;
  --dark-grey: #2d2d2d;
  --mid-grey: #5a5a5a;
  --soft-grey: #8a8a8a;
  --light-grey: #e8e8e8;
  --white: #ffffff;
  --cream: #fafcfb;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --shadow-soft: 0 4px 24px rgba(26, 138, 138, 0.10);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lift: 0 8px 32px rgba(26, 138, 138, 0.15);
  --radius: 6px;
  --max-width: 1100px;
  --section-pad: 90px;
  --nav-height: 70px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--teal-mid); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 138, 138, 0.08);
  transition: box-shadow 0.3s;
  overflow: visible;
}
.nav.scrolled { box-shadow: var(--shadow-soft); }
.nav__inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}

/* Logo + text brand lockup */
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--charcoal);
  flex-shrink: 0;
}
.nav__brand:hover { color: var(--charcoal); }
.nav__logo {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.04));
}
.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.nav__links { display: flex; gap: 36px; list-style: none; }
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark-grey); position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--teal-mid);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--teal-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--charcoal);
  margin: 5px 0; transition: 0.3s;
}

/* ========== HERO ========== */
.hero {
  margin-top: var(--nav-height);
  background: linear-gradient(135deg, #7de4dc 0%, #3cbcb4 40%, #1a8a8a 100%);
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,0,0,0.06) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; padding: 60px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500; line-height: 1.15;
  color: var(--white); margin-bottom: 22px;
}
.hero__title em {
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.hero__desc {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,0.9); max-width: 480px;
  margin-bottom: 16px; font-weight: 300;
}
.hero__list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  max-width: 480px;
}
.hero__list li {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(255,255,255,0.9); font-weight: 300;
  padding-left: 20px;
  position: relative;
  margin-bottom: 2px;
}
.hero__list li::before {
  content: '–';
  position: absolute; left: 0;
  color: rgba(255,255,255,0.7);
}
.hero__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 38px;
  background: var(--white);
  color: var(--teal-deep);
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  color: var(--teal-deep);
}
.hero__image {
  position: relative;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.hero__image img {
  width: 100%; height: 480px; object-fit: cover;
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-light));
}

/* ========== SECTION SHARED ========== */
.section { padding: var(--section-pad) 0; }
.section--teal { background: var(--teal-bg); }
.section__label {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-mid); margin-bottom: 12px;
}
.section__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 20px;
}
.section__text {
  font-size: 1rem; line-height: 1.85;
  color: var(--mid-grey); max-width: 640px;
}
.divider {
  width: 48px; height: 2px; background: var(--teal-mid);
  margin: 24px 0;
}

/* ========== ABOUT ========== */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about__image {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.about__image img {
  width: 100%; height: 440px; object-fit: cover;
  background: linear-gradient(135deg, var(--teal-wash), var(--teal-pale));
}
.about__image::after {
  content: ''; position: absolute;
  bottom: -12px; right: -12px;
  width: 120px; height: 120px;
  border: 2px solid var(--teal-light);
  border-radius: 12px; z-index: -1;
}
.about__badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.about__badge-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__badge-icon svg { width: 20px; height: 20px; fill: var(--white); }
.about__badge-text { font-size: 0.85rem; line-height: 1.4; }
.about__badge-title { font-weight: 600; color: var(--charcoal); }
.about__badge-sub { color: var(--soft-grey); font-size: 0.78rem; }
.about__subheading {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 10px;
  margin-top: 8px;
}

/* ========== SERVICES ========== */
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.service-card {
  padding: 36px 30px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(26, 138, 138, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.service-card__icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: var(--teal-wash);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg { width: 26px; height: 26px; stroke: var(--teal-deep); fill: none; stroke-width: 1.8; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 10px; color: var(--charcoal);
}
.service-card__desc {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--soft-grey);
}

/* ========== AREAS OF SUPPORT ========== */
.support__list {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.support__tag {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--teal-pale);
  border-radius: 30px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--teal-deep);
  transition: background 0.25s, color 0.25s;
}
.support__tag:hover {
  background: var(--teal-deep);
  color: var(--white);
}

/* ========== LOCATION ========== */
.location__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.location__map {
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.location__map iframe {
  width: 100%; height: 340px; border: 0; flex-shrink: 0;
}
.location__map-link {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s;
}
.location__map-link:hover {
  background: var(--teal-mid);
  color: var(--white);
}
.location__details { padding-top: 8px; }
.location__item {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.location__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-wash);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.location__icon svg { width: 20px; height: 20px; stroke: var(--teal-deep); fill: none; stroke-width: 1.8; }
.location__item-title {
  font-weight: 600; font-size: 0.95rem;
  color: var(--charcoal); margin-bottom: 2px;
}
.location__item-text {
  font-size: 0.9rem; color: var(--soft-grey); line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 138, 138, 0.06);
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mid-grey); margin-bottom: 6px;
}
.form__input,
.form__textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--charcoal); background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(60, 188, 180, 0.12);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__submit {
  display: inline-block; width: 100%;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: var(--white); border: none;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.contact__info { padding-top: 8px; }
.contact__text {
  font-size: 1rem; line-height: 1.85;
  color: var(--mid-grey); margin-bottom: 32px;
}
.contact__method {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.contact__method-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact__method-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.contact__method-label { font-size: 0.78rem; color: var(--soft-grey); text-transform: uppercase; letter-spacing: 0.08em; }
.contact__method-value { font-size: 1rem; font-weight: 500; color: var(--charcoal); }
.contact__method-value a { color: var(--charcoal); }
.contact__method-value a:hover { color: var(--teal-deep); }

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  padding: 48px 0 32px; text-align: center;
}
.footer__brand {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 18px;
}
.footer__logo {
  height: 44px !important; 
  filter: brightness(0) invert(1);
  max-height: 44px !important;
  width: auto !important; object-fit: contain;
}
.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.footer__text {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer__text a { color: rgba(255,255,255,0.6); }
.footer__text a:hover { color: var(--teal-light); }

/* ========== FIXED BOTTOM CONTACT BAR ========== */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--white);
  border-top: 1px solid rgba(26, 138, 138, 0.12);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.bottom-bar__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.bottom-bar__text { display: flex; flex-direction: column; }
.bottom-bar__name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.2;
}
.bottom-bar__tagline {
  font-size: 0.75rem; color: var(--soft-grey);
  font-weight: 400;
}
.bottom-bar__actions {
  display: flex; gap: 10px; align-items: center;
  flex-shrink: 0;
}
.bottom-bar__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.bottom-bar__btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.bottom-bar__btn--phone {
  background: var(--teal-wash);
  color: var(--teal-deep);
}
.bottom-bar__btn--phone:hover { color: var(--teal-deep); }
.bottom-bar__btn--email {
  background: var(--teal-wash);
  color: var(--teal-deep);
}
.bottom-bar__btn--email:hover { color: var(--teal-deep); }
.bottom-bar__btn--form {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: var(--white);
}
.bottom-bar__btn--form:hover { color: var(--white); }

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__list { margin-left: auto; margin-right: auto; text-align: left; }
  .hero__image { max-width: 480px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { max-width: 480px; margin: 0 auto; }
  .about__badge { justify-content: center; }
  .services__grid { grid-template-columns: 1fr 1fr; max-width: 600px; margin: 48px auto 0; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map iframe { height: 280px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }
  .bottom-bar__text { display: none; }
  .bottom-bar__inner { justify-content: center; }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 600px) {
  :root {
    --section-pad: 56px;
    --nav-height: 64px;
  }

  .container { padding: 0 18px; }

  /* Nav */
  .nav__inner { padding: 0 18px; height: var(--nav-height); }
  .nav__logo {
    height: 42px !important;
    max-height: 42px !important;
  }
  .nav__brand-text {
    font-size: 0.88rem;
  }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); padding: 24px 20px;
    gap: 20px; box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--light-grey);
  }
  .nav__toggle { display: block; }

  /* Hero */
  .hero { min-height: auto; padding: 0; }
  .hero__inner { padding: 40px 18px 48px; gap: 32px; }
  .hero__tagline { font-size: 0.7rem; }
  .hero__title { font-size: 2rem; }
  .hero__desc { font-size: 0.95rem; margin-bottom: 12px; }
  .hero__list li { font-size: 0.95rem; }
  .hero__cta { padding: 12px 30px; font-size: 0.78rem; }
  .hero__image img { height: 280px; }

  /* About */
  .about__grid { gap: 36px; }
  .about__image img { height: 280px !important; }
  .section__heading { font-size: 1.6rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; max-width: 100%; }
  .service-card { padding: 28px 22px; }

  /* Support tags */
  .support__list { gap: 8px; }
  .support__tag { padding: 8px 16px; font-size: 0.8rem; }

  /* Location */
  .location__map iframe { height: 220px; }

  /* Contact */
  .contact__form { padding: 24px 18px; }
  .form__input, .form__textarea { padding: 11px 14px; font-size: 0.9rem; }

  /* Footer */
  .footer { padding: 40px 18px 28px; }

  /* Bottom bar mobile */
  .bottom-bar__inner { padding: 10px 12px; gap: 8px; }
  .bottom-bar__btn { padding: 10px 14px; font-size: 0.72rem; }
  body { padding-bottom: 64px; }
}

/* ========== VERY SMALL SCREENS ========== */
@media (max-width: 380px) {
  .bottom-bar__btn { padding: 9px 10px; font-size: 0.68rem; gap: 4px; }
  .bottom-bar__btn--email span { display: none; }
  .nav__logo { height: 36px !important; max-height: 36px !important; }
  .nav__brand-text { font-size: 0.78rem; }
  .nav__brand { gap: 8px; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}/* End custom CSS */