:root {
  --navy: #071a33;
  --navy-deep: #03101f;
  --blue: #123a66;
  --blue-soft: #1a4778;
  --orange: #c76c2d;
  --orange-light: #f09b54;
  --cream: #f6efe6;
  --paper: #fffaf2;
  --white: #ffffff;
  --ink: #121924;
  --muted: #6a7280;
  --line: rgba(7, 26, 51, 0.12);
  --shadow: 0 30px 90px rgba(7, 26, 51, 0.24);
  --soft-shadow: 0 18px 52px rgba(7, 26, 51, 0.12);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 108, 45, 0.14), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(18, 58, 102, 0.14), transparent 30%),
    linear-gradient(180deg, #fff8ef 0%, #f6efe6 48%, #fffaf2 100%);
}

.section {
  padding: 88px 24px;
  scroll-margin-top: 130px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Header and navigation */
.header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 26, 51, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 14px 12px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-button {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(199, 108, 45, 0.32);
}

.mobile-menu {
  display: none;
  position: relative;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-dropdown {
  position: absolute;
  top: 58px;
  right: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(7, 26, 51, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  gap: 6px;
}

.mobile-dropdown a {
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.mobile-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu:hover .mobile-dropdown {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  padding: 132px 24px 78px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(7, 26, 51, 0.98), rgba(7, 26, 51, 0.82) 56%, rgba(7, 26, 51, 0.96)),
    radial-gradient(circle at 78% 26%, rgba(240, 155, 84, 0.34), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue-soft));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--orange-light);
}

.hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.65vw, 1.24rem);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 16px 36px rgba(199, 108, 45, 0.38);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-card {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(240, 155, 84, 0.14), transparent 42%),
    rgba(7, 26, 51, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card small {
  display: block;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-card h2 {
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 5px;
}

.stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-soft));
  box-shadow: var(--soft-shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(240, 155, 84, 0.36), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%);
}

.service-card h3,
.service-card p,
.service-card ul {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.service-card li::before {
  content: "•";
  color: var(--orange-light);
  margin-right: 8px;
}

/* Story */
.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(240, 155, 84, 0.28), transparent 24%),
    radial-gradient(circle at 90% 74%, rgba(26, 71, 120, 0.6), transparent 32%);
  opacity: 0.9;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.story-copy .label {
  color: var(--orange-light);
}

.story-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 20px;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  margin-bottom: 18px;
}

.story-card {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.story-card h3 {
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.story-card p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 14px;
}

/* Portfolio tab gallery */
.portfolio-tab-gallery {
  width: min(980px, 100%);
  margin: 0 auto;
}

.portfolio-tabs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.portfolio-tabs li {
  display: contents;
}

.portfolio-tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.portfolio-thumb {
  display: block;
  overflow: hidden;
  height: 86px;
  border-radius: 18px;
  border: 3px solid transparent;
  background: var(--navy);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(7, 26, 51, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.portfolio-tabs li:nth-child(1) .portfolio-thumb {
  grid-column: 1;
  grid-row: 1;
}

.portfolio-tabs li:nth-child(2) .portfolio-thumb {
  grid-column: 2;
  grid-row: 1;
}

.portfolio-tabs li:nth-child(3) .portfolio-thumb {
  grid-column: 3;
  grid-row: 1;
}

.portfolio-tabs li:nth-child(4) .portfolio-thumb {
  grid-column: 4;
  grid-row: 1;
}

.portfolio-tabs li:nth-child(5) .portfolio-thumb {
  grid-column: 5;
  grid-row: 1;
}

.portfolio-tabs li:nth-child(6) .portfolio-thumb {
  grid-column: 6;
  grid-row: 1;
}

.portfolio-thumb:hover {
  transform: translateY(-2px);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: var(--navy);
}

.portfolio-preview {
  display: none;
  grid-column: 1 / -1;
  grid-row: 2;
  width: min(760px, 100%);
  margin: 18px auto 0;
  padding: 16px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.portfolio-preview img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: contain;
  border-radius: 22px;
  background: #071a33;
}

.portfolio-tabs input[type="radio"]:checked + label {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.portfolio-tabs input[type="radio"]:checked + label + .portfolio-preview {
  display: block;
}

@media (max-width: 980px) {
  .portfolio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-tabs li:nth-child(1) .portfolio-thumb {
    grid-column: 1;
    grid-row: 1;
  }

  .portfolio-tabs li:nth-child(2) .portfolio-thumb {
    grid-column: 2;
    grid-row: 1;
  }

  .portfolio-tabs li:nth-child(3) .portfolio-thumb {
    grid-column: 3;
    grid-row: 1;
  }

  .portfolio-tabs li:nth-child(4) .portfolio-thumb {
    grid-column: 1;
    grid-row: 2;
  }

  .portfolio-tabs li:nth-child(5) .portfolio-thumb {
    grid-column: 2;
    grid-row: 2;
  }

  .portfolio-tabs li:nth-child(6) .portfolio-thumb {
    grid-column: 3;
    grid-row: 2;
  }

  .portfolio-preview {
    grid-row: 3;
  }

  .portfolio-preview img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .portfolio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .portfolio-thumb {
    height: 72px;
    border-radius: 14px;
  }

  .portfolio-preview {
    padding: 12px;
    border-radius: 22px;
  }

  .portfolio-preview img {
    height: 320px;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .portfolio-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-tabs li:nth-child(1) .portfolio-thumb {
    grid-column: 1;
    grid-row: 1;
  }

  .portfolio-tabs li:nth-child(2) .portfolio-thumb {
    grid-column: 2;
    grid-row: 1;
  }

  .portfolio-tabs li:nth-child(3) .portfolio-thumb {
    grid-column: 1;
    grid-row: 2;
  }

  .portfolio-tabs li:nth-child(4) .portfolio-thumb {
    grid-column: 2;
    grid-row: 2;
  }

  .portfolio-tabs li:nth-child(5) .portfolio-thumb {
    grid-column: 1;
    grid-row: 3;
  }

  .portfolio-tabs li:nth-child(6) .portfolio-thumb {
    grid-column: 2;
    grid-row: 3;
  }

  .portfolio-preview {
    grid-row: 4;
  }

  .portfolio-thumb {
    height: 76px;
  }

  .portfolio-preview img {
    height: 280px;
  }
}
/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(7, 26, 51, 0.08);
}

.process-step small {
  display: block;
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step h3 {
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.15;
}

.process-step p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Contact */
.contact {
  padding: 92px 24px;
}

.contact-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(240, 155, 84, 0.35), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
}

.contact-main {
  padding: 50px;
}

.contact-main .label {
  color: var(--orange-light);
}

.contact-main h2 {
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 20px;
}

.contact-main p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.contact-info {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card small {
  display: block;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-card span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.footer {
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  background: #06111f;
  font-size: 0.92rem;
}

/* Responsive layout */
@media (max-width: 980px) {
  .hero-inner,
  .story-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-preview img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .nav {
    align-items: flex-start;
  }

  .brand {
    white-space: normal;
    line-height: 1.1;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 50px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 116px 18px 58px;
  }

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

  .contact-info {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .portfolio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .portfolio-thumb {
    height: 72px;
    border-radius: 14px;
  }

  .portfolio-preview {
    padding: 12px;
    border-radius: 22px;
  }

  .portfolio-preview img {
    height: 320px;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .section,
  .contact {
    padding: 64px 18px;
  }

  .hero-card-inner,
  .contact-main,
  .contact-info {
    padding: 24px;
  }

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

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

  .portfolio-thumb {
    height: 76px;
  }

  .portfolio-preview img {
    height: 280px;
  }
}
/* Tablet hamburger navigation */
@media (max-width: 820px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .nav {
    align-items: center;
  }

  .brand {
    white-space: normal;
    line-height: 1.1;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 50px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}
/* Portfolio preview captions */
.portfolio-caption {
  padding: 18px 6px 4px;
  text-align: center;
}

.portfolio-caption h3 {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 6px;
}

.portfolio-caption p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .portfolio-caption {
    padding: 14px 4px 2px;
  }

  .portfolio-caption h3 {
    font-size: 1rem;
  }

  .portfolio-caption p {
    font-size: 0.88rem;
  }
}
/* Booking form layout refinement */
.booking-form-embed {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(7, 26, 51, 0.18);
}

.booking-form-embed iframe {
  width: 100%;
  min-height: 1200px;
  display: block;
  border: 0;
  background: var(--white);
}

.contact-panel {
  grid-template-columns: 1fr;
}

.contact-main {
  padding: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px 50px 50px;
  border-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

@media (max-width: 560px) {
  .booking-form-embed iframe {
    min-height: 1350px;
  }

  .contact-main {
    padding: 28px 20px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
/* Booking contact card polish */
.contact-info {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 26, 51, 0.18);
  align-items: stretch;
}

.info-card {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 4px;
  height: calc(100% - 36px);
  border-radius: 999px;
  background: var(--orange-light);
}

.info-card small {
  color: var(--orange-light);
  margin-bottom: 8px;
}

.info-card span {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
  word-break: break-word;
}

.contact-main .button-secondary {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.contact-main .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 760px) {
  .info-card {
    min-height: auto;
    padding: 18px 18px 18px 22px;
  }

  .info-card span {
    font-size: 0.95rem;
  }
}
/* Booking form sizing and button alignment */
.booking-form-embed {
  width: min(760px, 100%);
  margin: 30px auto 0;
}

.booking-form-embed iframe {
  width: 100%;
  min-height: 980px;
}

.contact-main .button-secondary {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
  text-align: center;
}

@media (max-width: 760px) {
  .booking-form-embed {
    width: 100%;
  }

  .booking-form-embed iframe {
    min-height: 1050px;
  }

  .contact-main .button-secondary {
    width: 100%;
    max-width: 340px;
  }
}