:root {
  --fh-primary: #00BCD4;
  --fh-secondary: #FFA500;
  --fh-accent: #FF5252;
  --fh-dark: #111827;
  --fh-dark-soft: #1f2937;
  --fh-light: #f8fafc;
  --fh-text: #1f2937;
  --fh-muted: #6b7280;
  --fh-radius: 22px;
  --fh-shadow: 0 14px 40px rgba(15, 23, 42, 0.10);
  --fh-shadow-hover: 0 22px 54px rgba(15, 23, 42, 0.16);
}

html {
  scroll-behavior: smooth;
}

body.fergie-horizons-site {
  font-family: Inter, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--fh-text);
  background: #ffffff;
}

.fh-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.fh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(15, 23, 42, 0.08);
}

.fh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.fh-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.fh-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.fh-nav a,
.fh-mobile-nav a,
.fh-footer a,
.fh-socials a {
  text-decoration: none;
}

.fh-nav a {
  color: var(--fh-text);
  font-weight: 600;
}

.fh-nav a:hover {
  color: var(--fh-primary);
}

.fh-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.fh-mobile-nav {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.fh-mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding: 12px 0 16px;
}

.fh-mobile-nav a {
  color: var(--fh-text);
  padding: 12px 14px;
  border-radius: 12px;
}

.fh-mobile-nav a:hover {
  background: var(--fh-primary);
  color: #ffffff;
}

.fh-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.fh-hero-bg,
.fh-hero-bg img,
.fh-hero-overlay {
  position: absolute;
  inset: 0;
}

.fh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-hero-overlay {
  background: linear-gradient(180deg, rgba(0,188,212,.72), rgba(0,188,212,.34) 45%, rgba(0,0,0,.18));
}

.fh-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 120px 0 80px;
}

.fh-kicker,
.fh-section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.fh-section-tag {
  background: rgba(0,188,212,.12);
  color: var(--fh-primary);
}

.fh-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 1;
  margin: 18px 0 18px;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.fh-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.7;
  text-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.fh-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.fh-btn:hover {
  transform: translateY(-2px);
}

.fh-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--fh-secondary), var(--fh-accent));
  box-shadow: 0 14px 34px rgba(255, 82, 82, .24);
}

.fh-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.fh-btn-full {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.fh-section {
  padding: 96px 0;
}

.fh-section-header {
  text-align: center;
  margin-bottom: 42px;
}

.fh-section-header h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.1;
}

.fh-section-header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--fh-muted);
  font-size: 1.1rem;
}

.fh-grid-4,
.fh-grid-3 {
  display: grid;
  gap: 28px;
}

.fh-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-card,
.fh-package-card,
.fh-contact-card,
.fh-info-card {
  background: #fff;
  border-radius: var(--fh-radius);
  box-shadow: var(--fh-shadow);
  overflow: hidden;
}

.fh-card:hover,
.fh-package-card:hover,
.fh-contact-card:hover,
.fh-gallery-item:hover {
  box-shadow: var(--fh-shadow-hover);
  transform: translateY(-6px);
}

.fh-card,
.fh-package-card,
.fh-gallery-item,
.fh-contact-card {
  transition: .28s ease;
}

.fh-card-media {
  position: relative;
  height: 240px;
}

.fh-card-media img,
.fh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
}

.fh-card-body,
.fh-package-body {
  padding: 24px;
}

.fh-card h3,
.fh-gallery-item h3,
.fh-package-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.fh-card p,
.fh-package-card p,
.fh-info-card p,
.fh-contact-copy p,
.fh-footer p,
.fh-package-meta,
.fh-price-note {
  color: var(--fh-muted);
  line-height: 1.7;
}

.fh-card-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--fh-secondary);
  font-weight: 700;
}

.fh-gallery-item {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
}

.fh-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}

.fh-gallery-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 800;
}

.fh-packages-wrap {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.fh-package-card {
  border: 1px solid #eef2f7;
}

.fh-package-card.is-highlight {
  outline: 4px solid rgba(0, 188, 212, .26);
}

.fh-package-badge {
  padding: 12px 18px;
  text-align: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--fh-primary), var(--fh-secondary));
}

.fh-package-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin: 18px 0;
}

.fh-package-price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--fh-accent);
  margin: 6px 0 0;
}

.fh-contact-section {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.fh-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: start;
}

.fh-contact-copy h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.fh-info-card {
  margin-top: 22px;
  padding: 24px;
}

.fh-info-list {
  display: grid;
  gap: 14px;
}

.fh-form {
  padding: 28px;
}

.fh-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.fh-form input,
.fh-form select,
.fh-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--fh-text);
  background: #fff;
}

.fh-form textarea {
  min-height: 140px;
  resize: vertical;
}

.fh-form-row {
  margin-bottom: 18px;
}

.fh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fh-footer {
  background: linear-gradient(135deg, var(--fh-dark), var(--fh-dark-soft));
  color: #fff;
  padding-top: 70px;
}

.fh-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.fh-footer h3 {
  color: var(--fh-primary);
  margin-top: 0;
}

.fh-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.fh-socials a,
.fh-footer-links a,
.fh-footer a {
  color: #d1d5db;
}

.fh-socials a:hover,
.fh-footer-links a:hover,
.fh-footer a:hover {
  color: var(--fh-secondary);
}

.fh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.fh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 38px;
  padding: 20px 0 26px;
  text-align: center;
}

/* Elementor helper classes */
.fh-el-box {
  background: #fff;
  border-radius: var(--fh-radius);
  box-shadow: var(--fh-shadow);
  padding: 28px;
}

.fh-el-gradient {
  background: linear-gradient(90deg, var(--fh-primary), var(--fh-secondary));
}

.fh-el-btn .elementor-button,
.elementor-button.fh-el-btn {
  border-radius: 999px !important;
  font-weight: 800 !important;
  box-shadow: 0 14px 34px rgba(255, 82, 82, .24);
}

@media (max-width: 1024px) {
  .fh-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-grid-3,
  .fh-footer-grid,
  .fh-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .fh-nav {
    display: none;
  }

  .fh-menu-toggle {
    display: block;
  }

  .fh-grid-4,
  .fh-grid-3,
  .fh-footer-grid,
  .fh-contact-grid,
  .fh-form-grid {
    grid-template-columns: 1fr;
  }

  .fh-hero {
    min-height: 80vh;
  }

  .fh-hero-content {
    padding: 100px 0 64px;
  }

  .fh-section {
    padding: 72px 0;
  }

  .fh-card-media {
    height: 220px;
  }
}
