/* CMD Tourism & Trade — Orange · Black · White B2B design system */
:root {
  --orange: #ff6200;
  --orange-hot: #ff7a26;
  --orange-deep: #d95100;
  --black: #000000;
  --black-soft: #0d0d0d;
  --black-mid: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #f5f5f5;
  --line: rgba(0, 0, 0, 0.08);
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1140px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 2.5rem, var(--max));
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.7rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

p {
  margin: 0 0 1rem;
  color: var(--gray);
}

.lead {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--gray);
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  transition: 0.2s var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 98, 0, 0.28);
}

.btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

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

.btn-black:hover {
  background: var(--black-mid);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-row .btn {
  flex: 1 1 auto;
  min-width: min(100%, 150px);
}

@media (max-width: 480px) {
  .btn-row .btn {
    width: 100%;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: var(--header-h);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
  min-width: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 98, 0, 0.45);
  display: grid;
  place-items: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.15rem 0.35rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links .drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active,
.nav-links .drop-toggle:hover,
.nav-links .drop-toggle[aria-expanded="true"] {
  color: var(--orange);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--black-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  z-index: 20;
}

.dropdown a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.dropdown a:hover {
  background: rgba(255, 98, 0, 0.15);
  color: var(--orange);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  display: block;
}

.nav-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: 0.2s ease;
}

.nav.open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: calc(100% + 1px);
  left: -0.75rem;
  right: -0.75rem;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem 1rem;
  gap: 0.15rem;
  box-shadow: var(--shadow);
}

.nav.open .nav-links > li > a,
.nav.open .nav-links .drop-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav.open .dropdown {
  position: static;
  display: none;
  min-width: 0;
  margin: 0.25rem 0 0.5rem;
  box-shadow: none;
}

.nav.open .has-dropdown.open .dropdown {
  display: block;
}

.nav.open .nav-cta {
  display: block;
  position: absolute;
  top: calc(100% + 280px);
  left: 0;
  right: 0;
  padding: 0 0.25rem 1rem;
  background: var(--black);
}

.nav.open .nav-cta .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: block;
  }
  .nav.open .nav-links,
  .nav.open .nav-cta {
    position: static;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
  .nav.open .nav-links > li > a {
    border: 0;
    width: auto;
    padding: 0.55rem 0.75rem;
  }
  .nav.open .nav-cta .btn {
    width: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 740px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #050505;
  cursor: default;
  user-select: none;
}

/* Animated translucent airplane background */
.hero-sky {
  position: absolute;
  inset: -12% -18%;
  z-index: 0;
  opacity: 0.72;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(255, 98, 0, 0.28) 100%),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTCsoD2vKPdn2Qi0rcc_SHR_ib3Fm05V3bahPlVJdpBzQ&s=10")
      40% 50% / cover no-repeat;
  background-size: 130% auto;
  animation: planeFly 22s ease-in-out infinite;
  will-change: transform, background-position, opacity;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.05);
}

@keyframes planeFly {
  0% {
    transform: scale(1.08) translate3d(-4%, 2%, 0) rotate(-0.6deg);
    background-position: 28% 55%;
    opacity: 0.62;
  }
  25% {
    transform: scale(1.14) translate3d(1%, -1%, 0) rotate(0.4deg);
    background-position: 48% 45%;
    opacity: 0.78;
  }
  50% {
    transform: scale(1.18) translate3d(5%, 1.5%, 0) rotate(0.8deg);
    background-position: 68% 48%;
    opacity: 0.7;
  }
  75% {
    transform: scale(1.12) translate3d(2%, -2%, 0) rotate(-0.3deg);
    background-position: 52% 40%;
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08) translate3d(-4%, 2%, 0) rotate(-0.6deg);
    background-position: 28% 55%;
    opacity: 0.62;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding: 3.25rem 0 4.25rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: end;
    padding: 4.5rem 0 5rem;
  }
}

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

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.3rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.pill {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 98, 0, 0.45);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.quick-form,
.form-card label {
  display: grid;
  gap: 0.35rem;
}

.quick-form {
  gap: 0.7rem;
}

.quick-form label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.form-card label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

.quick-form input,
.quick-form select,
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: var(--white);
  color: var(--black);
  min-height: 48px;
  outline: none;
}

.quick-form input:focus,
.quick-form select:focus,
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 98, 0, 0.15);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0.6rem 0 0;
}

.form-success {
  display: none;
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 98, 0, 0.12);
  color: var(--orange-deep);
  font-weight: 700;
}

.form-success.show {
  display: block;
}

/* Sections */
.section {
  padding: 3.75rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5.25rem 0;
  }
}

.section-head {
  max-width: 620px;
  margin-bottom: 1.85rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.section-soft {
  background: var(--gray-light);
}

/* Stats */
.stats {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 0.9rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 0.75rem 0.4rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--orange);
  line-height: 1.1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 700;
}

/* Our Services — reference layout (yellow icon tile + black title bar) */
.section-services {
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.06) 1px, transparent 0) 0 0 / 18px 18px,
    #ffffff;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
  font-family: var(--font);
}

.services-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.services-grid-ref {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem 3rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 760px) {
  .services-grid-ref {
    grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem;
    row-gap: 2.5rem;
  }

  /* FamTrips alone on left of last row like the reference */
  .services-grid-ref .service-card-wide {
    grid-column: 1;
  }
}

.service-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: block;
  min-height: 0;
  transition: none;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* Yellow square + black pill header — matches brand flyer */
.svc-tag {
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  margin-bottom: 0.85rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.svc-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #ffcc00;
  color: #000;
  font-size: 1.25rem;
  font-weight: 800;
}

.svc-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.svc-label {
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  padding: 0 1.15rem 0 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.service-card > p {
  margin: 0;
  color: var(--gray);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 34rem;
}

.service-card .icon,
.service-card .meta {
  display: none;
}

.hero {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .hero-sky {
    animation: none !important;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
}

/* Events cards */
.events-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.event-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.35rem;
}

.event-card .date-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.event-card h3 {
  color: #fff;
  margin-bottom: 0.35rem;
}

.event-card .loc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}

.event-card p {
  color: rgba(255, 255, 255, 0.78);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 98, 0, 0.15);
  border: 1px solid rgba(255, 98, 0, 0.45);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
}

.social-btn:hover {
  background: var(--orange);
}

/* Destinations */
.dest-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.25s var(--ease);
}

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

.dest-media {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-media::after {
  content: attr(data-tag);
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.dest-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.dest-body p {
  margin: 0;
  font-size: 0.94rem;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-filters button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gal-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--black);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.gal-item img,
.gal-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.gal-item:hover img,
.gal-item:hover video {
  transform: scale(1.05);
}

.gal-item .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
}

.gal-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--gray);
  background: var(--gray-light);
  border-radius: var(--radius);
}

/* Contact split */
.contact-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.contact-panel {
  background: var(--black);
  color: var(--white);
  border-radius: 22px;
  padding: 1.5rem;
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.email-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.email-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.email-item strong {
  display: block;
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.email-item a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  word-break: break-word;
}

.contact-meta {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card .stars {
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.testimonial-card p {
  color: var(--black);
  margin-bottom: 1rem;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-card strong {
  display: block;
  color: var(--black);
}

.testimonial-card small {
  color: var(--gray);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.35rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  padding: 1rem;
}

.lightbox.open {
  display: grid;
}

.lightbox-inner {
  width: min(100%, 960px);
  max-height: 90vh;
}

.lightbox-inner img,
.lightbox-inner video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  margin-inline: auto;
}

.lightbox-cap {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 0.85rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 700;
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(255, 98, 0, 0.55)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: var(--white);
  padding: 3.75rem 0 3rem;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
}

/* Admin password modal */
.admin-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  place-items: center;
  padding: 1rem;
}

.admin-gate.open {
  display: grid;
}

.admin-gate-card {
  width: min(100%, 380px);
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.admin-gate-card h3 {
  margin-bottom: 0.4rem;
}

.admin-gate-card input {
  width: 100%;
  margin: 0.85rem 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.admin-gate-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  font-size: 1.5rem;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
