:root {
  --black: #080808;
  --black-soft: #111111;
  --charcoal: #191919;
  --gold: #c9a14a;
  --gold-light: #e3c573;
  --cream: #f5f2ea;
  --white: #ffffff;
  --grey: #b8b8b8;
  --line: rgba(201, 161, 74, 0.3);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: #171717;
  line-height: 1.6;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9a7223;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(201, 161, 74, 0.18);
  backdrop-filter: blur(13px);
}

.nav-wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: #f4f4f4;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-phone {
  padding: 12px 17px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 810px;
  display: flex;
  align-items: center;
  padding-top: 86px;
  background:
    url("images/hero-car.jpg") center 35% / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.77) 38%, rgba(0, 0, 0, 0.16) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 105px;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.5rem, 7.6vw, 6.9rem);
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-copy {
  max-width: 600px;
  margin: 26px 0 30px;
  color: #dfdfdf;
  font-size: 1rem;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(201, 161, 74, 0.12);
}

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

.trust-strip {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.92);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 23px 28px;
  border-right: 1px solid rgba(201, 161, 74, 0.18);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-item span {
  margin-top: 5px;
  color: #a9a9a9;
  font-size: 0.72rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 70px;
}

.image-card {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(201, 161, 74, 0.25);
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: #565656;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 42px;
}

.values-grid article {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.value-icon {
  display: inline-block;
  margin-bottom: 10px;
  color: #a77d2a;
  font-size: 2rem;
}

.values-grid h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.values-grid p {
  margin-top: 7px;
  color: #676767;
  font-size: 0.82rem;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 45px;
}

.section-heading > p {
  color: #aaa;
}

.light-heading > p {
  color: #656565;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  overflow: hidden;
  background: #151515;
  border: 1px solid rgba(201, 161, 74, 0.34);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-7px);
  border-color: var(--gold);
}

.service-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.service-card img {
  height: 190px;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
}

.service-body p {
  min-height: 76px;
  margin: 12px 0 22px;
  color: #bbb;
  font-size: 0.82rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 161, 74, 0.25);
}

.service-footer strong,
.service-footer a {
  color: var(--gold-light);
  font-size: 0.77rem;
  text-transform: uppercase;
}

.price-modal[hidden] {
  display: none;
}

.price-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.price-modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid var(--gold);
  background: #151515;
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.price-modal-panel h2 {
  margin: 8px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3rem);
}

.price-modal-description,
.price-modal-note {
  color: #bbb;
}

.price-modal-amount {
  display: block;
  margin: 25px 0 8px;
  color: var(--gold-light);
  font-size: 1.5rem;
}

.price-modal-note {
  margin-bottom: 28px;
  font-size: 0.82rem;
}

.price-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
}

body.modal-open {
  overflow: hidden;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  min-height: 280px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
  background: var(--black);
  color: var(--white);
  transform: translateY(-12px);
}

.package-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.package-card h3 {
  margin: 45px 0 15px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.package-card p {
  color: #666;
}

.package-card.featured p {
  color: #c5c5c5;
}

.fleet {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.7)),
    url("images/fleet.jpg") center / cover no-repeat;
  color: var(--white);
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: center;
}

.fleet-layout > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 30px;
  color: #d0d0d0;
}

.fleet-panel {
  padding: 40px;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 10, 0.78);
}

.fleet-panel h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.fleet-panel ul {
  list-style: none;
}

.fleet-panel li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 161, 74, 0.22);
  color: #d5d5d5;
}

.fleet-panel li::before {
  content: "—";
  margin-right: 12px;
  color: var(--gold);
}

.contact-strip {
  padding: 55px 0;
  background: linear-gradient(90deg, #b98c35, #e4c774, #b98c35);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
}

.contact-grid h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.contact-number span,
.contact-number strong {
  display: block;
}

.contact-number span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-number strong {
  margin-top: 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.site-footer {
  background: #090909;
  color: #bbb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.footer-logo {
  max-width: 230px;
  margin-bottom: 15px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  font-size: 0.86rem;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(201, 161, 74, 0.18);
}

.footer-bottom p {
  font-size: 0.72rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #090909;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px;
    background: #080808;
    border-top: 1px solid rgba(201, 161, 74, 0.2);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

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

@media (max-width: 820px) {
  .hero {
    min-height: 870px;
    background-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.62));
  }

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

  .trust-item {
    padding: 16px;
  }

  .split-layout,
  .fleet-layout,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    gap: 42px;
  }

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

  .package-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .brand img {
    max-height: 54px;
  }

  .hero {
    min-height: 960px;
    padding-top: 76px;
  }

  .hero-content {
    padding-bottom: 250px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .service-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 161, 74, 0.18);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .image-card,
  .image-card img {
    min-height: 350px;
  }

  .service-card img {
    height: 230px;
  }

  .contact-number {
    text-align: center;
  }
}
/* ==================================
   PREMIUM SERVICE POPUP
================================== */

.modal-open {
  overflow: hidden;
}

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.price-modal[hidden] {
  display: none;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.price-modal-panel {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 42px;
  background:
    linear-gradient(
      145deg,
      rgba(197, 157, 74, 0.07),
      transparent 35%
    ),
    #101010;
  border: 1px solid rgba(197, 157, 74, 0.45);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
}

.price-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.price-modal-close:hover {
  background: #c59d4a;
  border-color: #c59d4a;
  color: #000000;
  transform: rotate(90deg);
}

.price-modal-content {
  width: 100%;
}

.price-modal-content > .eyebrow {
  margin: 0 0 8px;
  color: #c59d4a;
}

#price-modal-title {
  margin: 0 60px 14px 0;
  color: #c59d4a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1;
}

.price-modal-description {
  max-width: 750px;
  margin: 0 0 32px;
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.8;
}

.price-modal-section {
  margin-top: 30px;
}

.price-modal-section h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.price-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(197, 157, 74, 0.3);
  border-radius: 14px;
}

.price-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  text-align: left;
}

.price-table th {
  background: #c59d4a;
  color: #080808;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-table td {
  color: #eeeeee;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr {
  transition: background 0.2s ease;
}

.price-table tbody tr:hover {
  background: rgba(197, 157, 74, 0.08);
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
  font-weight: 700;
}

.price-table td:nth-child(3) {
  color: #c59d4a;
}

.price-modal-details-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: start;
}

.price-modal-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-modal-checklist li {
  position: relative;
  padding-left: 27px;
  color: #dedede;
  line-height: 1.5;
}

.price-modal-checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #c59d4a;
  font-weight: 700;
}

.price-modal-side-details {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.detail-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(197, 157, 74, 0.3);
  border-radius: 14px;
}

.detail-box span {
  display: block;
  margin-bottom: 8px;
  color: #c59d4a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.detail-box strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-modal-note {
  margin: 30px 0 20px;
  color: #979797;
  font-size: 0.82rem;
  line-height: 1.6;
}

.price-modal-book {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #c59d4a;
  border: 1px solid #c59d4a;
  color: #080808;
  font-size: 0.93rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.price-modal-book:hover {
  background: #dfbd70;
  border-color: #dfbd70;
  color: #000000;
  transform: translateY(-2px);
}

/* Text shown on the service cards */

.service-view-link {
  color: #c59d4a;
  font-weight: 700;
  cursor: pointer;
}

/* Mobile popup */

@media (max-width: 760px) {
  .price-modal {
    align-items: end;
    padding: 10px;
  }

  .price-modal-panel {
    width: 100%;
    max-height: 94vh;
    padding: 32px 20px 24px;
    border-radius: 18px;
  }

  #price-modal-title {
    margin-right: 45px;
    font-size: 2.6rem;
  }

  .price-modal-details-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-modal-checklist {
    grid-template-columns: 1fr;
  }

  .price-modal-side-details {
    margin-top: 22px;
  }

  .price-table th,
  .price-table td {
    padding: 13px 12px;
    font-size: 0.84rem;
  }

  .price-modal-close {
    top: 13px;
    right: 13px;
    width: 40px;
    height: 40px;
  }
}

/* ==================================
   CONTACT STRIP — BLACK & GOLD
================================== */

.contact-strip {
  padding: 55px 0;
  background: #080808;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 30px rgba(201, 161, 74, 0.12);
}

.contact-strip .eyebrow,
.contact-strip h2,
.contact-strip .contact-number span,
.contact-strip .contact-number strong {
  color: var(--gold);
}

.contact-enquiry-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  background: #080808;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-enquiry-btn:hover {
  background: var(--gold);
  color: #080808;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.22);
}

/* ==================================
   CONTACT / ENQUIRY PAGE
================================== */

.contact-page-main {
  min-height: 100vh;
  padding-top: 95px;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 161, 74, 0.12), transparent 32%),
    #0a0a0a;
  color: #f2f2f2;
}

.contact-page-hero {
  padding: 90px 0 45px;
  text-align: center;
}

.contact-page-hero h1 {
  margin: 8px 0 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
}

.contact-page-hero p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: #c7c7c7;
  line-height: 1.8;
}

.enquiry-section {
  padding: 20px 0 90px;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.enquiry-form,
.contact-info-card {
  background: #101010;
  border: 1px solid rgba(201, 161, 74, 0.55);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.enquiry-form {
  padding: 34px;
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h2,
.contact-info-card h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.form-heading p,
.contact-info-card p {
  color: #bdbdbd;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

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

.form-group label {
  color: #e4e4e4;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(201, 161, 74, 0.28);
  border-radius: 10px;
  background: #080808;
  color: #fff;
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.12);
}

.form-note {
  margin: 18px 0;
  color: #8f8f8f;
  font-size: 0.8rem;
  line-height: 1.6;
}

.enquiry-submit {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #080808;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.enquiry-submit:hover {
  background: #dfbd70;
  transform: translateY(-2px);
}

.contact-info-card {
  position: sticky;
  top: 120px;
  padding: 30px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.contact-info-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 161, 74, 0.18);
}

.contact-info-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info-item a,
.contact-info-item strong {
  color: #fff;
}

@media (max-width: 860px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .contact-page-main {
    padding-top: 78px;
  }

  .contact-page-hero {
    padding: 65px 0 35px;
  }

  .enquiry-form {
    padding: 24px 18px;
  }

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

  .form-group.full-width {
    grid-column: auto;
  }
}
