:root {
  --bg: #272c32;
  --accent: #f3ab1c;
  --text: #e4e2dd;
  --card: #31363d;
  --muted: #9ca2aa;
  --error: #ff6b6b;
  --dark: #161a1f;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #30363f 0, #272c32 45%, #1f2328 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV (kept) */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 31, 36, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 226, 221, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-wrap img {
  height: 40px;
  width: auto;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.13em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text);
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #121317;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.75);
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

/* HERO WITH VIDEO BACKGROUND (kept) */

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(16, 18, 22, 0.9) 0%, rgba(16, 18, 22, 0.65) 40%, rgba(16, 18, 22, 0.4) 65%, rgba(16, 18, 22, 0.7) 100%),
    radial-gradient(circle at top left, rgba(243, 171, 28, 0.18), transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 1.5rem 3.5rem;
}

.hero-content {
  max-width: 540px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 171, 28, 0.55);
  background: rgba(10, 10, 10, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.eyebrow i {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hero-lede {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

/* HERO BADGES */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(18, 20, 24, 0.7);
  border: 1px solid rgba(228, 226, 221, 0.12);
  font-size: 0.8rem;
  color: var(--text);
}

.hero-badge i {
  color: var(--accent);
}

/* HERO ACTIONS + BUTTONS */

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

/* keep hero button text on a single line and stop ballooning */
.hero-actions .btn {
  white-space: nowrap;
}

.hero-actions .btn-lg {
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #111216;

}

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

}

.btn-outline {
  background: transparent;
  border-color: rgba(228, 226, 221, 0.4);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(228, 226, 221, 0.08);
  border-color: rgba(243, 171, 28, 0.7);
}

/* GENERIC SECTION STYLES */

section {
  padding: 3.25rem 0;
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 2.1rem;     /* increase size */
  font-weight: 700;      /* make bolder */
  line-height: 1.15;     /* tighten spacing */
  letter-spacing: -0.5px; /* optional: adds a premium feel */
}


/* ABOUT */

#about {
  padding-top: 3.25rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.about-bullets {
  list-style: none;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.about-bullets i {
  color: var(--accent);
  margin-top: 0.1rem;
}

/* right-hand about card */

.about-aside {
  background: #22272e;
  border-radius: 1.25rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(228, 226, 221, 0.16);
}

.about-aside h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.about-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.about-aside li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.about-aside i {
  color: var(--accent);
  margin-top: 0.1rem;
}

/* SERVICES */

#services {
  padding-top: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--card);
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem 1.35rem;
  border: 1px solid rgba(228, 226, 221, 0.12);

  /* NEW: layout icon + heading on one row */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 0.65rem;
  align-items: flex-start;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 171, 28, 0.1);
  color: var(--accent);

  /* NEW: no bottom gap, lock to first row/col */
  margin-bottom: 0;
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
  grid-column: 2;
  grid-row: 1;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--muted);

  /* NEW: span full width under icon + heading */
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0.35rem;
}


/* BOOKING PREVIEW SECTION */

#book {
  padding-top: 2.8rem;
}

.booking-preview {
  background: #22272e;
  border-radius: 1.4rem;
  padding: 1.8rem 1.9rem 1.9rem;
  border: 1px solid rgba(228, 226, 221, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.booking-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.booking-bullets {
  list-style: none;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-bullets li {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.booking-bullets i {
  color: var(--accent);
  font-size: 0.85rem;
}

.booking-summary h3 {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.booking-summary ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-summary li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.booking-summary i {
  color: var(--accent);
  margin-top: 0.12rem;
}

.booking-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* CLIENTS */

#clients {
  padding-top: 3rem;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.client-pill {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: #22272e;
  border: 1px solid rgba(228, 226, 221, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

/* CLIENT LOGO SCROLLER */

/* CLIENT LOGO SCROLLER */

.clients-scroller {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 0.5rem 0;
}

.clients-track {
  display: flex;
  flex-wrap: nowrap;         /* <– IMPORTANT: no wrapping, always in one row */
  align-items: center;
  gap: 2rem;
  width: max-content;        /* <– track is only as wide as its content */
  animation: clients-scroll 30s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 1.1rem;
  background: #22272e;
  border: 1px solid rgba(228, 226, 221, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scroll left continuously */
@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile tweaks only change size/speed, not layout */
@media (max-width: 768px) {
  /* existing mobile rules ... */

  /* Make the modal behave like a full-page sheet on mobile */
  .booking-modal-backdrop {
    align-items: flex-start;      /* start at top of screen */
    padding: 0.75rem 0.75rem 1.25rem;
    overflow-y: auto;             /* whole backdrop scrolls */
  }

  .booking-modal {
    width: 100%;
    max-height: none;             /* let it grow with content */
    height: auto;
    border-radius: 1.4rem;
  }

  .booking-modal-main {
    overflow-y: visible;          /* no inner scroll, avoid double scroll */
  }

  .booking-actions-final,
  .step-actions {
    padding-bottom: 0.5rem;       /* bit of breathing room for bottom buttons */
  }
}


  .client-logo {
    width: 160px;
    height: 160px;
  }
}

/* CONTACT */

#contact {
  padding-top: 3.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-row i {
  color: var(--accent);
  margin-top: 0.12rem;
}

.inline-link {
  text-decoration: underline;
  text-decoration-color: rgba(243, 171, 28, 0.75);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* contact form */

.contact-form {
  background: #22272e;
  border-radius: 1.2rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(228, 226, 221, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin-bottom: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.82rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(16, 16, 17, 0.4);
  background: rgba(7, 8, 10, 0.85);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(243, 171, 28, 0.4);
  background: #171a20;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(228, 226, 221, 0.12);
  padding: 1.2rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

/* BOOKING MODAL – same logic, styled to match */

.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 1rem;
}

.booking-modal-backdrop.open {
  display: flex;
}

.booking-modal {
  background: var(--accent);
  color: #1f2328;
  width: min(960px, 100%);
  max-height: 90vh;
  border-radius: 1.8rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.booking-modal-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
  gap: 0;
  height: 100%;
}

.booking-modal-main {
  padding: 1.4rem 1.6rem 1.5rem;
  overflow-y: auto;
}

.booking-modal-side {
  background: #111216;
  color: var(--text);
  padding: 1.4rem 1.5rem 1.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  gap: 0.6rem;
}

.modal-heading {
  font-size: 1.1rem;
  font-weight: 600;
}

.modal-subheading {
  font-size: 0.8rem;
  color: #4b3300;
  max-width: 260px;
}

.modal-close {
  border: none;
  background: #111216;
  color: var(--text);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-steps-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.4);
  color: #3b2b05;
}

.progress-step .step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.progress-step.active {
  background: #111216;
  color: var(--text);
}

.progress-step.active .step-number {
  background: var(--accent);
  color: #111216;
}

.progress-step.completed {
  background: rgba(17, 18, 22, 0.15);
}

.progress-step.completed .step-number {
  background: #111216;
  color: var(--accent);
}

.modal-step-label {
  font-weight: 500;
}

.stepper-sub {
  font-size: 0.78rem;
  color: #5b4104;
  margin-bottom: 0.6rem;
}

.form-step {
  display: none;
  animation: fadeIn 0.18s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field-error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.5) !important;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.step-actions-right {
  margin-left: auto;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn-secondary {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(17, 18, 22, 0.4);
  background: transparent;
  color: #111216;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(17, 18, 22, 0.08);
  border-color: #111216;
}

.step-hint {
  font-size: 0.76rem;
  color: #5b4104;
}

.contract-box {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(40, 30, 4, 0.4);
  font-size: 0.78rem;
  color: #3b2b05;
}

.contract-scroll {
  max-height: 150px;
  overflow-y: auto;
  margin-top: 0.4rem;
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.6rem;
  border: 1px solid rgba(40, 30, 4, 0.3);
  font-size: 0.76rem;
  color: #3b2b05;
}

.contract-agree {
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-line {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: #3b2b05;
}

.checkbox-line input {
  margin-top: 0.1rem;
}

.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.2rem;
}

.signature-row .form-group {
  margin-bottom: 0;
}

.small-note {
  font-size: 0.7rem;
  color: #5b4104;
  max-width: 260px;
}

.booking-actions-final {
  margin-top: 1.2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* MODAL SIDE PANE (QUOTE + SUMMARY) */

.quote-box {
  background: linear-gradient(145deg, #fdf2cf, #f3ab1c);
  border-radius: 1.1rem;
  padding: 0.9rem 1rem;
  color: #111216;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.quote-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.1rem;
}

.quote-amount {
  font-size: 1.35rem;
  font-weight: 700;
}

.quote-note {
  font-size: 0.75rem;
  color: #4f3e06;
}

.side-caption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.side-list {
  list-style: none;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.side-list li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.side-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.side-footer {
  font-size: 0.75rem;
  color: #7c838d;
  margin-top: 0.8rem;
}

/* MOBILE QUOTE STRIP */
.quote-box-mobile {
  display: none;
  margin-bottom: 0.9rem;
  border-radius: 1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.quote-box-mobile .quote-label {
  color: #5b4104;
  margin-bottom: 0.15rem;
}

.quote-box-mobile .quote-amount {
  color: #111216;
}

.quote-box-mobile .quote-note {
  color: #5b4104;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .about-layout,
  .booking-preview,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-inner {
    padding-top: 4.5rem;
    padding-bottom: 3.2rem;
  }

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

  .booking-modal-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-modal-side {
    display: none;
  }

  .quote-box-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 90;
    flex-direction: column;
    align-items: flex-start;
    background: #14171c;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid rgba(228, 226, 221, 0.12);
    transition: max-height 0.25s ease, padding 0.2s ease;
  }

  .nav-links.open {
    max-height: 260px;
    padding: 0.75rem 1.5rem 1rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.65rem 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding-top: 4.2rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  section {
    padding: 2.7rem 0;
  }

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

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal; /* allow wrap on small screens */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .booking-preview,
  .contact-form {
    padding: 1.2rem 1.25rem 1.3rem;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .booking-modal-main {
    padding: 1.2rem 1.1rem 1.4rem;
  }
}

/* ===== FORCE SCROLLING CLIENT LOGOS (OVERRIDES) ===== */

#clients .clients-scroller {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 0.5rem 0;
}

#clients .clients-track {
  display: flex !important;          /* never stack */
  flex-wrap: nowrap !important;      /* always single row */
  flex-direction: row !important;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: clients-scroll 30s linear infinite;
}

#clients .client-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 1.1rem;
  background: #22272e;
  border: 1px solid rgba(228, 226, 221, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

#clients .client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Scroll left continuously */
@keyframes clients-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile tweaks: only size/speed, NOT layout */
@media (max-width: 768px) {
  #clients .clients-track {
    gap: 1.25rem;
    animation-duration: 24s;
  }

  #clients .client-logo {
    width: 160px;
    height: 160px;
  }
}

/* ===== HEADER CLEANUP AND SPACING FIXES ===== */

/* ==== HEADER / NAV REFINEMENT OVERRIDES ==== */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 31, 36, 0.97); /* dark, on-brand */
  backdrop-filter: blur(14px);
  border-bottom: none;                 /* remove thin horizontal line */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;              /* more breathing space */
  gap: 1.25rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  height: 42px;
  width: auto;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text);
}

/* main nav area */

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
  color: var(--text);
}

/* underline hover kept, but on-brand */

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA button in header – flat, on-brand */

.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111216;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: none;                    /* remove 3D feel */
  transition: transform 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #ffbe38;                 /* subtle lift from accent */
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
}

/* ==== MOBILE HEADER LAYOUT ==== */

@media (max-width: 768px) {
  .nav-inner {
    padding: 0.7rem 1.1rem;
    gap: 0.75rem;
  }

  .logo-wrap {
    flex: 1;
  }

  /* show burger, hide header CTA on mobile */
  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  /* existing dropdown behaviour kept, just spacing */

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 90;
    flex-direction: column;
    align-items: flex-start;
    background: #14171c;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid rgba(228, 226, 221, 0.12);
    transition: max-height 0.25s ease, padding 0.2s ease;
  }

  .nav-links.open {
    max-height: 260px;
    padding: 0.75rem 1.5rem 1rem;
  }

  .nav-links a {
    width: 100%;
    padding: 0.65rem 0;
    font-size: 1rem;
  }
}
/* === FIX MOBILE HEADER LINE + SHOW CTA BUTTON === */

@media (max-width: 768px) {
  /* kill the random horizontal line from the mobile menu */
  .nav-links {
    border-bottom: none !important;
  }
  .nav-links.open {
    border-bottom: none !important;
  }

  /* make sure the header itself isn't drawing a line either */
  header {
    border-bottom: none !important;
  }

  /* show the Book a Broadcast button again on mobile */
  .nav-cta {
    display: inline-flex !important;
    padding: 0.45rem 0.9rem;   /* slightly tighter so it fits nicely */
    font-size: 0.85rem;
    white-space: nowrap;
  }
}
/* === MOBILE BOOKING MODAL FIX === */
@media (max-width: 768px) {

  /* Make the overlay scrollable and start at the top */
  .booking-modal-backdrop {
    align-items: flex-start;          /* vertical: top of screen */
    justify-content: center;          /* horizontal: centre */
    padding: 0.75rem 0.75rem 1.25rem; /* a bit of breathing room */
    overflow-y: auto;                 /* whole overlay scrolls */
  }

  /* Let the modal grow with content instead of capping height */
  .booking-modal {
    width: 100%;
    max-height: none;                 /* override desktop 90vh */
    height: auto;
    border-radius: 1.4rem;
    overflow: visible;                /* avoid inner clipping */
  }

  /* Remove inner scroll – just use the outer scroll */
  .booking-modal-main {
    overflow-y: visible;
  }

  /* Ensure bottom buttons aren’t flush to screen edge */
  .booking-actions-final,
  .step-actions {
    padding-bottom: 0.75rem;
  }
}
