/* ============================================================
   OVB — Home Page Styles
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 12s ease;
}

.hero:hover .hero-video {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.55) 60%, rgba(10,14,26,0.3) 100%),
    linear-gradient(to top, rgba(10,14,26,0.8) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 720px;
  padding-top: 8rem; /* enough to clear fixed header (~80px) + safe gap */
}

.hero-title {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.hero-title em {
  font-style: italic;
}

.hero-desc {
  max-width: 52ch;
  margin-top: 1.75rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  background: rgba(201,169,110,0.6);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.hero-scroll-indicator span:nth-child(1) { height: 20px; animation-delay: 0s; }
.hero-scroll-indicator span:nth-child(2) { height: 14px; animation-delay: 0.25s; opacity: 0.5; }

@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.4); }
}

.hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  z-index: 3;
}

/* ── About Intro ───────────────────────────────────────── */
.about-intro {
  background: var(--navy-mid);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.85);
}

.about-intro-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.5rem 2rem;
  text-align: center;
}

.badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.3rem;
}

.about-intro-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* ── Services Home ─────────────────────────────────────── */
.services-home {
  position: relative;
  overflow: hidden;
}

.services-bg-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  transform: scale(1.1);
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(10,14,26,0.8) 50%, var(--navy) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}

.service-card:hover h3 { color: var(--gold); }

.service-card p {
  font-size: 0.87rem;
  flex: 1;
}

.service-card-arrow {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Dubai Showcase ────────────────────────────────────── */
.dubai-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.dubai-showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 3px;
  background: var(--navy);
}

.dubai-img {
  overflow: hidden;
}

.dubai-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  aspect-ratio: 3/2;
}

.dubai-img-tall {
  grid-row: span 2;
}

.dubai-img-tall img {
  aspect-ratio: auto;
  height: 100%;
}

.dubai-img:hover img { transform: scale(1.06); }

.dubai-showcase-text {
  background: var(--navy-soft);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Why Section ───────────────────────────────────────── */
.why-section {
  background: var(--navy-mid);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.why-item:hover {
  border-color: var(--border);
  background: rgba(201,169,110,0.02);
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.45);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transition: color 0.3s ease;
}

.why-item:hover .why-number { color: rgba(201,169,110,0.7); }

.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.88);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-badge { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dubai-showcase { grid-template-columns: 1fr; }
  .dubai-showcase-images { min-height: 400px; }
  .dubai-showcase-text { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .hero-inner { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dubai-showcase-images { grid-template-columns: 1fr 1fr; }
}
