*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #08090a;
  --ink2: #111318;
  --ink3: #1c2028;
  --gold: #b8923a;
  --gold2: #d4a84b;
  --gold3: #f0c96a;
  --gold-pale: #f5e8cc;
  --cream: #faf6ee;
  --warm: #ede5d4;
  --silver: #9ba4b0;
  --border: rgba(184, 146, 58, 0.18);
  --border2: rgba(184, 146, 58, 0.35);
  --white: #ffffff;
  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  /* cursor: none; */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s,
    background 0.2s;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 146, 58, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
}
body:has(button:hover) .cursor,
.hovering .cursor {
  background: var(--gold3);
  transform: translate(-50%, -50%) scale(1.5);
}
body:has(button:hover) .cursor-ring,
.hovering .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(184, 146, 58, 0.7);
}

/* ── SCROLL PROGRESS ── */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  z-index: 200;
  width: 0%;
  transition: width 0.08s;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  transition:
    background 0.3s,
    backdrop-filter 0.3s,
    border-bottom 0.3s;
}
.nav.scrolled {
  background: rgba(8, 9, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;

  img {
    width: 100%;
    height: 50px;
    object-fit: contain;
  }
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border-radius: var(--r4);
  font-family: "Outfit", sans-serif;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-tel:hover {
  color: var(--gold2);
}
.nav-tel svg {
  color: var(--gold);
  flex-shrink: 0;
}
.nav-btn {
  background: transparent;
  border: 0.5px solid var(--border2);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r4);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  display: inline-block;
}
.nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.nav-btn-solid {
  background: var(--gold);
  border: 0.5px solid var(--gold);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r4);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.nav-btn-solid:hover {
  background: var(--gold3);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: stretch;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 5% 50%,
      rgba(184, 146, 58, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 50% at 90% 20%,
      rgba(184, 146, 58, 0.04) 0%,
      transparent 55%
    );
}
/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 146, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 146, 58, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(80px);
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 5vw;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold2);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.4;
}
.hero-eyebrow::before {
  width: 24px;
  flex: none;
}
.hero-eyebrow::after {
  width: 24px;
  flex: none;
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
}
.hero-h1 strong {
  font-weight: 700;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Country flags row */
.gulf-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}
.gulf-flag {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.gulf-flag:hover {
  border-color: var(--border2);
  background: rgba(184, 146, 58, 0.06);
}
.gulf-flag span {
  font-size: 16px;
}

/* Stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: var(--r8);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(12px);
  max-width: 560px;
}
.hstat {
  flex: 1;
  padding: 18px 20px;
  border-right: 0.5px solid var(--border);
  transition: background 0.2s;
}
.hstat:last-child {
  border-right: none;
}
.hstat:hover {
  background: rgba(184, 146, 58, 0.05);
}
.hstat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold2);
  line-height: 1;
}
.hstat-l {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

/* ── HERO FORM PANEL ── */
.hero-form-panel {
  background: rgba(250, 246, 238, 0.97);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.form-panel-top {
  background: linear-gradient(135deg, var(--ink3) 0%, var(--ink2) 100%);
  padding: 32px 36px 28px;
  border-bottom: 0.5px solid rgba(184, 146, 58, 0.2);
  position: relative;
  overflow: hidden;
}
.form-panel-top::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 146, 58, 0.12),
    transparent 70%
  );
}
.form-urgent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(184, 146, 58, 0.15);
  border: 0.5px solid rgba(184, 146, 58, 0.4);
  color: var(--gold2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.form-urgent-dot {
  width: 6px;
  height: 6px;
  background: var(--gold3);
  border-radius: 50%;
  animation: urgentPulse 1.5s ease-in-out infinite;
}
@keyframes urgentPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(240, 201, 106, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(240, 201, 106, 0);
  }
}
.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.form-body {
  flex: 1;
  padding: 48px 36px;
  overflow-y: auto;
}

.fl {
  margin-bottom: 14px;
}
.fl label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(8, 9, 10, 0.45);
  margin-bottom: 5px;
}
.fl input,
.fl select,
.fl textarea {
  width: 100%;
  background: var(--white);
  border: 0.5px solid rgba(8, 9, 10, 0.15);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 11px 14px;
  border-radius: var(--r4);
  outline: none;
  appearance: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.fl input::placeholder,
.fl textarea::placeholder {
  color: rgba(8, 9, 10, 0.3);
}
.fl input:focus,
.fl select:focus,
.fl textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 58, 0.12);
}
.fl select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23B8923A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
  cursor: pointer;
}
.fl select option {
  color: var(--ink);
}
.fl textarea {
  resize: none;
  height: 72px;
  line-height: 1.6;
}
.fl2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Multi-select pills */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pill-opt {
  padding: 7px 14px;
  border: 0.5px solid rgba(8, 9, 10, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(8, 9, 10, 0.6);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
  background: var(--white);
}

.pill-opt.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.pill-opt:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

/* Submit */
.form-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold2) 50%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 20px;
  border-radius: var(--r4);
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition:
    background-position 0.4s,
    transform 0.15s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(184, 146, 58, 0.35);
}
.form-submit:active {
  transform: translateY(0);
}
.form-submit svg {
  transition: transform 0.2s;
}
.form-submit:hover svg {
  transform: translateX(4px);
}

.form-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 36px 20px;
  font-size: 10px;
  color: rgba(8, 9, 10, 0.35);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(237, 229, 212, 0.5);
  border-top: 0.5px solid rgba(8, 9, 10, 0.06);
}
.form-footer-trust svg {
  color: rgba(184, 146, 58, 0.7);
  flex-shrink: 0;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
  flex: 1;
  background: var(--cream);
}
.success-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes successPop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.success-ring svg {
  color: var(--ink);
}
.success-h {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.success-p {
  font-size: 14px;
  color: rgba(8, 9, 10, 0.5);
  line-height: 1.7;
  max-width: 280px;
}
.success-p strong {
  color: var(--gold);
}

/* ── TRUST TICKER ── */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  border-top: 0.5px solid rgba(184, 146, 58, 0.3);
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 36px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(8, 9, 10, 0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
.sec {
  padding: 60px 5vw;
  /* padding: 100px 5vw; */
  position: relative;
}
.sec-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-tag::before {
  content: "";
  width: 28px;
  height: 0.5px;
  background: var(--gold);
}
.sec-h {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 18px;
}
.sec-h em {
  font-style: italic;
  color: var(--gold2);
}
.sec-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 100%;
}

/* ── ACP PANEL GALLERY ── */
.panels-sec {
  background: var(--ink2);
}
.panels-intro {
  /* max-width: 680px; */
  max-width: 100%;
  margin-bottom: 64px;
}
.panel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .panel-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .panel-gallery {
    grid-template-columns: 1fr;
  }
}

.panel-card {
  position: relative;
  border-radius: var(--r8);
  overflow: hidden;
  /* aspect-ratio: 3/4; */
  /* aspect-ratio: 5/8; */
  cursor: pointer;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s;

  .swiper {
    height: 250px;
    /* height: 325px; */

    .swiper-slide {
      width: 100%;

      .image-box,
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}
.panel-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.panel-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.panel-overlay {
  /* position: absolute;
      width: 100%;
    height: 25%;
    bottom: 0%; */
  /* inset: 0; */
  background: linear-gradient(
    0deg,
    rgba(8, 9, 10, 0.9) 0%,
    rgba(8, 9, 10, 0.1) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  transition: background 0.3s;
  z-index: 1;
}
.panel-card:hover .panel-overlay {
  background: linear-gradient(
    0deg,
    rgba(8, 9, 10, 0.95) 0%,
    rgba(8, 9, 10, 0.3) 60%,
    rgba(8, 9, 10, 0.05) 100%
  );
}
.panel-badge {
  display: inline-block;
  background: rgba(184, 146, 58, 0.9);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.panel-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.1;
}
.panel-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}
.panel-spec {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pspec {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 3px 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}
.panel-card:hover .pspec {
  border-color: rgba(184, 146, 58, 0.3);
  color: var(--gold2);
}

/* Wide panel feature */
.panel-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 700px) {
  .panel-feature {
    grid-template-columns: 1fr;
  }
}
.panel-wide {
  grid-column: 1/-1;
  border-radius: var(--r8);
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 21/9;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.3s;
}
.panel-wide:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.panel-wide .panel-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── WHY VIVA ── */
.why-sec {
  background: var(--ink);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5px;
  border: 0.5px solid var(--border);
  border-radius: var(--r12);
  overflow: hidden;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-cell {
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.015);
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.why-cell:hover {
  background: rgba(184, 146, 58, 0.04);
}
.why-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-cell:hover::before {
  opacity: 1;
}
.why-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(184, 146, 58, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.why-icon-wrap {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: rgba(184, 146, 58, 0.08);
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid rgba(184, 146, 58, 0.15);
}
.why-cell h3 {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.why-cell p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* ── FIRE COMPLIANCE ── */
.fire-sec {
  background: var(--ink2);
  overflow: hidden;
}
.fire-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 800px) {
  .fire-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.fire-grades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}
.fire-card {
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid var(--border);
  border-radius: var(--r8);
  padding: 24px 20px;
  text-align: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.fire-card:hover {
  background: rgba(184, 146, 58, 0.06);
  border-color: var(--border2);
  transform: translateY(-2px);
}
.fire-grade {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 6px;
}
.fire-grade-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.fire-grade-desc {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.compliance-list {
  margin-top: 32px;
}
.comp-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-flag {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.comp-info p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}

/* ── COUNTRIES ── */
.countries-sec {
  background: var(--ink);
}
.gulf-map-wrap {
  margin-top: 60px;
  position: relative;
  border-radius: var(--r12);
  overflow: hidden;
  border: 0.5px solid var(--border);
}
.gulf-map-bg {
  width: 100%;
  min-height: 260px;
  background: linear-gradient(135deg, var(--ink2), var(--ink3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 5vw;
}
.gulf-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 146, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 146, 58, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.gulf-pills-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* gap: 45px; */
  justify-content: center;
}
.gulf-country-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(184, 146, 58, 0.3);
  border-radius: var(--r8);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.gulf-country-card:hover {
  background: rgba(184, 146, 58, 0.08);
  transform: translateY(-2px);
}
.gc-flag {
  font-size: 28px;
}
.gc-info {
  text-align: left;
}
.gc-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.gc-sub {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.country-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--border);
}
@media (max-width: 700px) {
  .country-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cstat {
  padding: 28px 5vw;
  border-right: 0.5px solid var(--border);
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  transition: background 0.2s;
}
.cstat:last-child {
  border-right: none;
}
.cstat:hover {
  background: rgba(184, 146, 58, 0.04);
}
.cstat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold2);
}
.cstat-l {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

/* ── TESTIMONIALS ── */
.testi-sec {
  background: var(--ink2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi-card {
  background: rgba(255, 255, 255, 0.02);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r12);
  padding: 32px 28px;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s;
  overflow: hidden;
}
.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(184, 146, 58, 0.06);
  line-height: 1;
  pointer-events: none;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.star {
  color: var(--gold2);
  font-size: 13px;
}
.testi-q {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.testi-role {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-sec {
  background: var(--ink);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
@media (max-width: 900px) {
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq-item {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  user-select: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item:hover .faq-q {
  color: var(--white);
}
.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 0.5px solid rgba(184, 146, 58, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition:
    transform 0.25s,
    background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(184, 146, 58, 0.1);
}
.faq-a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  padding-bottom: 18px;
  display: none;
  padding-right: 40px;
}
.faq-item.open .faq-a {
  display: block;
}

/* CTA PANEL */
.cta-form-sec {
  background: var(--ink2);
  padding: 0;
}
.cta-form-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 560px;
}
@media (max-width: 900px) {
  .cta-form-inner {
    grid-template-columns: 1fr;
  }
}
.cta-left {
  background: linear-gradient(135deg, var(--ink3), #0d111a);
  padding: 80px 5vw 80px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-left::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 146, 58, 0.07),
    transparent 70%
  );
}
.cta-left::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 146, 58, 0.04),
    transparent 70%
  );
}
.cta-form-right {
  background: var(--cream);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-h {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-h em {
  font-style: italic;
  color: var(--gold2);
}
.cta-p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cta-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.cta-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(184, 146, 58, 0.12);
  border: 0.5px solid rgba(184, 146, 58, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-check-icon svg {
  color: var(--gold);
}

.cta-form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.cta-form-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(8, 9, 10, 0.45);
  margin-bottom: 24px;
}

/* ── FOOTER ── */
footer {
  background: #040507;
  padding: 20px 5vw;
  border-top: 0.5px solid rgba(184, 146, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);

  img {
    width: 100%;
    height: 50px;
    object-fit: cover;
  }
}
footer p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  max-width: 440px;
  line-height: 1.6;
}
.foot-links {
  display: flex;
  gap: 24px;
}
.foot-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.foot-links a:hover {
  color: var(--gold);
}

/* ── FLOAT WA ── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float::before {
  content: "Chat with us";
  position: absolute;
  right: 66px;
  background: rgba(8, 9, 10, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r4);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.wa-float:hover::before {
  opacity: 1;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-l.in {
  opacity: 1;
  transform: none;
}
.reveal-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-r.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}

/* ── HERO ENTRANCE ── */
.h-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: hReveal 0.8s ease forwards;
}
@keyframes hReveal {
  to {
    opacity: 1;
    transform: none;
  }
}
.h-r1 {
  animation-delay: 0.2s;
}
.h-r2 {
  animation-delay: 0.38s;
}
.h-r3 {
  animation-delay: 0.52s;
}
.h-r4 {
  animation-delay: 0.66s;
}
.h-r5 {
  animation-delay: 0.8s;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-form-panel {
    min-height: auto;
  }
  .hero-left {
    padding: 48px 5vw 40px;
  }
  .form-body {
    padding: 24px 5vw;
  }
  .form-panel-top {
    padding: 24px 5vw 20px;
  }
  .form-footer-trust {
    padding: 14px 5vw 20px;
  }
  .nav-tel {
    display: none;
  }
}
@media (max-width: 600px) {
  .fl2 {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    max-width: 100%;
  }
  .hstat {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }
  .hstat:last-child {
    border-bottom: none;
  }
  .cta-form-right {
    padding: 32px 5vw;
  }
}

@media (min-width: 320px) {
  .nav-right {
    gap: 20px;
  }
}

@media (min-width: 580px) {
  .nav-right {
    gap: 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    .hstat {
      /* width: calc(100% / 2); */
    }
  }
}

@media (min-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

      .hero {
        grid-template-columns: 3fr 2fr;
    }

    .fl2 {
    grid-template-columns: 1fr;
    gap: 0px;
  }

    .form-body {
        padding: 24px 2vw;
      }

    .panel-gallery {
    grid-template-columns: repeat(2, 1fr);
}
}

      @media (min-width: 1080px) {
            .panel-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
      }

      @media (min-width: 1200px) {
              .fl2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
      }