:root {
  --primary: #d32426;
  --secondary: #f68957;
  --background: #e7ecea;
  --accent: #00b2e3;
  --deep-blue: #1d6794;
  --ink: #0f1b24;
  --slate: #3b4c57;
  --card: #f7f9f8;
  --border: #c5d1cd;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(13, 30, 46, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f3f6f5 0%, var(--background) 45%, #f6f8f7 100%);
}

body.service-page {
  background:
    radial-gradient(circle at 12% 15%, rgba(246, 137, 87, 0.18), transparent 45%),
    radial-gradient(circle at 88% 10%, rgba(0, 178, 227, 0.16), transparent 50%),
    linear-gradient(180deg, #f7f8f6 0%, #e9eeec 55%, #f6f8f7 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

p {
  line-height: 1.6;
  margin: 0 0 1rem 0;
  color: var(--slate);
}

h1,
h2,
h3 {
  font-family: "Source Serif 4", serif;
  margin: 0 0 1rem 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 2vw + 1.8rem, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 1.4vw + 1.5rem, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

small {
  font-size: 0.85rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-4 {
  grid-column: span 4;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.eyebrow.dark {
  color: var(--deep-blue);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero h1,
.hero h2 {
  color: var(--white);
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 24, 36, 0.92) 0%, rgba(13, 24, 36, 0.7) 40%, rgba(29, 103, 148, 0.65) 100%);
  z-index: 2;
}

.site-header {
  position: relative;
  z-index: 3;
  padding: 24px 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 64px 0 96px;
  align-items: center;
}

.hero-copy {
  padding-right: 12px;
}

.hero-copy .lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-panel {
  background: rgba(15, 32, 49, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-panel h2 {
  color: var(--white);
  font-size: 1.5rem;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.hero-panel li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 22px;
}

.hero-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 7px;
}

.cta-group {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #b81f22;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #e46b38;
}

.btn-light {
  background: var(--white);
  color: var(--deep-blue);
  border-color: transparent;
}

.btn-light:hover {
  background: #e7ecea;
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-text {
  background: transparent;
  color: var(--deep-blue);
  border: 1px solid var(--border);
  padding: 8px 16px;
}

.btn-text:hover {
  border-color: var(--deep-blue);
  color: var(--primary);
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.faq-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.steps {
  align-items: stretch;
}

.step-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(13, 30, 46, 0.08);
}

.icon-circle {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 178, 227, 0.12);
  border-radius: 50%;
  color: var(--deep-blue);
  margin-bottom: 18px;
}

.icon-circle svg,
.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.slogans {
  background: linear-gradient(140deg, rgba(29, 103, 148, 0.08), rgba(0, 178, 227, 0.08));
}

.slogan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.slogan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  font-weight: 600;
  color: var(--deep-blue);
  box-shadow: 0 12px 24px rgba(13, 30, 46, 0.06);
}

.slogan-card:nth-child(odd) {
  border-left: 4px solid var(--primary);
}

.slogan-card:nth-child(even) {
  border-left: 4px solid var(--accent);
}

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

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(29, 103, 148, 0.15);
  box-shadow: 0 14px 30px rgba(13, 30, 46, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.why {
  background: linear-gradient(180deg, rgba(231, 236, 234, 0.4), rgba(29, 103, 148, 0.08));
}

.feature-grid {
  row-gap: 24px;
}

.feature-block {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(13, 30, 46, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29, 103, 148, 0.12);
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 20px;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--deep-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary);
}

.faq-trigger[aria-expanded="true"]::after {
  content: "-";
  color: var(--deep-blue);
}

.faq-panel {
  margin-top: 12px;
}

.contact {
  background: linear-gradient(120deg, rgba(0, 178, 227, 0.08), rgba(246, 137, 87, 0.08));
}

.contact-grid {
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-status {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  background: rgba(29, 103, 148, 0.08);
  color: var(--deep-blue);
  border: 1px solid rgba(29, 103, 148, 0.2);
}

.form-status.success {
  background: rgba(0, 178, 227, 0.12);
  border-color: rgba(0, 178, 227, 0.4);
}

.form-status.error {
  background: rgba(211, 36, 38, 0.12);
  border-color: rgba(211, 36, 38, 0.4);
  color: #8a1b1d;
}

label {
  font-weight: 600;
  color: var(--deep-blue);
}

input,
select,
textarea {
  border: 1px solid #b9c6c2;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #f9fbfa;
}

input[readonly] {
  background: #eef3f1;
  color: var(--slate);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 178, 227, 0.2);
  outline: none;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.service-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(197, 209, 205, 0.6);
  backdrop-filter: blur(10px);
  padding: 18px 0;
}

.service-header .brand {
  color: var(--deep-blue);
}

.service-header .main-nav a {
  color: var(--deep-blue);
}

.service-header .main-nav a:hover,
.service-header .main-nav a:focus-visible {
  color: var(--primary);
}

.service-header .nav-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-header .nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(29, 103, 148, 0.3);
  background: rgba(29, 103, 148, 0.08);
  color: var(--deep-blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.service-header .nav-toggle-icon {
  display: inline-flex;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 999px;
}

.service-header .nav-toggle-icon::before,
.service-header .nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.service-header .nav-toggle-icon::before {
  top: -6px;
}

.service-header .nav-toggle-icon::after {
  top: 6px;
}

.service-header .nav-bar {
  flex-wrap: wrap;
  row-gap: 14px;
}

.service-header .main-nav {
  row-gap: 10px;
}

.service-hero {
  padding: 72px 0 56px;
}

.service-hero-grid {
  align-items: center;
}

.service-hero-copy .lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.service-hero-copy {
  animation: fade-up 0.7s ease both;
}

.service-hero-media {
  animation: float-in 0.9s ease both;
}

.service-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 103, 148, 0.2);
  box-shadow: var(--shadow);
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 28px;
}

.meta-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px 18px;
  box-shadow: 0 10px 22px rgba(13, 30, 46, 0.08);
  display: grid;
  gap: 6px;
}

.meta-card strong {
  color: var(--deep-blue);
  font-size: 0.95rem;
}

.service-overview {
  background: linear-gradient(180deg, rgba(231, 236, 234, 0.3), rgba(0, 178, 227, 0.08));
}

.service-highlights {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(13, 30, 46, 0.08);
  animation: fade-up 0.6s ease both;
}

.highlight-card:nth-child(2) {
  animation-delay: 0.08s;
}

.highlight-card:nth-child(3) {
  animation-delay: 0.16s;
}

.service-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-aside {
  display: grid;
  gap: 18px;
}

.service-aside li {
  margin-bottom: 12px;
  color: var(--slate);
  position: relative;
  padding-left: 22px;
}

.service-aside li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 7px;
}

.service-gallery {
  background: #f6f9f8;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(13, 30, 46, 0.08);
  animation: fade-up 0.6s ease both;
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  font-weight: 600;
  color: var(--deep-blue);
}

.booking {
  background: linear-gradient(120deg, rgba(246, 137, 87, 0.12), rgba(0, 178, 227, 0.1));
}

.booking-grid {
  align-items: start;
}

.booking-points {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.point-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(13, 30, 46, 0.07);
}

.point-card span {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.related-services {
  background: #f8faf9;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-copy,
  .service-hero-media,
  .highlight-card,
  .gallery-card {
    animation: none;
  }
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(13, 30, 46, 0.06);
}

.info-card.accent {
  border-color: rgba(0, 178, 227, 0.4);
  background: linear-gradient(180deg, rgba(0, 178, 227, 0.08), rgba(255, 255, 255, 0.9));
}

.footer {
  background: #0f2536;
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer .brand {
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-note small {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .hero-content {
    padding-top: 40px;
  }

  .col-span-7,
  .col-span-6,
  .col-span-5,
  .col-span-4 {
    grid-column: span 12;
  }

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

  .hero-panel {
    margin-top: 24px;
  }

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

  .service-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page .service-hero-grid .col-span-6,
  .service-page .booking-grid .col-span-6 {
    grid-column: span 6;
  }

  .service-page .service-overview .col-span-7 {
    grid-column: span 7;
  }

  .service-page .service-overview .col-span-5 {
    grid-column: span 5;
  }

  .service-page .service-hero-grid,
  .service-page .booking-grid {
    row-gap: 28px;
  }
}

@media (max-width: 900px) {
  .service-page .service-hero-grid .col-span-6,
  .service-page .booking-grid .col-span-6,
  .service-page .service-overview .col-span-7,
  .service-page .service-overview .col-span-5 {
    grid-column: span 12;
  }

  .service-page .service-hero-grid,
  .service-page .booking-grid {
    row-gap: 32px;
  }

  .service-page .service-hero-media img {
    max-height: 360px;
  }

  .service-header {
    position: sticky;
  }

  .service-header .nav-head {
    width: 100%;
    justify-content: space-between;
  }

  .service-header .nav-toggle {
    display: inline-flex;
  }

  .service-header .main-nav,
  .service-header .nav-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-header.is-open .main-nav,
  .service-header.is-open .nav-actions {
    display: flex;
  }

  .service-header .nav-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .slogan-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-hero {
    padding-top: 56px;
  }

  .service-meta {
    grid-template-columns: 1fr;
  }

  .service-gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-page .contact-form {
    padding: 24px;
  }

  .service-page .gallery-card img {
    height: 180px;
  }
}

@media (max-width: 640px) {
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .service-page .service-hero {
    padding: 48px 0 40px;
  }

  .service-page .contact-form {
    padding: 20px;
  }

  .service-page .gallery-card img {
    height: 160px;
  }
}
