/* ===== GLOBAL RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --bg: #020617;
  --bg-alt: #020617;
  --surface: #020617;
  --border-subtle: rgba(148, 163, 184, 0.25);

  --accent: #f2b623;           /* your brand gold */
  --accent-soft: rgba(242, 182, 35, 0.16);
  --accent-dark: #b58318;

  --text-main: #f9fafb;
  --text-subtle: #9ca3af;
  --text-muted: #6b7280;

  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.75);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-pill: 999px;
  --container-width: 1120px;
  --transition: 180ms ease-out;
}

/* ===== BASE STYLES ===== */
html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #020617, #000000 45%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.98),
    rgba(2, 6, 23, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0.6rem;
  background-color: #000;
  border: 1px solid rgba(242, 182, 35, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.logo-sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Nav */
.nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.4rem 0.2rem;
  color: var(--text-subtle);
  border-radius: 999px;
  transition: color var(--transition), background-color var(--transition);
}

.nav-links a:hover {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.85);
}

.nav-cta {
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(242, 182, 35, 0.9);
  color: #000;
  background: var(--accent);
 }

/* ===== MOBILE NAV TOGGLE (CENTERED + GOLD + ANIMATED) ===== */
.nav-toggle {
  display: none; /* shown on mobile in the media query */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  width: 42px;
  height: 42px;
  padding: 0;

  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(0, 0, 0, 0.92);

  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;

  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* base, no shadow */
  transition:
    background-color 0.2s ease-out,
    border-color 0.2s ease-out,
    box-shadow 0.25s ease-out,
    transform 0.18s ease-out;
}

/* three bars */
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
  display: block;

  transform-origin: center center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

/* Hover glow (only on devices that actually have hover) */
@media (hover: hover) {
  .nav-toggle:hover {
    border-color: rgba(242, 182, 35, 1); /* your gold */
    box-shadow: 0 0 14px rgba(242, 182, 35, 0.7);
    background: rgba(0, 0, 0, 0.98);
    transform: translateY(-1px);
  }
}

/* When nav is open: stronger gold + shadow */
.nav.nav-open .nav-toggle {
  border-color: rgba(242, 182, 35, 1);
  box-shadow: 0 0 18px rgba(242, 182, 35, 0.85);
  background: rgba(0, 0, 0, 0.98);
}

/* Bars → X animation when nav is open */
.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #f2b623; /* gold */
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #f2b623; /* gold */
}


/* ===== HERO ===== */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.accent {
  display: block;
  background: linear-gradient(135deg, #ffffff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-subtle);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta-number {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* Eyebrow */
.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ===== HERO FLIP CARD ===== */
.hero-card-flip {
  position: relative;
  perspective: 1200px;
  cursor: pointer;
}

.hero-card-visual {
  background: radial-gradient(circle at top left, #000000, #020617 65%);
  border-radius: 1.5rem;
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  
  /* 🔥 KEY FIXES */
  min-height: 360px;          /* was 280px before */
  overflow: visible;          /* allow content to breathe */
}

/* On larger screens, give the card even more room */
@media (min-width: 900px) {
  .hero-card-visual {
    min-height: 420px;
  }
}

.hero-card-flip.is-flipped .hero-card-visual {
  transform: rotateY(180deg);
}

.hero-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  padding-bottom: 1.2rem;     /* small extra buffer at bottom */
}

.hero-card-face--front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card-face--back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-back-inner {
  text-align: center;
  padding: 0.5rem;
}

.hero-card-back-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.hero-card-back-inner p {
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-bottom: 0.9rem;
}

.hero-back-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.hero-card-hint {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Hero headshot */
.hero-headshot-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-headshot {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(242, 182, 35, 0.9);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.9);
}

/* Hero logo frame */
.hero-logo-frame {
  border-radius: 1.25rem;
  border: 1px solid rgba(242, 182, 35, 0.6);
  background: linear-gradient(135deg, #000000, #020617);
  padding: 0.9rem;
  margin-bottom: 1.2rem;

  /* 🔥 Keep the logo from making the card too tall */
  max-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-logo-image {
  /* 🔥 Cap size so huge logos don't blow up the card */
  max-height: 150px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* hero trust strip */
.hero-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-trust-item {
  background-color: rgba(0, 0, 0, 0.95);
  border-radius: 0.9rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-trust-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.hero-trust-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-main);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff, var(--accent));
  color: #000;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  background-color: #000000;
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-subtle);
}

.btn-ghost:hover {
  background-color: #020617;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(242, 182, 35, 0.7);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(242, 182, 35, 0.1);
}

.btn-full-width {
  width: 100%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0 3.5rem;
}

.section-alt {
  background: radial-gradient(circle at top right, #020617, #000000 40%);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-header-left {
  text-align: left;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-subtle);
  max-width: 32rem;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== QUICK QUOTE STRIP ===== */
.section-quote-strip {
  padding: 2.6rem 0 2.4rem;
  background: #000000;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.quote-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  justify-content: space-between;
}

.quote-strip-text h2 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.quote-strip-text p {
  font-size: 0.95rem;
  color: var(--text-subtle);
  max-width: 32rem;
}

.quote-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.quote-strip-secondary {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== TRUST / GUARANTEE STRIP ===== */
.section-trust {
  padding: 2.2rem 0 2.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at bottom left, #020617, #000000 55%);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-badge {
  background-color: #000000;
  border-radius: 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.85);
  border-color: rgba(242, 182, 35, 0.7);
}

.trust-badge-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.trust-badge-text {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.guarantee-card {
  background-color: #000000;
  border-radius: 1.15rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(242, 182, 35, 0.7);
  box-shadow: var(--shadow-soft);
}

.guarantee-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.guarantee-card p {
  font-size: 0.9rem;
  color: var(--text-main);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem;
}

.service-card {
  background: #000000;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.8);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.9);
  border-color: rgba(242, 182, 35, 0.7);
}

.service-card-wide {
  grid-column: span 2;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--accent);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-bottom: 0.8rem;
}

.service-list {
  font-size: 0.85rem;
  color: var(--text-main);
  display: grid;
  gap: 0.2rem;
}

.section-footnote {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.section-about {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at bottom left, #020617, #000000 55%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-body {
  font-size: 0.96rem;
  color: var(--text-main);
  margin-bottom: 0.9rem;
}

.about-card {
  background-color: #000000;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(242, 182, 35, 0.7);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}
/* ===== ABOUT INLINE VIDEO (WITH FIXED 16:9 RATIO) ===== */
.about-media-video {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #000000;
  cursor: pointer;

  /* 🔥 This guarantees a visible area even before the video loads */
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.about-inline-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Darkening overlay + CTA */
.about-video-overlay {
  position: absolute;
  inset: 0;
  border: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.3),
    transparent
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.9rem 1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease-out;
}
/* ===== INLINE VIDEO VOLUME BUTTON (CLEAN VERSION) ===== */
.about-volume-btn {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 5;

  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242, 182, 35, 0.8);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  opacity: 0;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 0 rgba(242, 182, 35, 0);

  transition:
    opacity 0.2s ease-out,
    transform 0.15s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out,
    background-color 0.25s ease-out;
}

/* Show button when hovering video on desktop */
.about-media-video:hover .about-volume-btn {
  opacity: 1;
}

/* Click feedback */
.about-volume-btn:active {
  transform: scale(0.92);
}

/* Active (unmuted) state – glow */
.about-volume-btn.is-active {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(242, 182, 35, 1);
  box-shadow: 0 0 18px rgba(242, 182, 35, 0.75);
}

/* Icon itself (the 🔇 / 🔊) */
.about-volume-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Always visible on mobile (no hover) */
@media (max-width: 720px) {
  .about-volume-btn {
    opacity: 1;
  }
}

/* Always visible on mobile (no hover) */
@media (max-width: 720px) {
  .about-volume-btn {
    opacity: 1;
  }
}

.about-volume-btn:active {
  transform: scale(0.92);
}

/* Always visible on mobile */
@media (max-width: 720px) {
  .about-volume-btn {
    opacity: 1;
  }
}

.about-video-overlay-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(242, 182, 35, 0.9);
}

.about-video-play-icon {
  font-size: 0.9rem;
  color: var(--accent);
}

.about-video-overlay-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-video-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
}

.about-video-duration {
  font-size: 0.7rem;
  color: var(--text-subtle);
}

/* Show overlay on hover (and slightly on desktop) */
.about-media-video:hover .about-video-overlay {
  opacity: 1;
}

/* On touch devices, we still show a faint overlay by default */
@media (max-width: 720px) {
  .about-video-overlay {
    opacity: 0.9;
  }
}

.about-list {
  font-size: 0.9rem;
  color: var(--text-main);
  display: grid;
  gap: 0.3rem;
}

/* ===== WHY QTB ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.why-card {
  background-color: #000000;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.9);
  border-color: rgba(242, 182, 35, 0.7);
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-subtle);
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;

  /* remove browser numbers & left indentation */
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}


.process-steps li {
  background-color: #000000;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.3rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.process-steps li:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.9);
  border-color: rgba(242, 182, 35, 0.7);
}

.process-steps h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.process-steps p {
  font-size: 0.9rem;
  color: var(--text-subtle);
}

/* ===== GALLERY: NEW LAYOUT ===== */
.section-gallery {
  position: relative;
  overflow: hidden;
}

.gallery-inner {
  position: relative;
  z-index: 1;
}

.gallery-jobs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-service {
  background: #000000;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.85);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.gallery-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.95);
  border-color: rgba(242, 182, 35, 0.7);
}

.gallery-service h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.gallery-service p {
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-bottom: 0.9rem;
}

/* Make gallery buttons glow with brand color */
.gallery-service .btn {
  font-size: 0.85rem;
  padding-inline: 1.1rem;

  background: transparent;
  border-color: rgba(242, 182, 35, 0.8); /* var(--accent) */
  color: var(--accent);
  box-shadow: 0 0 0 rgba(242, 182, 35, 0);
  transition:
    background-color 0.2s ease-out,
    color 0.2s ease-out,
    border-color 0.2s ease-out,
    box-shadow 0.25s ease-out,
    transform 0.15s ease-out;
}

.gallery-service .btn:hover {
  background: rgba(242, 182, 35, 0.12);
  color: #ffffff;
  border-color: rgba(242, 182, 35, 1);
  box-shadow: 0 0 18px rgba(242, 182, 35, 0.75);
  transform: translateY(-1px);
}


.gallery-floating-img {
  position: absolute;
  width: 110px;
  border-radius: 1rem;
  object-fit: cover;
  opacity: 0.33;
  filter: grayscale(0) brightness(1.1);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.9);
  animation: floatY 14s ease-in-out infinite alternate;
}

/* Individual positions for each floating image */
.gf-1 {
  top: 8%;
  right: 6%;
  animation-duration: 16s;
}

.gf-2 {
  bottom: 10%;
  left: 4%;
  animation-duration: 18s;
}

.gf-3 {
  top: 55%;
  right: 18%;
  animation-duration: 17s;
}

.gf-4 {
  top: 22%;
  left: 12%;
  animation-duration: 19s;
}

.gf-5 {
  bottom: 22%;
  right: 10%;
  animation-duration: 21s;
}

.gf-6 {
  top: 35%;
  left: 62%;
  animation-duration: 20s;
}

.gf-7 {
  top: 12%;
  left: 32%;
  animation-duration: 18s;
}

.gf-8 {
  bottom: 32%;
  left: 20%;
  animation-duration: 22s;
}

.gf-9 {
  top: 68%;
  right: 28%;
  animation-duration: 19s;
}

.gf-10 {
  bottom: 16%;
  right: 20%;
  animation-duration: 23s;
}

/* Floating animation */
@keyframes floatY {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-12px) translateX(4px);
  }
  100% {
    transform: translateY(6px) translateX(-4px);
  }
}

/* ===== MOBILE OVERRIDES FOR FLOATING IMAGES ===== */
@media (max-width: 720px) {
  .gallery-floating-img {
    width: 80px;
    opacity: 0.25;
  }

  .gf-1 {
    top: 4%;
    right: 3%;
  }

  .gf-2 {
    bottom: 5%;
    left: 3%;
  }

  .gf-3 {
    top: 68%;
    right: 10%;
  }

  .gf-4 {
    top: 24%;
    left: 6%;
  }

  .gf-5 {
    bottom: 20%;
    right: 6%;
  }

  .gf-6 {
    top: 46%;
    left: 55%;
  }

  .gf-7 {
    top: 12%;
    left: 32%;
  }

  .gf-8 {
    bottom: 30%;
    left: 18%;
  }

  .gf-9 {
    top: 60%;
    right: 24%;
  }

  .gf-10 {
    bottom: 14%;
    right: 20%;
  }
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.review-card {
  background-color: #000000;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.9);
  border-color: rgba(242, 182, 35, 0.7);
}

.review-stars {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.review-author {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 40rem;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  background-color: #000000;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.75rem 0.95rem;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition),
    transform var(--transition);
}

.faq-list details[open] {
  border-color: rgba(242, 182, 35, 0.7);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--accent);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--text-muted);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin-top: 0.4rem;
  color: var(--text-subtle);
}

/* ===== CONTACT ===== */
.section-contact {
  padding-bottom: 4.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-details {
  margin: 1rem 0 0.7rem;
  display: grid;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-details a {
  color: var(--accent);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* ===== CONTACT SUCCESS MESSAGE ===== */
.submission-banner {
  background: #0f172a;
  color: #f2b623;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(242, 182, 35, 0.7);
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Contact form */
.contact-form-wrapper {
  background-color: #000000;
  border-radius: 1.4rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.9);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background-color: #020617;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition),
    background-color var(--transition), transform var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(242, 182, 35, 0.5);
  background-color: #020617;
  transform: translateY(-1px);
}

.field textarea {
  resize: vertical;
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 1.4rem 0 1.6rem;
  margin-top: 1rem;
  background-color: #000000;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-note {
  text-align: right;
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(242, 182, 35, 0.7);
  padding: 0.55rem 0.9rem;
  display: none; /* shown only on small screens */
  z-index: 150;
  gap: 0.6rem;
}

.mobile-cta-btn {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 182, 35, 0.9);
  background: linear-gradient(135deg, #ffffff, var(--accent));
  color: #000;
}

.mobile-cta-secondary {
  background: #000000;
  color: #ffffff;
  border-color: rgba(148, 163, 184, 0.8);
}

/* ===== LIGHTBOX GALLERY ===== */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.lightbox-image-wrapper {
  position: relative;
  background: #000000;
  border-radius: 1rem;
  border: 1px solid rgba(242, 182, 35, 0.5);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.lightbox-image {
  max-height: 70vh;
  width: auto;
  object-fit: contain;
  border-radius: 0.75rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: #000000;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(0, 0, 0, 0.85);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-arrow-left {
  left: 0.6rem;
}

.lightbox-arrow-right {
  right: 0.6rem;
}

.lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.lightbox-counter {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
/* ===== FULLSCREEN ABOUT VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 210; /* higher than image lightbox */
}

.video-modal.is-open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-modal-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 1rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.video-modal-video {
  width: 100%;
  max-height: 80vh;
  border-radius: 1rem;
  border: 1px solid rgba(242, 182, 35, 0.7);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.95);
  background: #000000;
}

/* Close button */
.video-modal-close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #000000;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 0.95rem;
}

/* Small screens */
@media (max-width: 720px) {
  .video-modal-inner {
    margin: 0 0.5rem;
  }

  .video-modal-video {
    max-height: 70vh;
  }

  .video-modal-close {
    top: -2.2rem;
  }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Medium (tablets & below) */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2rem;
  }

  .quote-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-strip-actions {
    align-items: flex-start;
  }

  .services-grid,
  .why-grid,
  .process-steps,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

/* Small (phones) */
@media (max-width: 720px) {
  .header-inner {
    height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 110%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    background-color: #000000;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    min-width: 210px;
    display: none;
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.45rem 0.25rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card-flip {
    margin-top: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .why-grid,
  .process-steps,
  .reviews-grid,
  .gallery-jobs {
    grid-template-columns: minmax(0, 1fr);
  }
  /* On phones, stack service cards vertically using flex instead of grid */
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .service-card,
  .service-card-wide {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 1.3rem 1.2rem; /* slightly tighter padding for mobile */
  }

  .service-card {
    display: block;             /* make sure it's just a normal block */
    height: auto;               /* no weird stretching */
    min-height: 0;              /* prevent inherited min-height issues */
    padding: 1.3rem 1.2rem;     /* a bit smaller padding for small screens */
  }

  .section {
    padding: 3.2rem 0 2.8rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.3rem 1.2rem;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .mobile-cta-bar {
    display: flex;
  }

  .gallery-floating-img {
    width: 80px;
    opacity: 0.25;
  }

  .gf-1 {
    top: 4%;
    right: 3%;
  }

  .gf-2 {
    bottom: 5%;
    left: 3%;
  }

  .gf-3 {
    top: 68%;
    right: 10%;
  }
}
