/* ============================================
   AQUASPORT DIVING - Main Stylesheet
   ============================================ */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-link-hover);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 { font-size: var(--text-4xl); font-weight: var(--weight-bold); }
h2 { font-size: var(--text-3xl); font-weight: var(--weight-bold); }
h3 { font-size: var(--text-2xl); font-weight: var(--weight-semibold); }
h4 { font-size: var(--text-xl); font-weight: var(--weight-semibold); }

p {
  margin-bottom: var(--space-4);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header--transparent {
  background-color: transparent;
}

.header--solid {
  background-color: rgba(250, 250, 245, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header__logo img {
  height: 52px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header__nav-link {
  font-size: 0.9375rem;
  font-weight: var(--weight-medium);
  color: var(--color-text-on-dark);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.header--solid .header__nav-link {
  color: var(--color-text-primary);
}

.header__nav-link:hover {
  color: var(--color-cyan-bright);
}

.header__nav-link--dropdown {
  position: relative;
}

.header__nav-link--dropdown::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  margin-bottom: 2px;
}

/* Dropdown */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.header__nav-link--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  font-weight: var(--weight-regular);
}

.header__dropdown a:hover {
  background-color: var(--color-sea-foam);
  color: var(--color-atlantic-blue);
}

/* Language selector */
.header__lang {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header__lang-btn {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-on-dark-muted);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.header--solid .header__lang-btn {
  color: var(--color-text-secondary);
}

.header__lang-btn--active {
  background-color: var(--color-cyan-bright);
  color: white !important;
}

.header__lang-btn:hover {
  color: white;
}

/* CTA button in header */
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-coral-gold);
  color: var(--color-deep-ocean);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.header__cta:hover {
  background: var(--gradient-cta-hover);
  color: var(--color-deep-ocean);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* Mobile menu toggle */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.header__burger span {
  display: block;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header--solid .header__burger span {
  background-color: var(--color-text-primary);
}

@media (max-width: 1024px) {
  .header__nav-list,
  .header__lang,
  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) + 1);
  background-color: var(--color-deep-ocean);
  display: flex;
  flex-direction: column;
  padding: var(--space-20) var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: white;
}

.mobile-nav__lang {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.mobile-nav__lang-btn {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  font-weight: var(--weight-medium);
}

.mobile-nav__lang-btn--active {
  color: var(--color-cyan-bright);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-hero-overlay);
}

.hero__content {
  max-width: 700px;
  color: var(--color-text-on-dark);
}

.hero__title {
  font-size: var(--text-4xl);
  color: white;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__logo {
  width: 140px;
  height: 140px;
  margin-bottom: var(--space-6);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

@media (max-width: 767px) {
  .hero__logo {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-4);
  }
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
  max-width: 580px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 767px) {
  .hero {
    height: 90vh;
    padding-bottom: var(--space-12);
    align-items: flex-end;
  }

  .hero__actions {
    flex-direction: column;
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-coral-gold);
  color: var(--color-deep-ocean);
}

.btn--primary:hover {
  background: var(--gradient-cta-hover);
  color: var(--color-deep-ocean);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.btn--secondary:hover {
  background-color: white;
  color: var(--color-deep-ocean);
  border-color: white;
}

.btn--secondary-dark {
  border-color: var(--color-atlantic-blue);
  color: var(--color-atlantic-blue);
}

.btn--secondary-dark:hover {
  background-color: var(--color-atlantic-blue);
  color: white;
  border-color: var(--color-atlantic-blue);
}

.btn--tertiary {
  color: var(--color-atlantic-blue);
  font-weight: var(--weight-semibold);
  padding: 0;
  gap: var(--space-2);
}

.btn--tertiary::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn--tertiary:hover {
  color: var(--color-cyan-bright);
}

.btn--tertiary:hover::after {
  transform: translateX(4px);
}

.btn--icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   Section: Baseline
   ============================================ */

.baseline {
  text-align: center;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}

.baseline__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-baseline);
  font-weight: var(--weight-bold);
  color: var(--color-deep-ocean);
  margin-bottom: var(--space-3);
}

.baseline__underline {
  width: 60px;
  height: 4px;
  background-color: var(--color-coral-gold);
  border-radius: 2px;
  margin: 0 auto var(--space-6);
}

.baseline__text {
  max-width: 560px;
  margin: 0 auto var(--space-10);
  color: var(--color-text-secondary);
}

.baseline__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.baseline__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.baseline__stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-atlantic-blue);
}

.baseline__stat-icon svg {
  width: 32px;
  height: 32px;
}

.baseline__stat-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  text-align: center;
}

@media (max-width: 767px) {
  .baseline__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

/* ============================================
   Section: Services
   ============================================ */

.services {
  background-color: var(--color-bg-primary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

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

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

@media (max-width: 767px) {
  .services__grid,
  .services__grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Service Card */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__icon {
  position: absolute;
  bottom: -20px;
  left: var(--space-5);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--color-atlantic-blue);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__body {
  padding: var(--space-8) var(--space-5) var(--space-5);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.card__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  line-height: var(--leading-normal);
}

.card__link {
  font-size: var(--text-sm);
}

/* ============================================
   Photo Break
   ============================================ */

.photo-break {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.photo-break__img {
  position: absolute;
  inset: -20px;
  will-change: transform;
}

.photo-break__img img {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center 70%;
}

/* ============================================
   Social Proof
   ============================================ */

.social-proof {
  background-color: var(--color-warm-sand);
  text-align: center;
}

.social-proof__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.social-proof__stars {
  display: flex;
  gap: 2px;
  color: var(--color-coral-gold);
}

.social-proof__stars svg {
  width: 24px;
  height: 24px;
}

.social-proof__score {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-deep-ocean);
}

.social-proof__count {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

.social-proof__quote {
  max-width: 640px;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
}

.social-proof__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0.7;
}

.social-proof__partners img {
  height: 40px;
  width: auto;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  background: var(--gradient-ocean);
  padding: var(--space-12) 0;
}

.stats-bar__grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.stats-bar__item {
  text-align: center;
  color: white;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-1);
}

.stats-bar__label {
  font-size: var(--text-sm);
  color: var(--color-text-on-dark-muted);
}

@media (max-width: 767px) {
  .stats-bar__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* ============================================
   CTA Final
   ============================================ */

.cta-final {
  position: relative;
  padding: var(--space-24) 0;
  text-align: center;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 37, 69, 0.75);
}

.cta-final__title {
  font-size: var(--text-3xl);
  color: white;
  margin-bottom: var(--space-4);
}

.cta-final__subtitle {
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: var(--color-lava-black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__logo img {
  height: 64px;
  margin-bottom: var(--space-4);
}

.footer__address {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-cyan-bright);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-cyan-bright);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__watermark {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.03;
  width: 300px;
  height: auto;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* ============================================
   Centre Section
   ============================================ */

.centre {
  background-color: white;
}

.centre__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.centre__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.centre__images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.centre__images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.centre__content h2 {
  margin-bottom: var(--space-4);
}

.centre__content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.centre__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .centre__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 300ms; }

.reveal-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Additional Responsive Refinements
   ============================================ */

/* Mobile: Photo break shorter */
@media (max-width: 767px) {
  .photo-break {
    height: 35vh;
    min-height: 250px;
  }

  .cta-final {
    padding: var(--space-16) 0;
  }

  .centre__images img {
    height: 160px;
  }

  .centre__images img:first-child {
    height: 200px;
  }

  .social-proof__partners {
    flex-direction: column;
    gap: var(--space-4);
  }

  .social-proof__partners img {
    height: 32px;
  }

  .social-proof__quote {
    font-size: var(--text-base);
  }
}

/* Tablet: centre images adjustment */
@media (min-width: 768px) and (max-width: 1024px) {
  .centre__images img {
    height: 180px;
  }

  .centre__images img:first-child {
    height: 240px;
  }

  .hero {
    height: 75vh;
  }
}

/* Large screens: constrain content */
@media (min-width: 1441px) {
  .hero__content {
    max-width: 800px;
  }

  .container {
    padding-left: var(--space-10);
    padding-right: var(--space-10);
  }
}

/* Touch device hover fix */
@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .card:hover .card__image img {
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll-indicator {
    animation: none;
  }

  .photo-break__img {
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print */
@media print {
  .header,
  .hero__scroll-indicator,
  .mobile-nav,
  .footer__social,
  .photo-break {
    display: none;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }
}

/* ============================================
   Inner Page Hero (shorter)
   ============================================ */

.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-10);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gradient-hero-overlay);
}

.page-hero__content {
  color: white;
}

.page-hero__title {
  font-size: var(--text-3xl);
  color: white;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-on-dark-muted);
  max-width: 600px;
}

@media (max-width: 767px) {
  .page-hero {
    height: 35vh;
    min-height: 260px;
  }
}

/* ============================================
   Content Layout (inner pages)
   ============================================ */

.content-section {
  padding: var(--space-16) 0;
}

.content-section--alt {
  background-color: var(--color-warm-sand);
}

.content-section--dark {
  background-color: var(--color-deep-ocean);
  color: white;
}

.content-section--dark h2,
.content-section--dark h3 {
  color: white;
}

.content-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-10);
}

.content-section__header h2 {
  margin-bottom: var(--space-3);
}

.content-section__header p {
  color: var(--color-text-secondary);
}

/* Two-column layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-grid--reverse {
    direction: ltr;
  }
}

.content-grid__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-grid__text h2 {
  margin-bottom: var(--space-4);
}

.content-grid__text h3 {
  margin-bottom: var(--space-3);
}

.content-grid__text p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.content-grid__text ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
}

.content-grid__text ul li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
}

.content-grid__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--color-cyan-bright);
  border-radius: 50%;
}

/* ============================================
   Info Card (grouped information)
   ============================================ */

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.info-card--highlight {
  border: 2px solid var(--color-coral-gold);
}

.info-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  color: var(--color-deep-ocean);
}

.info-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4) var(--space-8);
}

@media (max-width: 767px) {
  .info-card__grid {
    grid-template-columns: 1fr;
  }
}

.info-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.info-card__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-atlantic-blue);
  margin-top: 2px;
}

.info-card__label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.info-card__value {
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.info-card__cta {
  margin-top: var(--space-6);
  text-align: center;
}

/* ============================================
   Pricing Table
   ============================================ */

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.pricing__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing__card--featured {
  border: 2px solid var(--color-coral-gold);
  position: relative;
}

.pricing__card--featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-coral-gold);
  color: var(--color-deep-ocean);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing__card-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.pricing__card-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  flex: 1;
}

.pricing__card-price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-deep-ocean);
  margin-bottom: var(--space-1);
}

.pricing__card-details {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
}

.pricing__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-5);
  border-top: 1px solid var(--color-light-grey);
  padding-top: var(--space-4);
}

.pricing__card-features li {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
}

.pricing__card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-cyan-bright);
  font-weight: var(--weight-bold);
}

/* ============================================
   Pricing Table (simple rows)
   ============================================ */

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-6);
}

.price-table th {
  text-align: left;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: var(--space-3) var(--space-4);
  border-bottom: 2px solid var(--color-light-grey);
}

.price-table td {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-light-grey);
}

.price-table td:last-child {
  font-weight: var(--weight-semibold);
  color: var(--color-deep-ocean);
  text-align: right;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   Steps / Process
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  text-align: center;
  padding: var(--space-6);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-sea-foam);
  color: var(--color-atlantic-blue);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin: 0 auto var(--space-4);
}

.step__title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ============================================
   FAQ / Accordion
   ============================================ */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-light-grey);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-atlantic-blue);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq__item--open .faq__question::after {
  content: '−';
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq__item--open .faq__answer {
  max-height: 500px;
  padding-bottom: var(--space-5);
}

.faq__answer p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}
