:root {
  --black: #070707;
  --ink: #0d0d0d;
  --panel: #151515;
  --panel-2: #1d1d1d;
  --white: #ffffff;
  --text: #f2f2f2;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d7a947;
  --gold-2: #f0cc72;
  --teal: #2ec7b7;
  --blue: #4f8cff;
  --coral: #e56b55;
  --green: #25d366;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --header-height: 84px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.site-shell {
  background:
    radial-gradient(
      circle at top left,
      rgba(46, 199, 183, 0.1),
      transparent 30rem
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(215, 169, 71, 0.1),
      transparent 25rem
    ),
    var(--black);
  min-height: 100vh;
}
.header {
  align-items: center;
  background: rgba(7, 7, 7, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 6.5%;
  position: fixed;
  top: 0;
  transition: 0.3s ease;
  width: 100%;
  z-index: 1000;
}
.header.scrolled {
  background: rgba(7, 7, 7, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}
.logo-area {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}
.logo-mark {
  align-items: center;
  background: black;
  /* border: 1px solid rgba(255, 255, 255, 0.22); */
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
  color: #070707;
  display: flex;
  flex: 0 0 50px;
  font-size: 0.92rem;
  font-weight: 800;
  height: 50px;
  justify-content: center;
  width: 50px;
}
.logo-area h2 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}
.logo-area span {
  color: var(--gold-2);
  display: block;
  font-size: 0.82rem;
}
.navbar {
  align-items: center;
  display: flex;
  gap: 24px;
}
.navbar a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  transition: 0.25s ease;
}
.navbar a::after {
  background: linear-gradient(90deg, var(--gold), var(--teal));
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
  width: 100%;
}
.navbar a:hover,
.navbar a.active-link {
  color: var(--gold-2);
}
.navbar a:hover::after,
.navbar a.active-link::after {
  transform: scaleX(1);
}
.menu-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  display: none;
  height: 44px;
  justify-content: center;
  transition: 0.25s ease;
  width: 44px;
}
.menu-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero {
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.82)
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2100&q=88");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 142px 6.5% 72px;
  position: relative;
}
.hero-video {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.hero::before {
  animation: heroPan 18s ease-in-out infinite alternate;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.74)
    ),
    linear-gradient(
      120deg,
      transparent 0 42%,
      rgba(255, 255, 255, 0.08) 48%,
      transparent 54%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.hero::after {
  background: linear-gradient(0deg, var(--black), transparent 24%);
  bottom: 0;
  content: "";
  height: 38%;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.18fr) 390px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  align-items: center;
  color: var(--gold-2);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.eyebrow::before {
  background: var(--teal);
  content: "";
  height: 2px;
  width: 42px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 6.5vw, 6.8rem);
  font-weight: 800;
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 980px;
}
.hero h1 span {
  color: var(--gold-2);
}
.hero-copy {
  color: #dedede;
  font-size: 1.05rem;
  max-width: 780px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  align-items: center;
  border: 0;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  isolation: isolate;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  padding: 13px 24px;
  position: relative;
  transition: 0.28s ease;
  white-space: nowrap;
}
.btn::before {
  background: rgba(255, 255, 255, 0.22);
  content: "";
  height: 180%;
  left: -55%;
  position: absolute;
  top: -40%;
  transform: rotate(18deg);
  transition: 0.45s ease;
  width: 36%;
  z-index: -1;
}
.btn:hover::before {
  left: 120%;
}
.btn:hover {
  transform: translateY(-4px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  clip-path: polygon(0 0, 91% 0, 100% 50%, 91% 100%, 0 100%, 9% 50%);
  color: #060606;
  padding-left: 34px;
  padding-right: 34px;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}
.btn-notch {
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 86% 100%, 0 100%);
  color: #041414;
}
.btn-pill {
  background: var(--green);
  border-radius: 999px;
  color: var(--white);
}
.btn-dark {
  background: #070707;
  color: var(--white);
}
.hero-card {
  background: rgba(16, 16, 16, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-image {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1000&q=86");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.hero-card-image h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}
.hero-card-body {
  display: grid;
  gap: 13px;
  padding: 22px;
}
.mini-service {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  padding: 14px;
  transition: 0.25s ease;
}
.mini-service:hover {
  border-color: rgba(215, 169, 71, 0.65);
  transform: translateX(5px);
}
.mini-service i {
  align-items: center;
  background: rgba(215, 169, 71, 0.12);
  color: var(--gold);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.mini-service strong {
  display: block;
  font-size: 0.9rem;
}
.mini-service span {
  color: var(--muted);
  font-size: 0.78rem;
}
.trust-strip {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 0 6.5%;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-item {
  border-right: 1px solid var(--line);
  padding: 28px 24px;
}
.trust-item:first-child {
  border-left: 1px solid var(--line);
}
.trust-item strong {
  color: var(--white);
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}
.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}
section {
  padding: 100px 6.5%;
  scroll-margin-top: var(--header-height);
}
.section-title {
  margin-bottom: 48px;
  max-width: 840px;
}
.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-title.center .eyebrow {
  justify-content: center;
}
.section-title h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 14px;
}
.section-title p {
  color: var(--muted);
}
.about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--black);
}
.about-grid,
.ceo-grid,
.contact-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 1fr;
}
.about-copy p,
.ceo-copy p,
.contact-info p {
  color: var(--muted);
  margin-bottom: 18px;
}
.about-lanes {
  display: grid;
  gap: 16px;
}
.lane {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 52px 1fr;
  padding: 22px;
  position: relative;
  transition: 0.28s ease;
}
.lane::after {
  background: linear-gradient(180deg, var(--gold), var(--teal));
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.28s ease;
  width: 3px;
}
.lane:hover {
  transform: translateX(8px);
}
.lane:hover::after {
  height: 100%;
}
.lane i {
  align-items: center;
  background: rgba(46, 199, 183, 0.12);
  color: var(--teal);
  display: flex;
  font-size: 1.25rem;
  height: 52px;
  justify-content: center;
  width: 52px;
}
.lane h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.lane p {
  color: var(--muted);
  font-size: 0.9rem;
}
.services {
  background: #0d0d0d;
}
.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 286px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: 0.3s ease;
}
.service-card::before {
  background: linear-gradient(
    135deg,
    rgba(215, 169, 71, 0.18),
    rgba(46, 199, 183, 0.16)
  );
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: 0.3s ease;
}
.service-card:hover {
  border-color: rgba(215, 169, 71, 0.62);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card.primary-highlight {
  /* border-color: rgba(240, 204, 114, 0.78); */
  /* box-shadow: 0 22px 70px rgba(215, 169, 71, 0.18); */
}
/* .service-card.primary-highlight::before {
  background: linear-gradient(
    135deg,
    rgba(240, 204, 114, 0.2),
    rgba(79, 140, 255, 0.16));
  opacity: 1;
} */
.service-card.primary-highlight .card-icon {
  background: var(--gold);
  color: #070707;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.card-icon {
  align-items: center;
  background: rgba(215, 169, 71, 0.12);
  color: var(--gold-2);
  display: flex;
  font-size: 1.45rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 22px;
  width: 54px;
}
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}
.service-card ul {
  color: #d8d8d8;
  display: grid;
  gap: 8px;
  list-style: none;
  margin-top: 18px;
}
.service-card li {
  align-items: center;
  display: flex;
  font-size: 0.88rem;
  gap: 9px;
}
.service-card li::before {
  background: var(--teal);
  content: "";
  height: 7px;
  width: 7px;
}
.merchandise {
  background: linear-gradient(180deg, #101010, #070707);
}
.merch-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr 0.9fr;
}
.merch-feature {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1607082349566-187342175e2f?auto=format&fit=crop&w=1400&q=86");
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  min-height: 520px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.merch-feature h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 640px;
}
.merch-feature p {
  color: #dedede;
  max-width: 620px;
}
.category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.category-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 160px;
  padding: 22px;
  transition: 0.25s ease;
}
.category-card:hover {
  border-color: rgba(46, 199, 183, 0.68);
  transform: translateY(-5px);
}
.category-card i {
  color: var(--teal);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.category-card h3 {
  font-size: 1rem;
  margin-bottom: 7px;
}
.category-card p {
  color: var(--muted);
  font-size: 0.86rem;
}
.properties {
  background: var(--black);
}
.property-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 34px;
}
.tab-btn {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  min-height: 44px;
  padding: 10px 18px;
  transition: 0.25s ease;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: #080808;
}
.property-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.property-card {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.3s ease;
}
.property-card.hide {
  display: none;
}
.property-card:hover {
  border-color: rgba(215, 169, 71, 0.7);
  transform: translateY(-8px);
}
.property-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}
.property-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}
.property-image .property-img {
  inset: 0;
  position: absolute;
}
.property-image .primary {
  opacity: 1;
  z-index: 1;
}
.property-image .secondary {
  opacity: 0;
  transform: scale(1.08);
  z-index: 2;
}
.property-card:hover .property-image .primary {
  opacity: 0;
  transform: scale(1.08);
}
.property-card:hover .property-image .secondary {
  opacity: 1;
  transform: scale(1);
}
.property-card:hover .property-image img {
  transform: scale(1.08);
}
.property-card:hover .property-image .property-img {
  transform: scale(1);
}
.property-label {
  background: rgba(7, 7, 7, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 800;
  left: 16px;
  padding: 7px 10px;
  position: absolute;
  top: 16px;
  text-transform: uppercase;
  z-index: 4;
}
.property-body {
  padding: 24px;
}
.property-body h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.property-body p {
  color: var(--muted);
  font-size: 0.92rem;
}
.property-meta {
  color: #dedede;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.property-meta span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  padding: 7px 9px;
}
.ceo {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=86");
  background-position: center;
  background-size: cover;
}
.ceo-card {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}
.ceo-photo {
  background: black;
  display: grid;
  min-height: 420px;
  place-items: center;
  position: relative;
}
.ceo-photo::before {
  /* border: 1px solid rgba(255, 255, 255, 0.22); */
  content: "";
  inset: 22px;
  position: absolute;
}
.ceo-initials {
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 800;
  line-height: 1;
}
.ceo-details {
  padding-top: 20px;
}
.ceo-details h3 {
  font-size: 1.4rem;
}
.ceo-details span {
  color: var(--gold-2);
  display: block;
  font-weight: 700;
  margin-top: 4px;
}
.quote-box {
  border-left: 4px solid var(--gold);
  color: #e6e6e6;
  font-size: 1.05rem;
  margin: 24px 0;
  padding-left: 18px;
}
.cars-rentals {
  background: #0d0d0d;
}
.gallery {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    var(--black);
}
.gallery-stage {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 58px 1fr 58px;
  margin: 0 auto;
  max-width: 1120px;
}
.gallery-track {
  aspect-ratio: 16 / 8.5;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.gallery-slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  transform: scale(1.02);
}
.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.gallery-slide img {
  height: 100%;
  object-fit: cover;
}
.gallery-slide::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}
.gallery-slide figcaption {
  bottom: 22px;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  left: 24px;
  position: absolute;
  z-index: 2;
}
.gallery-btn {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--white);
  display: flex;
  font-size: 1.2rem;
  height: 58px;
  justify-content: center;
  transition: 0.25s ease;
  width: 58px;
}
.gallery-btn:hover {
  background: var(--gold);
  color: #070707;
  transform: translateY(-3px);
}
.gallery-count {
  color: var(--gold-2);
  font-weight: 800;
  margin-top: 18px;
  text-align: center;
}
.split-showcase {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}
.showcase-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.showcase-image {
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  position: relative;
}
.showcase-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}
.showcase-panel:hover .showcase-image:not(.auto-slider) img {
  transform: scale(1.07);
}
.auto-slider .slider-image {
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition:
    opacity 0.85s ease,
    transform 4.2s ease;
}
.auto-slider .slider-image.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.showcase-panel:hover .auto-slider .slider-image.active {
  transform: scale(1.06);
}
.slider-dots {
  bottom: 16px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}
.slider-dot {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.45);
  height: 8px;
  transition: 0.25s ease;
  width: 22px;
}
.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 34px;
}
.showcase-body {
  padding: 28px;
}
.showcase-body h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.showcase-body p {
  color: var(--muted);
}
.feature-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
}
.feature-list span {
  align-items: center;
  color: #dedede;
  display: flex;
  gap: 10px;
}
.feature-list i {
  color: var(--teal);
}
.wholesale {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=86");
  background-position: center;
  background-size: cover;
}
.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-card {
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid var(--line);
  min-height: 218px;
  padding: 26px;
  transition: 0.25s ease;
}
.process-card:hover {
  border-color: rgba(215, 169, 71, 0.68);
  transform: translateY(-6px);
}
.process-card strong {
  align-items: center;
  background: var(--gold);
  color: #070707;
  display: flex;
  font-size: 1.1rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 20px;
  width: 42px;
}
.process-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-card p {
  color: var(--muted);
  font-size: 0.9rem;
}
.testimonials {
  background: var(--black);
}
.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 280px;
  padding: 28px;
  position: relative;
  transition: 0.28s ease;
}
.testimonial-card::before {
  color: rgba(215, 169, 71, 0.24);
  content: "“";
  font-size: 7rem;
  font-weight: 800;
  left: 18px;
  line-height: 1;
  position: absolute;
  top: 8px;
}
.testimonial-card:hover {
  border-color: rgba(46, 199, 183, 0.68);
  transform: translateY(-6px);
}
.testimonial-card p,
.testimonial-card h4,
.stars {
  position: relative;
  z-index: 1;
}
.stars {
  color: var(--gold-2);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #dedede;
  margin-bottom: 22px;
}
.testimonial-card h4 {
  color: var(--gold-2);
}
.faq {
  background: #0e0e0e;
}
.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}
.faq-question i {
  color: var(--gold);
  transition: 0.25s ease;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  color: var(--muted);
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.28s ease;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 22px 20px;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--black);
}
.contact-info {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px;
}
.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}
.contact-list a,
.contact-list span {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  gap: 12px;
  padding: 14px;
  transition: 0.25s ease;
}
.contact-list a:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}
.contact-list i {
  color: var(--gold);
  width: 20px;
}
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  padding: 32px;
}
.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  background: #0b0b0b;
  border: 1px solid var(--line);
  color: var(--white);
  min-height: 50px;
  outline: none;
  padding: 13px 14px;
  transition: 0.25s ease;
  width: 100%;
}
.field textarea {
  min-height: 132px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 169, 71, 0.08);
}
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 54px 6.5% 32px;
  text-align: center;
}
.footer h2 {
  color: var(--gold-2);
  margin-bottom: 8px;
}
.footer p {
  color: var(--muted);
}
.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}
.socials a {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  height: 44px;
  justify-content: center;
  transition: 0.25s ease;
  width: 44px;
}
.socials a:hover {
  background: var(--gold);
  color: #070707;
  transform: translateY(-4px);
}
.floating-whatsapp,
.top-btn {
  align-items: center;
  border: 0;
  bottom: 24px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: 0.25s ease;
  width: 58px;
  z-index: 999;
}
.floating-whatsapp {
  animation: pulse 2.4s ease-in-out infinite;
  background: var(--green);
  border-radius: 999px;
  font-size: 1.62rem;
}
.top-btn {
  background: var(--gold);
  bottom: 94px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
  color: #070707;
  display: none;
  font-size: 1.2rem;
}
.floating-whatsapp:hover,
.top-btn:hover {
  transform: translateY(-5px);
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.76s ease,
    transform 0.76s ease;
}
.reveal.active-reveal {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
@keyframes heroPan {
  from {
    transform: translateX(-3%) scale(1.03);
  }
  to {
    transform: translateX(3%) scale(1.08);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}
@media (max-width: 1180px) {
  .navbar {
    gap: 16px;
  }
  .hero-grid,
  .about-grid,
  .ceo-grid,
  .contact-grid,
  .merch-grid,
  .split-showcase,
  .gallery-stage {
    grid-template-columns: 1fr;
  }
  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
  }
  .gallery-stage {
    position: relative;
  }
  .gallery-prev {
    left: 12px;
  }
  .gallery-next {
    right: 12px;
  }
  .gallery-btn:hover {
    transform: translateY(-50%);
  }
  .hero-card {
    max-width: 680px;
  }
  .service-grid,
  .property-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }
  .header {
    padding: 0 5%;
  }
  .menu-btn {
    display: flex;
  }
  .navbar {
    align-items: flex-start;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--line);
    flex-direction: column;
    height: calc(100vh - var(--header-height));
    justify-content: flex-start;
    padding: 32px;
    position: fixed;
    right: -100%;
    top: var(--header-height);
    transition: 0.28s ease;
    width: min(330px, 86vw);
  }
  .navbar.active {
    right: 0;
  }
  .hero {
    background-attachment: scroll;
    padding: 118px 5% 64px;
  }
  section,
  .trust-strip,
  .footer {
    padding-left: 5%;
    padding-right: 5%;
  }
  .trust-grid,
  .category-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .logo-mark {
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }
  .logo-area h2 {
    font-size: 0.82rem;
  }
  .logo-area span {
    font-size: 0.72rem;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero-actions,
  .property-tabs {
    align-items: stretch;
    flex-direction: column;
  }
  .btn,
  .tab-btn {
    width: 100%;
  }
  .trust-grid,
  .service-grid,
  .property-grid,
  .testimonial-grid,
  .process-grid,
  .category-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:first-child {
    border-left: 1px solid var(--line);
  }
  .merch-feature {
    min-height: 420px;
    padding: 24px;
  }
  .gallery-track {
    aspect-ratio: 4 / 3;
  }
  .gallery-slide figcaption {
    bottom: 16px;
    left: 18px;
    right: 18px;
  }
  .contact-form,
  .contact-info,
  .ceo-card {
    padding: 24px;
  }
}
