:root {
  --bg: #080b12;
  --panel: #111826;
  --panel-2: #0d1422;
  --text: #eaf1ff;
  --muted: #a5b0c3;
  --gold: #d3ac6b;
  --gold-strong: #e7bf7a;
  --line: #22304a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 9, 16, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 0;
}

.brand-logo {
  width: 228px;
  max-width: 40vw;
  height: auto;
  display: block;
  /* PNG seffaf zemin; alttaki ince iz / arac kalintisi */
  clip-path: inset(0 0 14% 0);
  -webkit-clip-path: inset(0 0 14% 0);
  animation: brandLogoShine 5.5s ease-in-out infinite;
}

.brand-logo[src$=".svg"],
.footer-logo[src$=".svg"] {
  clip-path: none;
  -webkit-clip-path: none;
}

.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav a {
  color: #d8e2f6;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
}

.hero {
  padding: 6rem 0 4.2rem;
  background: radial-gradient(1200px 450px at 80% 10%, rgba(211, 172, 107, 0.12), transparent),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: stretch;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#heroTypingTitle.typing-active {
  border-right: 2px solid #e7bf7a;
  white-space: normal;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.hero-copy p,
.lead {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.review-stats-mini {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-stats-mini span {
  font-size: 0.73rem;
  color: #d7e6ff;
  border: 1px solid #2e466f;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
}

.hero-badges {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f7e2ba;
  border: 1px solid #604a28;
  background: linear-gradient(180deg, rgba(211, 172, 107, 0.2), rgba(211, 172, 107, 0.08));
}

.brand-logo-card {
  margin-top: 1.1rem;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 520px;
}

.brand-logo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.74) contrast(1.05);
}

.brand-logo-overlay {
  position: absolute;
  left: 0.7rem;
  right: auto;
  bottom: 0;
  padding: 0.5rem 0.65rem;
  background: rgba(5, 8, 14, 0.6);
  border: 1px solid rgba(210, 170, 106, 0.35);
  border-radius: 10px;
  margin-bottom: 0.65rem;
  backdrop-filter: blur(2px);
}

.brand-logo-overlay p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.brand-logo-overlay span {
  color: #e6c179;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-logo {
  width: min(250px, 62vw);
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0.75rem 1.05rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-strong));
  color: #1a1a1a;
  box-shadow: 0 10px 24px rgba(211, 172, 107, 0.18);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(17, 24, 38, 0.45);
}

.hero-card,
.card,
.area-box,
.quote-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 14px;
}

.hero-card {
  padding: 1.25rem 1.1rem;
  box-shadow: 0 12px 28px rgba(1, 6, 18, 0.35);
}

.hero-card p,
.hero-card li {
  color: var(--muted);
  line-height: 1.55;
}

.hero-card-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-card-trust span {
  font-size: 0.72rem;
  border: 1px solid #38507a;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  color: #d5e7ff;
}

.hero-review-gallery {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.review-card {
  border: 1px solid #2f456d;
  border-radius: 10px;
  background: rgba(10, 18, 33, 0.85);
  overflow: hidden;
}

.review-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  background: #060b15;
  display: block;
}

.review-img-city {
  object-position: center;
}

.review-img-jet {
  object-position: center;
}

.review-img-hotel {
  object-position: center;
}

.review-card p {
  margin: 0;
  padding: 0.55rem 0.65rem 0.3rem;
  color: #dce8ff;
  font-size: 0.84rem;
  line-height: 1.45;
}

.review-card span {
  display: block;
  padding: 0 0.65rem 0.65rem;
  color: #cda96d;
  font-size: 0.76rem;
  font-weight: 600;
}

.gold-glow-message {
  margin: 0.95rem 0 0;
  padding: 0.95rem 1rem 1.05rem;
  text-align: center;
  border: 1px solid rgba(205, 166, 96, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(22, 16, 8, 0.45), rgba(13, 11, 8, 0.25));
  color: #f3d59d;
  animation: goldGlowPulse 2s ease-in-out infinite;
}

.gold-main {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(243, 213, 157, 0.45), 0 0 22px rgba(216, 168, 88, 0.3);
}

.gold-sub {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  color: #e7c98f;
  line-height: 1.5;
}

.live-review {
  margin-top: 1rem;
  border: 1px solid #2d446c;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 24, 40, 0.92), rgba(10, 17, 30, 0.92));
  padding: 1rem 1.1rem;
  text-align: center;
}

.live-review-title {
  margin: 0;
  color: #dbe8ff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-stars {
  margin-top: 0.35rem;
  color: #e3bc78;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  animation: starPulse 1.8s ease-in-out infinite;
}

.live-review-text {
  margin: 0.45rem auto 0;
  max-width: 760px;
  color: #e5efff;
  font-size: 0.97rem;
}

.live-review-author {
  margin: 0.35rem 0 0;
  color: #cda96d;
  font-size: 0.86rem;
  font-weight: 600;
}

@keyframes starPulse {
  0%,
  100% {
    opacity: 0.8;
    text-shadow: 0 0 0 rgba(227, 188, 120, 0);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 14px rgba(227, 188, 120, 0.4);
  }
}

@keyframes goldGlowPulse {
  0%,
  100% {
    opacity: 0.85;
    text-shadow: 0 0 8px rgba(243, 213, 157, 0.38), 0 0 18px rgba(216, 168, 88, 0.22);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 13px rgba(250, 223, 167, 0.62), 0 0 30px rgba(223, 176, 97, 0.4);
  }
}

@keyframes brandLogoShine {
  0%,
  100% {
    filter: brightness(1.03) drop-shadow(0 0 4px rgba(211, 172, 107, 0.2));
  }
  50% {
    filter: brightness(1.12) drop-shadow(0 0 10px rgba(227, 188, 120, 0.35));
  }
}

.section {
  padding: 4rem 0;
  border-top: 1px solid rgba(37, 53, 82, 0.24);
}

.section-alt {
  background: #0a101c;
}

.section-head {
  margin-bottom: 1.3rem;
}

.center-head {
  text-align: center;
}

.services-showcase {
  background: linear-gradient(180deg, #f6f1e8, #efe7db);
  color: #1c1a18;
}

.services-showcase .eyebrow {
  color: #8f6a36;
  letter-spacing: 0.1em;
}

.services-showcase h2 {
  color: #1f1d1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem 1.2rem;
}

.showcase-item {
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.showcase-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(42, 28, 10, 0.12);
}

.showcase-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 0.8rem;
  border: 1.5px solid #b1874d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b1874d;
  background: rgba(255, 248, 236, 0.75);
}

.showcase-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-item h3 {
  color: #6c2136;
  margin-bottom: 0.55rem;
  font-size: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.showcase-item p {
  margin: 0;
  color: #3b3329;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#services .card {
  min-height: 220px;
}

.card {
  padding: 1.1rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #36507d;
  box-shadow: 0 14px 28px rgba(1, 7, 20, 0.34);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  background: #070b14;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  border: 1px solid #2b3650;
}

.fleet-img-nyc {
  object-position: center 72%;
}

.fleet-img-bridge {
  object-position: center 73%;
}

.fleet-img-jet {
  object-position: center 70%;
}

.fleet-img-gmc {
  object-position: center 64%;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 12px;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.photo-card p {
  margin: 0;
  padding: 0.65rem 0.72rem 0.75rem;
  color: #dce8ff;
  font-size: 0.87rem;
}

.empty-photo-note {
  color: #b8c8e3;
}

.photo-manager-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.photo-manager-form label {
  color: #dce7fb;
  font-weight: 600;
}

.photo-manager-form input[type="file"] {
  border: 1px solid #2b3a58;
  background: #0c1321;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.photo-manager-form input[type="text"] {
  width: 100%;
  border: 1px solid #2b3a58;
  background: #0c1321;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.photo-help {
  margin: 0;
  color: #9fb2d3;
  font-size: 0.85rem;
}

.photo-manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.photo-success {
  margin: 0;
  color: #cbeab6;
  font-weight: 600;
}

.fleet-remove-btn {
  margin: 0 0.72rem 0.75rem;
  border: 1px solid #61405b;
  background: #2d1322;
  color: #f3dbe8;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.fleet-remove-btn:hover {
  background: #3b1a2d;
}

.admin-only {
  display: none !important;
}

.admin-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.68);
  padding: 1rem;
}

.admin-gate-card {
  width: min(520px, 92vw);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.admin-gate-card h2 {
  margin-bottom: 0.35rem;
}

.admin-gate-card p {
  margin-top: 0;
  color: var(--muted);
}

.admin-gate-row {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.admin-gate-row input {
  width: 100%;
  border: 1px solid #2b3a58;
  background: #0c1321;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.admin-gate-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.admin-error {
  margin: 0.5rem 0 0;
  color: #ffb3c3;
  font-weight: 600;
}

.muted {
  font-size: 0.9rem;
}

.trust-strip {
  padding: 0.9rem 0;
  border-top: 1px solid #1f314e;
  border-bottom: 1px solid #1f314e;
  background: #081224;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.trust-strip-grid p {
  margin: 0;
  text-align: center;
  color: #d9e8ff;
  font-weight: 600;
  font-size: 0.88rem;
}

.areas-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.area-box {
  padding: 0.9rem 0.8rem;
  color: #dce6fa;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.quote-form {
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 14px 30px rgba(1, 8, 23, 0.4);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: #dce5f8;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 1px solid #2b3a58;
  background: #0c1321;
  color: var(--text);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
  min-height: 110px;
}

.quote-form-full {
  gap: 0.9rem;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.quote-row.full {
  grid-template-columns: 1fr;
}

.quote-checks {
  display: grid;
  gap: 0.45rem;
  color: #b9c8df;
  font-size: 0.92rem;
}

.quote-checks label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.quote-submit {
  width: fit-content;
}

.trust-chips {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-chips span {
  font-size: 0.76rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #2b4269;
  color: #d4e5ff;
}

.seo-cards .card h3 {
  margin-bottom: 0.35rem;
}

.airport-strip {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 0.95rem;
}

.airport-strip p {
  margin: 0.2rem 0;
  color: #dce9ff;
}

.location-intent-links {
  margin: 0.95rem 0 0;
  color: #bed2f0;
}

.location-intent-links a {
  color: #e7bf7a;
}

.qa-lite {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.qa-lite article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 12px;
  padding: 0.85rem;
}

.qa-lite h4 {
  margin-bottom: 0.4rem;
}

.qa-lite p {
  margin: 0;
  color: var(--muted);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.how-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}

.how-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(211, 172, 107, 0.22);
  color: #f2d59b;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.how-grid p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  background: #f4f1ed;
  color: #171717;
}

.faq-section .eyebrow {
  color: #9b6d45;
}

.faq-section .section-head h2 {
  color: #1a1a1a;
}

.faq-list {
  border-top: 1px solid #ddd4ca;
}

.faq-item {
  border-bottom: 1px solid #ddd4ca;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  color: #1f1f1f;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: left;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  color: #9f2740;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 0 1rem;
}

.faq-answer p {
  margin: 0;
  color: #3d3d3d;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 1rem;
}

.contact-card p {
  margin: 0.35rem 0;
  color: #d0ddf3;
}

.contact-badges {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.contact-badges span {
  border: 1px solid #35507f;
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  font-size: 0.74rem;
  color: #d8e8ff;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  display: grid;
  gap: 0.32rem;
  color: #dce7fb;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #2b3f63;
  background: #0a1221;
  color: #e9f2ff;
  border-radius: 10px;
  padding: 0.66rem 0.72rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 95px;
  resize: vertical;
}

.contact-note {
  margin: 0;
  color: #9fb1d0;
  font-size: 0.84rem;
}

.contact-callout .lead {
  max-width: 760px;
  margin: 0 auto 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #161616;
  padding: 2.2rem 0 2.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
  gap: 1.4rem;
}

.footer-logo {
  width: min(260px, 100%);
  display: block;
  margin-bottom: 0.6rem;
  clip-path: inset(0 0 14% 0);
  -webkit-clip-path: inset(0 0 14% 0);
  animation: brandLogoShine 6.5s ease-in-out infinite;
}

.footer-brand p:first-of-type {
  color: #dcdcdc;
  margin-bottom: 0.7rem;
}

.site-footer h4 {
  margin-bottom: 0.7rem;
}

.site-footer p {
  margin: 0.25rem 0;
  color: #b6b6b6;
}

.site-footer a:hover {
  color: #e3bc78;
}

.social-row {
  display: flex;
  gap: 0.55rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #8d2a3b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ececec;
  font-weight: 700;
  font-size: 0.86rem;
}

.social-row a.social-fb {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
}

.social-row a.social-fb:hover {
  filter: brightness(1.08);
}

.social-row a.social-fb svg {
  display: block;
  flex-shrink: 0;
}

.sticky-mobile-cta {
  display: none;
}

.reserve-hero {
  background: linear-gradient(180deg, #0b1322, #09101d);
  padding: 5.3rem 0 3.9rem;
  border-bottom: 4px solid #cfa764;
}

.reserve-hero h1 {
  text-align: center;
  color: #f5f8ff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.reserve-section {
  background: radial-gradient(900px 280px at 50% -20%, rgba(211, 172, 107, 0.1), transparent), #070c16;
  padding: 3rem 0 4.2rem;
}

.reserve-wrap h2 {
  text-align: center;
  color: #dce7fb;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.reserve-confidence {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.reserve-confidence span {
  font-size: 0.78rem;
  color: #dde9ff;
  border: 1px solid #304b78;
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
}

.reserve-thanks {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(211, 172, 107, 0.45);
  background: rgba(211, 172, 107, 0.12);
  color: #f3e6c8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.reserve-form {
  border: 1px solid #2e446d;
  background: linear-gradient(180deg, #0f1727, #0c1423);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(1, 7, 20, 0.45);
  padding: 1.25rem;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.reserve-grid.full {
  grid-template-columns: 1fr;
}

.reserve-form label {
  display: grid;
  gap: 0.35rem;
  color: #d7e4fa;
  font-size: 0.95rem;
}

.reserve-form input:not([type="checkbox"]),
.reserve-form select {
  width: 100%;
  border: 1px solid #2a3f64;
  background: #0a1221;
  color: #eaf1ff;
  border-radius: 8px;
  padding: 0.62rem 0.65rem;
  font: inherit;
}

.reserve-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  margin: 0.7rem 0 1.1rem;
  color: #becde5;
}

.reserve-checks label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.35;
}

.reserve-checks input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #d3ac6b;
  flex: 0 0 auto;
}

.reserve-submit {
  display: block;
  margin: 0 auto;
  border: 0;
  background: linear-gradient(120deg, #d3ac6b, #e7bf7a);
  color: #1a1a1a;
  padding: 0.72rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.reserve-terms {
  text-align: center;
  color: #9eb0ce;
  margin-top: 0.9rem;
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qa-lite {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 66px;
    width: min(320px, 92%);
    background: #0d1422;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 5rem;
  }

  .review-card img {
    height: 200px;
  }

  .gold-main {
    font-size: 1.08rem;
  }

  .gold-sub {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 190px;
    max-width: 52vw;
  }

  .card img {
    height: 230px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .photos-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .reserve-grid {
    grid-template-columns: 1fr;
  }

  .reserve-checks {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 1.03rem;
  }

  .form-actions {
    flex-wrap: wrap;
  }

  .quote-row {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(8, 11, 18, 0.98);
    border-top: 1px solid #2a3f64;
  }

  .sticky-mobile-cta a {
    text-align: center;
    padding: 0.85rem 0.6rem;
    font-weight: 700;
  }

  .sticky-mobile-cta a:first-child {
    background: #0f1c33;
    color: #dce7ff;
  }

  .sticky-mobile-cta a:last-child {
    background: linear-gradient(120deg, var(--gold), var(--gold-strong));
    color: #161616;
  }

  .site-footer {
    padding-bottom: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo,
  .footer-logo {
    animation: none;
    filter: brightness(1.06) drop-shadow(0 0 6px rgba(211, 172, 107, 0.28));
  }
}
