/* ===========================
   RESET & BASE
   =========================== */
/* Monument Extended */
@font-face {
  font-family: 'Monument Extended';
  src: local('Monument Extended'),
       local('MonumentExtended-Regular'),
       url('MonumentExtended-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Poppins */
@font-face {
  font-family: 'Poppins';
  src: local('Poppins Light'),
       local('Poppins-Light'),
       url('Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg-dark: #000000;
  --bg-card: #0e0e0e;
  --bg-card-alt: #131313;
  --bg-surface: #161616;
  --accent: #E8613C;
  --accent-hover: #d4522f;
  --text-primary: #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-muted: #64748B;
  --border: #1a1a1a;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

.btn--lg {
  padding: 14px 32px;
  font-size: 0.85rem;
  border-radius: 0;
  letter-spacing: 1px;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--full {
  width: 100%;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: var(--transition);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 28px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.navbar__logo-icon {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  letter-spacing: 0.2px;
  padding-bottom: 2px;
}

.navbar__links a:hover {
  color: #fff;
}

.navbar__links a.active {
  color: #fff;
  border-bottom: 2px solid var(--accent);
}

.navbar__cta {
  font-size: 0.8rem;
  padding: 10px 24px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__mobile {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.navbar__mobile ul {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.navbar__mobile a {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding: 140px 0 0;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Hero background */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,15,25,0.75) 0%, rgba(11,15,25,0.5) 40%, rgba(11,15,25,0.15) 100%),
    linear-gradient(to bottom, rgba(11,15,25,0.15) 0%, rgba(11,15,25,0.05) 40%, rgba(11,15,25,0.5) 85%, var(--bg-dark) 100%),
    url('hero-jewelry.png.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Tech circuit / shield holographic overlay on the right */
.hero__circuit {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 32px, rgba(0,210,210,0.12) 32px, rgba(0,210,210,0.12) 33px),
    repeating-linear-gradient(90deg, transparent, transparent 32px, rgba(0,210,210,0.12) 32px, rgba(0,210,210,0.12) 33px),
    radial-gradient(circle at 65% 40%, rgba(0,210,210,0.22) 0%, transparent 45%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 75%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, transparent 75%);
}

/* Shield shape glow inside circuit area */
.hero__circuit::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-55%);
  width: 280px;
  height: 320px;
  background:
    radial-gradient(ellipse at center, rgba(0,210,210,0.12) 0%, transparent 65%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: blur(2px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 40px;
  max-width: none;
  margin-left: 0;
  margin-right: auto;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero__text {
  flex: none;
  max-width: 600px;
  text-align: left;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 8px rgba(232, 97, 60, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #fff;
}

.hero__title .highlight {
  position: relative;
  display: inline;
  color: #fff;
  background: rgba(232, 97, 60, 0.85);
  padding: 6px 10px;
  border-radius: 6px;
  border-bottom: 3px solid var(--accent);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 480px;
}

/* Hero info blocks (location + date) — side by side */
.hero__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__info-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 24px;
}

.hero__info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232, 97, 60, 0.08);
  border: 1px solid rgba(232, 97, 60, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__info-icon svg {
  width: 20px;
  height: 20px;
}

.hero__info-main {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.hero__info-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Hero dual buttons */
.hero__buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero__buttons .btn--primary span {
  margin-left: 6px;
  font-size: 1.1rem;
}

/* Hero jewelry image — hidden, now used as background */
.hero__image {
  display: none;
}

.hero__image img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero__image-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 210, 210, 0.1) 0%, transparent 60%);
  z-index: 1;
  border-radius: 50%;
}

/* Marquee ticker */
.hero__marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background: var(--accent);
  margin-top: auto;
}

.hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
  padding: 14px 0;
}

.hero__marquee-track span {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  user-select: none;
  letter-spacing: 3px;
  flex-shrink: 0;
  padding: 0 24px;
}

.hero__marquee-track .marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   STATS / ABOUT
   =========================== */
.stats {
  padding: 100px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 48px;
}

.stats__outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.stats__left {
  display: flex;
  flex-direction: column;
}

.stats__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.stats__heading {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.stats__heading-highlight {
  background: var(--accent);
  color: #fff;
  padding: 2px 14px;
  border-radius: 6px;
  display: inline-block;
}

.stats__paragraph {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stats__card {
  text-align: left;
  padding: 20px 22px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.stats__card:hover {
  border-color: var(--accent);
  border-left-color: var(--accent);
  transform: translateY(-3px);
}

.stats__number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stats__plus,
.stats__percent {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 4px;
}

.stats__desc {
  color: var(--text-secondary);
  font-size: 0.78rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* About section image */
.stats__right {
  position: relative;
}

.stats__image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 420px;
}

.stats__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}

.stats__image-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===========================
   BOOKING FORM
   =========================== */
.booking {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Geometric diamond / triangle pattern decorations */
.booking__geo {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='280'%3E%3Cpolygon points='0,0 140,0 0,140' fill='%23111'/%3E%3Cpolygon points='140,0 140,140 0,140' fill='%23080808'/%3E%3Cpolygon points='0,140 140,140 140,280' fill='%23111'/%3E%3Cpolygon points='0,140 0,280 140,280' fill='%23080808'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 100% auto;
}

.booking__geo--left {
  left: 0;
}

.booking__geo--right {
  right: 0;
  transform: scaleX(-1);
}

/* Bottom form - no background */
.booking__diamond-bg {
  display: none;
}

.booking--bottom {
  padding: 60px 0 0;
  margin-bottom: 0;
}

.booking--bottom .booking__inner {
  position: relative;
  z-index: 1;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking__text {
  text-align: left;
}

.booking__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.booking__title {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 20px;
}

.booking__title .accent {
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
}

.booking__sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.booking__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px;
}

.booking__form-title {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* Top form - centered variant */
.booking__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.booking__heading {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  font-style: normal;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 40px;
}

.booking__heading .accent {
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
}

.booking--top .booking__form-wrap {
  width: 100%;
  max-width: 640px;
}

.booking__form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label .required {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 97, 60, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 100px 0;
  background: var(--bg-dark);
}

.features__subtitle {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.features__title {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  text-align: left;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.features__desc {
  text-align: left;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 56px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--accent);
  border-top: 2px solid var(--accent);
  border-radius: 0;
  overflow: hidden;
}

.features__card {
  grid-column: span 2;
  background: var(--bg-card);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 30px 26px;
  text-align: left;
  transition: background var(--transition);
}

.features__card:nth-child(3) {
  border-right: none;
}

.features__card:nth-child(n+4) {
  grid-column: span 3;
  border-bottom: none;
}

.features__card:last-child {
  border-right: none;
}

.features__card:hover {
  background: var(--bg-card-alt);
}

.features__icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 97, 60, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.features__icon svg {
  width: 22px;
  height: 22px;
}

.features__card h3 {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 400 !important;
  font-style: normal !important;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1.4;
}

.features__card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===========================
   WHY MEET
   =========================== */
.why {
  padding: 100px 0;
  background: var(--bg-dark);
}

.why__title {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  text-align: left;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 56px;
}

.why__title-highlight {
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
}

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

.why__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}

.why__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.why__num {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 16px;
}

.why__card h3 {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   BANNER
   =========================== */
.banner {
  padding: 0;
  margin: 0;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
  font-size: 0;
  line-height: 0;
}

.banner__diamond-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80' viewBox='0 0 120 80'%3E%3Cpolygon points='0,0 60,80 0,80' fill='%23fff'/%3E%3Cpolygon points='0,0 60,80 120,0' fill='%23999'/%3E%3Cpolygon points='120,0 60,80 120,80' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 100%;
  opacity: 0.08;
}

.banner .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.banner__text {
  font-family: 'Monument Extended', 'Inter', 'Helvetica Neue', sans-serif;
  text-align: left;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: -2px;
  user-select: none;
  line-height: 0.8;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  transform: translateY(0);
  vertical-align: top;
}

.banner__accent {
  color: var(--accent);
}

.banner__x {
  color: #333;
  margin: 0 0.1em;
  display: inline-block;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--accent);
  border-top: none;
  padding: 12px 0;
  margin-top: 0;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__logo-icon {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer__brand svg {
  width: 32px;
  height: 32px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   ANIMATIONS (scroll reveal)
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .hero__inner {
    gap: 30px;
  }

  .hero__marquee-track span {
    font-size: 0.8rem;
  }

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

  .features__card {
    grid-column: span 1;
  }

  .features__card:nth-child(n+4) {
    grid-column: span 1;
  }

  .features__card:nth-child(2n) {
    border-right: none;
  }

  .features__card:nth-child(3) {
    border-right: 1px solid var(--accent);
  }

  .features__card:nth-child(n+4) {
    border-bottom: 1px solid var(--accent);
  }

  .features__card:last-child {
    border-bottom: none;
    border-right: none;
  }

  .footer__bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 24px);
    top: 10px;
    border-radius: 12px;
  }

  .navbar__inner {
    padding: 0 16px;
    height: 56px;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__mobile.active {
    display: block;
  }

  .hero {
    padding: 110px 0 0;
    min-height: auto;
  }

  .hero__inner {
    flex-direction: column;
    gap: 32px;
    text-align: left;
    padding-bottom: 20px;
    padding-left: 24px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__info {
    flex-direction: column;
    gap: 14px;
  }

  .hero__info-divider {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .hero__image {
    align-self: center;
    margin-bottom: 0;
  }

  .hero__image img {
    max-width: 300px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero__marquee-track span {
    font-size: 0.75rem;
  }

  .hero__circuit {
    display: none;
  }

  .stats__outer {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats__heading {
    font-size: 2rem;
  }

  .stats__image-wrapper img {
    min-height: 300px;
  }

  .booking__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking__geo {
    display: none;
  }

  .booking__diamond-bg {
    width: 100%;
    height: 50%;
  }

  .features__title,
  .why__title {
    font-size: 1.6rem;
  }

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

  .features__card,
  .features__card:nth-child(n+4) {
    grid-column: span 1;
    border-right: none !important;
    border-bottom: 1px solid var(--accent);
  }

  .features__card:last-child {
    border-bottom: none !important;
  }

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

  .banner__text {
    font-size: 4rem !important;
    letter-spacing: -1px !important;
  }

  .booking__heading {
    font-size: 1.8rem;
  }

  .booking--top .booking__form-wrap {
    max-width: 100%;
  }

  .navbar__logo-icon {
    height: 55px;
  }

  .footer__bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .stats__grid {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.4rem;
  }

  .hero__marquee-track span {
    font-size: 0.7rem;
  }

  .booking__title {
    font-size: 1.4rem;
  }

  .booking__heading {
    font-size: 1.4rem;
  }

  .booking__big {
    font-size: 1.8rem;
  }

  .stats__number {
    font-size: 1.5rem;
  }

  .banner__text {
    font-size: 2.5rem !important;
    letter-spacing: -1px !important;
  }

  .navbar__logo-icon {
    height: 45px;
  }

  .footer__logo-icon {
    height: 50px;
  }
}
