/* ==========================================================================
   01. ROOT VARIABLES & GLOBAL BASE
   ========================================================================== */
:root {
  --primary-dark: #121824;
  --gold: #b48c48;
  --gold-hover: #9c7536;
  --bg-light: #f9fafb;
  --card-radius: 28px; /* Strict 25-30px radius */
  --font-main: 'Satoshi', sans-serif;
}

html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--primary-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ==========================================================================
   02. SITE HEADER, TOPBAR & DESKTOP NAVIGATION
   ========================================================================== */
#header-container {
  position: relative !important;
  z-index: 1050 !important;
  width: 100% !important;
  display: block !important;
  background-color: #0b0f19;
}

/* Site Topbar */
.site-topbar {
  position: relative !important;
  z-index: 1051 !important;
  display: block !important;
  background-color: #0b0f19;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.topbar-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .topbar-badge {
    justify-content: flex-start;
  }
}

.site-topbar span {
  color: #cbd5e1;
}

.topbar-contact {
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-contact a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.topbar-contact a:hover {
  color: var(--gold);
}

.topbar-phone {
  color: #ffffff !important;
  font-weight: 600;
}

/* Sticky Main Header */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
  background-color: #ffffff !important;
  display: block !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #edf2f7;
}

.brand-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-title {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  line-height: 1.1;
}

.brand-tagline {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 4px;
}

/* Desktop Menu Links */
.desktop-menu-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 4px;
}

.desktop-menu-links a:hover {
  color: var(--gold);
}

.btn-nav-consultation {
  background: var(--primary-dark);
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 18px !important;
  border-radius: 30px;
  transition: all 0.3s ease !important;
}

.btn-nav-consultation:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
}

/* Minimalist Hamburger Button */
.menu-toggle-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 38px !important;
  height: 38px !important;
}

.menu-toggle-btn:hover {
  border-color: var(--gold);
  background-color: #fafafa;
}

.menu-icon-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu-icon-lines span {
  display: block;
  height: 1.5px;
  background-color: var(--primary-dark);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.site-logo-img {
  height: 70px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.site-logo-img-side-menu {
  height: 70px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo:hover .site-logo-img {
  transform: scale(1.02);
}

.site-logo-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .site-logo-mobile {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block !important;
  }
  .site-header {
    padding: 6px 0 !important;
  }
  .menu-toggle-btn {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }
  .site-logo-img {
    display: none !important;
  }
}


/* ==========================================================================
   03. MOBILE OFFCANVAS DRAWER & ACTIONS
   ========================================================================== */
.modern-menu-drawer {
  width: 380px !important;
  max-width: 88vw !important;
  height: 100vh !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background-color: #ffffff !important;
  border-top-left-radius: 28px !important;
  border-bottom-left-radius: 28px !important;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  flex-direction: column !important;
}

.modern-menu-drawer .offcanvas-header {
  flex-shrink: 0;
  background-color: #ffffff;
  border-top-left-radius: 28px;
}

.modern-menu-drawer .offcanvas-body {
  flex-grow: 1;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.modern-menu-drawer .offcanvas-body::-webkit-scrollbar {
  width: 5px;
}

.modern-menu-drawer .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 10px;
}

.drawer-brand span.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.drawer-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
}

.lang-switch {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.active-lang {
  color: var(--gold);
}

.lang-link {
  color: #94a3b8;
  text-decoration: none;
}

.lang-link:hover {
  color: var(--primary-dark);
}

.drawer-primary-nav {
  display: flex;
  flex-direction: column;
}

.drawer-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.25s ease;
}

.drawer-nav-row:hover {
  color: var(--gold);
  padding-left: 8px;
}

.drawer-nav-row .arrow {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.drawer-nav-row:hover .arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.drawer-cat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background-color: var(--bg-light);
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  text-decoration: none;
  color: #475569;
  transition: all 0.3s ease;
}

.drawer-cat-box:hover {
  background-color: #ffffff;
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.box-icon {
  font-size: 1.25rem;
  margin-bottom: 3px;
}

.box-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-drawer-wa {
  background: #25d366;
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-drawer-wa:hover {
  background: #1eb956;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}


/* ==========================================================================
   04. GENERAL HERO & STATIC BACKDROP
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.95) 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-pill-badge {
  background: rgba(180, 140, 72, 0.08);
  border: 1px solid rgba(180, 140, 72, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8c6a2e;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-headline {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 580px;
}

.btn-hero-primary {
  background-color: var(--primary-dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.btn-hero-primary:hover {
  background-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180, 140, 72, 0.3);
}

.btn-hero-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-hero-whatsapp:hover {
  background-color: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.hero-stat-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.2px;
}

.hero-media-wrapper {
  max-width: 390px;
  margin: 0 auto;
}

.hero-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid #f1f5f9;
  background-color: #000000;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-video-card:hover .hero-media-img {
  transform: scale(1.03);
}

.video-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(180, 140, 72, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ffffff;
  margin-left: 3px;
}

.hero-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(11, 15, 25, 0.9) 100%);
}

.caption-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.caption-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2px;
}

.hero-floating-badge {
  position: absolute;
  bottom: -15px;
  left: -20px;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.hero-floating-badge .badge-icon {
  font-size: 1.4rem;
}

.hero-floating-badge strong {
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.hero-floating-badge small {
  font-size: 0.72rem;
}

.btn-hero-glass-gold {
  background: rgba(180, 140, 72, 0.18);
  border: 1.5px solid rgba(180, 140, 72, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #8c6a2e;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(180, 140, 72, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-glass-gold:hover {
  background-color: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(180, 140, 72, 0.35);
}


/* ==========================================================================
   05. CINEMATIC VIDEO BACKGROUND HERO & 3-VIDEO SLIDER
   ========================================================================== */
.cinematic-hero-section {
  position: relative !important;
  width: 100% !important;
  max-width: 100vw !important;
  min-height: 88vh;
  overflow: hidden !important;
  background-color: #0b0f19;
  z-index: 1 !important;
}

.hero-video-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-bg-video.active {
  opacity: 1;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 15, 25, 0.92) 0%,
    rgba(11, 15, 25, 0.75) 50%,
    rgba(11, 15, 25, 0.45) 100%
  );
  z-index: 2;
}

.hero-main-title {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-main-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 680px;
  color: #e2e8f0 !important;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}

.hero-stat-desc {
  font-size: 0.74rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

@media (min-width: 576px) {
  .border-start-sm {
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
}

.hero-floating-authority {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px;
  border-radius: 20px;
}

.authority-icon {
  font-size: 1.3rem;
}

.hero-keyword-highlight {
  color: #ffffff !important;
  background: linear-gradient(120deg, rgba(180, 140, 72, 0.35) 0%, rgba(212, 175, 55, 0.45) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.hero-cta-grid .btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 12px 14px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  width: 100% !important;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-cta-grid {
    display: flex;
    width: auto;
    gap: 16px;
  }
  
  .hero-cta-grid .btn {
    width: auto !important;
    padding: 14px 28px !important;
    font-size: 0.95rem !important;
  }
}


/* ==========================================================================
   06. OUR PROMISE SECTION
   ========================================================================== */
.promise-section {
  background-color: #f9fafb;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.promise-pill-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.promise-heading {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.promise-subtext {
  font-size: 0.92rem;
  font-weight: 400;
  max-width: 380px;
  line-height: 1.5;
}

.promise-scroll-container {
  width: 100%;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.promise-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.promise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 12px 28px rgba(18, 24, 36, 0.06);
}

.promise-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background-color: rgba(180, 140, 72, 0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.promise-card:hover .promise-icon-wrapper {
  background-color: var(--primary-dark);
  color: #ffffff;
}

.promise-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.promise-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   07. SERVICES SCOPE & CATALOG (HOME & SERVICE PAGES)
   ========================================================================== */
.services-scope-section,
.services-overview-section {
  background-color: #ffffff;
}

.services-pill-badge {
  background: rgba(180, 140, 72, 0.08);
  border: 1px solid rgba(180, 140, 72, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8c6a2e;
}

.services-main-heading {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-subheading {
  font-size: 0.95rem;
  max-width: 540px;
  line-height: 1.6;
}

.filter-scroll-container {
  width: 100%;
}

.filter-pills-wrap {
  flex-wrap: wrap;
}

.filter-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  background: #ffffff;
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.15);
}

.service-media-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  background-color: #0b0f19;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-media-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(11, 15, 25, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
}

.service-card-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.service-arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-media-card:hover .service-arrow-btn {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.services-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--primary-dark);
}

.services-main-subtext {
  font-size: 0.98rem;
  max-width: 620px;
  line-height: 1.65;
}

.service-luxury-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-luxury-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 36px rgba(18, 24, 36, 0.08);
}

.service-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #0b0f19;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-luxury-card:hover .service-img {
  transform: scale(1.06);
}

.service-scope-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-link {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.service-action-link:hover {
  color: var(--gold-hover);
  gap: 8px;
}

.service-item-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: #cbd5e1;
}

.services-catalog-section {
  background-color: #f8fafc;
}

.service-detail-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 36px rgba(18, 24, 36, 0.07);
}

.service-detail-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #0b0f19;
  overflow: hidden;
}

.service-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-card:hover .service-detail-img {
  transform: scale(1.05);
}

.service-duration-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-detail-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.service-detail-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-detail-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: auto;
}

.deliv-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.service-wa-link {
  color: #059669;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-wa-link:hover {
  color: #047857;
  text-decoration: underline;
}

.authority-strip-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* ==========================================================================
   08. UGC & 9:16 VERTICAL VIDEO CAROUSEL (UPDATED FOR HTML5 VIDEO)
   ========================================================================== */
.ugc-video-section {
  background-color: #0b0f19;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.ugc-pill-badge {
  background: rgba(180, 140, 72, 0.15);
  border: 1px solid rgba(180, 140, 72, 0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #d4af37;
}

.badge-dot-gold {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.ugc-main-heading {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.ugc-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ugc-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.ugc-carousel-wrapper {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 25px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ugc-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.ugc-video-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  cursor: pointer;
}

@media (min-width: 768px) {
  .ugc-video-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (min-width: 1200px) {
  .ugc-video-card {
    flex: 0 0 calc(25% - 18px);
  }
}

.ugc-media-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #121824;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

/* Video fit inside 9:16 vertical card */
.ugc-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ugc-video-card:hover .ugc-card-video {
  transform: scale(1.05);
}

/* Subtle dark gradient overlay over video for readable titles */
.ugc-media-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 45%, rgba(11, 15, 25, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.ugc-media-inner.is-playing .ugc-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.ugc-number-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(180, 140, 72, 0.3);
}

.ugc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(180, 140, 72, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.play-arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
  margin-left: 3px;
}

.ugc-video-card:hover .ugc-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ffffff;
}

.ugc-video-card:hover .play-arrow {
  border-left-color: var(--primary-dark);
}

.ugc-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 20px;
}

.ugc-location-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.ugc-card-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}


/* ==========================================================================
   09. 3-STEP PROCESS SECTION & HOW IT WORKS
   ========================================================================== */
.process-section {
  background-color: #f8fafc;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.process-pill-badge {
  background: rgba(180, 140, 72, 0.08);
  border: 1px solid rgba(180, 140, 72, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8c6a2e;
}

.process-main-heading {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.process-subheading {
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
}

.process-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 32px rgba(18, 24, 36, 0.06);
}

.highlighted-step {
  border-color: rgba(180, 140, 72, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

.process-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.process-step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(180, 140, 72, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.process-watermark-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.5px;
}

.process-img-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background-color: #0b0f19;
}

.process-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-card:hover .process-media-img {
  transform: scale(1.05);
}

.process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.process-card-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.65;
  flex-grow: 1;
}

.process-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.process-deliverables span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.process-detail-section {
  background-color: #ffffff;
}

.process-visual-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
  background-color: #0b0f19;
}

.process-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-visual-box:hover .process-box-img {
  transform: scale(1.05);
}

.process-phase-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 140, 72, 0.4);
  padding: 12px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phase-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.phase-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ffffff;
  text-transform: uppercase;
}

.step-counter-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(180, 140, 72, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(180, 140, 72, 0.25);
}

.process-step-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.process-checklist .check-icon {
  color: #059669;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.process-checklist div {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.process-divider {
  border-color: #f1f5f9;
  opacity: 1;
}

.timeline-scope-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-scope-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 36px rgba(18, 24, 36, 0.06);
}

.featured-timeline-card {
  border-color: rgba(180, 140, 72, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.timeline-scope-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
}

.timeline-scope-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.timeline-weeks-badge {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.timeline-weeks-badge.gold-badge {
  background: rgba(180, 140, 72, 0.12);
  border-color: rgba(180, 140, 72, 0.35);
  color: var(--gold);
}


/* ==========================================================================
   10. REVIEWS & TRUST MARQUEE
   ========================================================================== */
.reviews-section {
  background-color: #ffffff;
  border-bottom: 1px solid #edf2f7;
}

.reviews-pill-badge {
  background: rgba(180, 140, 72, 0.08);
  border: 1px solid rgba(180, 140, 72, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #8c6a2e;
}

.reviews-main-heading {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.google-rating-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 20px;
}

.google-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-score {
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.reviews-scroll-container {
  width: 100%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 36px rgba(18, 24, 36, 0.06);
}

.featured-review {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border-color: rgba(180, 140, 72, 0.3);
}

.stars-gold {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
}

.verified-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.review-quote {
  font-size: 0.92rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.7;
  margin: 16px 0 24px 0;
  font-style: normal;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.2;
}

.author-location {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
  margin-top: 2px;
}

/* Infinite Partners Marquee */
.partners-marquee-section {
  background-color: #b9b9b9;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  overflow: hidden;
  position: relative;
}

.partners-sublabel {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #121824;
  text-transform: uppercase;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  user-select: none;
  padding: 10px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #b9b9b9, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #b9b9b9, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.partner-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180, 140, 72, 0.12);
}

.partner-brand-text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #475569;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.partner-item:hover .partner-brand-text {
  color: var(--primary-dark);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ==========================================================================
   11. PAGE SPECIFIC SECTIONS (ABOUT, GALLERY, WHY US, FAQS, CONTACT)
   ========================================================================== */
.about-hero-section,
.services-hero-section,
.gallery-hero-section,
.process-hero-section,
.why-hero-section,
.faqs-hero-section,
.contact-hero-section {
  background-color: #0b0f19;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-badge,
.services-hero-badge,
.gallery-hero-badge,
.process-hero-badge,
.why-hero-badge,
.faqs-hero-badge,
.contact-hero-badge {
  background: rgba(180, 140, 72, 0.15);
  border: 1px solid rgba(180, 140, 72, 0.35);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

.about-hero-title,
.services-hero-title,
.gallery-hero-title,
.process-hero-title,
.why-hero-title,
.faqs-hero-title,
.contact-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.about-hero-subtext,
.services-hero-subtext,
.gallery-hero-subtext,
.process-hero-subtext,
.why-hero-subtext,
.faqs-hero-subtext,
.contact-hero-subtext {
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.65;
}

.about-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
  width: 100%;
  aspect-ratio: auto !important;
  height: auto;
  background-color: transparent;
}

.about-main-img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

@media (max-width: 767px) {
  .about-image-frame {
    aspect-ratio: auto !important;
  }
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(180, 140, 72, 0.4);
  padding: 16px 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

.exp-years {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.about-section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.about-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark) !important;
}

.about-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-value-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 36px rgba(18, 24, 36, 0.06);
}

.about-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background-color: rgba(180, 140, 72, 0.08);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.about-value-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* GALLERY */
.gallery-grid-section {
  background-color: #ffffff;
}

.gallery-photo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: 28px;
  overflow: hidden;
  background-color: #0b0f19;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-photo-card:hover .gallery-card-img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(11, 15, 25, 0.88) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 22px;
}

.gallery-loc-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.gallery-card-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.3;
}

.gallery-zoom-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.gallery-photo-card:hover .gallery-zoom-badge {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* WHY US */
.why-section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.comparison-card-wrapper {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(18, 24, 36, 0.05);
}

.comparison-custom-table {
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-custom-table thead th {
  padding: 18px 16px;
  border-bottom: 2px solid #edf2f7;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-col-th {
  color: #64748b;
  text-transform: uppercase;
}

.rawdha-col-th {
  background-color: #fdfbf7;
  color: var(--primary-dark);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-top: 2px solid var(--gold);
}

.badge-tag-gold {
  font-size: 0.65rem;
  background: var(--gold);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
}

.market-col-th {
  color: #94a3b8;
  text-transform: uppercase;
}

.comparison-custom-table tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.feature-title {
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.rawdha-cell {
  background-color: #fdfbf7;
}

.check-badge {
  font-size: 0.84rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.cross-badge {
  font-size: 0.84rem;
  font-weight: 700;
  color: #dc2626;
  background: rgba(239, 68, 68, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.why-pillar-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 16px 36px rgba(18, 24, 36, 0.06);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(180, 140, 72, 0.08);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* FAQS */
.faqs-content-section {
  background-color: #f8fafc;
}

.faq-category-icon {
  font-size: 1.5rem;
}

.faq-group-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}

.luxury-accordion .faq-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.luxury-accordion .faq-item:hover {
  border-color: rgba(180, 140, 72, 0.4);
  box-shadow: 0 10px 24px rgba(18, 24, 36, 0.05);
}

.luxury-accordion .accordion-button {
  background-color: #ffffff;
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 22px 24px;
  box-shadow: none;
  border: none;
}

.luxury-accordion .accordion-button:not(.collapsed) {
  background-color: #fdfbf7;
  color: var(--gold);
}

.luxury-accordion .accordion-button::after {
  background-size: 1rem;
  transition: transform 0.3s ease;
}

.luxury-accordion .accordion-body {
  padding: 0 24px 22px 24px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.75;
  background-color: #fdfbf7;
}

.faq-support-box {
  background: linear-gradient(135deg, #0b0f19 0%, #172033 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.faq-banner-pill-text {
  color: var(--gold) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Action Buttons */
.btn-gold-solid {
  background-color: var(--gold) !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  border: 1px solid var(--gold) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(180, 140, 72, 0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-gold-solid:hover {
  background-color: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180, 140, 72, 0.45) !important;
}

.btn-whatsapp-solid {
  background-color: #25d366 !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  border: 1px solid #25d366 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-whatsapp-solid:hover {
  background-color: #1ebc57 !important;
  border-color: #1ebc57 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4) !important;
}

/* CONTACT US */
.contact-form-section {
  background-color: #f8fafc;
}

.contact-info-panel {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.contact-panel-heading {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.contact-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: #fdfbf7;
  border: 1px solid rgba(180, 140, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 2px;
}

.contact-link-main {
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link-main:hover {
  color: var(--gold);
}

.contact-link-wa {
  color: #059669;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link-wa:hover {
  color: #047857;
  text-decoration: underline;
}

.contact-address-text {
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-card-form {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(18, 24, 36, 0.04);
}

.luxury-light-input {
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
  font-size: 0.88rem !important;
  padding: 12px 16px !important;
  border-radius: 16px !important;
  transition: all 0.25s ease !important;
}

.luxury-light-input:focus {
  background-color: #ffffff !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(180, 140, 72, 0.2) !important;
}


/* ==========================================================================
   12. FOOTER, LEAD FORM & FLOATING BUTTONS
   ========================================================================== */
.site-footer {
  background-color: #0b0f19;
  color: #94a3b8;
  position: relative;
}

.footer-lead-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(180, 140, 72, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.footer-lead-pill {
  background: rgba(180, 140, 72, 0.15);
  border: 1px solid rgba(180, 140, 72, 0.35);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-form-wrapper {
  background: rgba(18, 24, 36, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.luxury-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  padding: 12px 16px !important;
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
}

.luxury-input::placeholder {
  color: #64748b !important;
}

.luxury-input:focus {
  background-color: rgba(255, 255, 255, 0.09) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(180, 140, 72, 0.25) !important;
}

.form-select.luxury-input option {
  background-color: #121824;
  color: #ffffff;
}

.btn-footer-submit {
  background: var(--gold);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 24px rgba(180, 140, 72, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-footer-submit:hover {
  background: var(--gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(180, 140, 72, 0.45);
}

.footer-col-title {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-links-list a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-compliance-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  z-index: 1050;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.floating-backtop-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #1e293b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-backtop-btn:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}


/* ==========================================================================
   13. ACTIVE NAVIGATION STATES & MULTI-LANGUAGE / RTL
   ========================================================================== */
.desktop-menu-links a.nav-link-active {
  color: var(--gold) !important;
  font-weight: 700 !important;
  position: relative;
}

.desktop-menu-links a.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--gold) !important;
  border-radius: 4px;
}

.drawer-nav-row.nav-link-active {
  color: var(--gold) !important;
  background-color: #fdfbf7 !important;
  padding-left: 12px !important;
  border-left: 3.5px solid var(--gold) !important;
  border-radius: 8px;
}

.drawer-nav-row.nav-link-active span {
  color: var(--gold) !important;
}

.drawer-nav-row.nav-link-active .arrow {
  color: var(--gold) !important;
  font-weight: 800;
  transform: translateX(4px);
}

body.home-page .desktop-menu-links a[href="index.html"],
body.home-page .drawer-nav-row[href="index.html"],
body.about-page .desktop-menu-links a[href="about.html"],
body.about-page .drawer-nav-row[href="about.html"],
body.services-page .desktop-menu-links a[href="services.html"],
body.services-page .drawer-nav-row[href="services.html"],
body.gallery-page .desktop-menu-links a[href="gallery.html"],
body.gallery-page .drawer-nav-row[href="gallery.html"],
body.process-page .desktop-menu-links a[href="process.html"],
body.process-page .drawer-nav-row[href="process.html"],
body.why-us-page .desktop-menu-links a[href="why-us.html"],
body.why-us-page .drawer-nav-row[href="why-us.html"],
body.faqs-page .desktop-menu-links a[href="faqs.html"],
body.faqs-page .drawer-nav-row[href="faqs.html"],
body.contact-page .desktop-menu-links a[href="contact.html"],
body.contact-page .drawer-nav-row[href="contact.html"] {
  color: var(--gold) !important;
  font-weight: 700 !important;
  position: relative;
}

.desktop-menu-links a[href="index.html"]::after,
.desktop-menu-links a[href="about.html"]::after,
.desktop-menu-links a[href="services.html"]::after,
.desktop-menu-links a[href="gallery.html"]::after,
.desktop-menu-links a[href="process.html"]::after,
.desktop-menu-links a[href="why-us.html"]::after,
.desktop-menu-links a[href="faqs.html"]::after,
.desktop-menu-links a[href="contact.html"]::after {
  display: none;
}

body.home-page .desktop-menu-links a[href="index.html"]::after,
body.about-page .desktop-menu-links a[href="about.html"]::after,
body.services-page .desktop-menu-links a[href="services.html"]::after,
body.gallery-page .desktop-menu-links a[href="gallery.html"]::after,
body.process-page .desktop-menu-links a[href="process.html"]::after,
body.why-us-page .desktop-menu-links a[href="why-us.html"]::after,
body.faqs-page .desktop-menu-links a[href="faqs.html"]::after,
body.contact-page .desktop-menu-links a[href="contact.html"]::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--gold) !important;
  border-radius: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #94a3b8;
  cursor: pointer;
  padding: 0 3px;
  line-height: 1;
  transition: color 0.2s ease;
}

.lang-btn:hover {
  color: var(--gold);
}

.lang-btn.active {
  color: var(--gold) !important;
}

html[dir="rtl"] {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: right;
}

html[dir="rtl"] .drawer-nav-item,
html[dir="rtl"] .drawer-nav-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .drawer-nav-row .arrow {
  transform: rotate(180deg);
}

html[dir="rtl"] .desktop-menu-links {
  direction: rtl;
}

.luxury-input-modal {
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
  font-size: 0.88rem !important;
  padding: 12px 16px !important;
  border-radius: 16px !important;
}

.luxury-input-modal:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(180, 140, 72, 0.2) !important;
}

.modal {
  z-index: 1060 !important;
}
.modal-backdrop {
  z-index: 1055 !important;
}


/* ==========================================================================
   14. COMPREHENSIVE RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1199px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-headline {
    font-size: 2.1rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-media-wrapper {
    margin-top: 25px;
  }
  .hero-floating-badge {
    left: 10px;
    bottom: -10px;
  }
  .hero-main-title {
    font-size: 2.3rem;
  }
  .hero-main-subtext {
    font-size: 0.95rem;
  }
  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 15, 25, 0.88) 0%,
      rgba(11, 15, 25, 0.75) 100%
    );
  }
  .reviews-scroll-container {
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-scroll-container::-webkit-scrollbar {
    display: none;
  }
  .reviews-grid {
    display: flex;
    gap: 16px;
    width: max-content;
  }
  .review-card {
    width: 310px;
    padding: 24px 20px;
    flex-shrink: 0;
  }
  .reviews-main-heading {
    font-size: 1.6rem;
  }
}

/* MOBILE HERO (DECLUTTER & PUSH CONTENT DOWN) */
@media (max-width: 767.98px) {
  .cinematic-hero-section {
    min-height: 82vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-top: 15px !important;
    padding-bottom: 24px !important;
  }

  .cinematic-hero-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .cinematic-hero-section .hero-main-title {
    font-size: 1.45rem !important;
    line-height: 1.22 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
  }

  .cinematic-hero-section .hero-main-subtext {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
    margin-top: 4px !important;
    margin-bottom: 14px !important;
    max-width: 92% !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
  }

  .cinematic-hero-section .hero-keyword-highlight {
    padding: 1px 6px !important;
    font-size: 0.74rem !important;
    border-radius: 4px !important;
  }

  .cinematic-hero-section .btn-hero-glass-gold,
  .cinematic-hero-section .btn-hero-primary,
  .cinematic-hero-section .hero-cta-grid .btn {
    padding: 10px 22px !important;
    font-size: 0.82rem !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .cinematic-hero-section .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 15, 25, 0.2) 0%,
      rgba(11, 15, 25, 0.45) 55%,
      rgba(11, 15, 25, 0.92) 100%
    ) !important;
  }
}

@media (max-width: 767.98px) {
  .service-luxury-card {
    border-radius: 18px !important;
  }
  .service-card-media {
    aspect-ratio: 16 / 11 !important;
  }
  .service-scope-tag {
    top: 6px !important;
    right: 6px !important;
    font-size: 0.58rem !important;
    padding: 2px 7px !important;
    border-radius: 12px !important;
  }
  .service-card-content {
    padding: 10px 10px 12px 10px !important;
  }
  .service-title {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }
  .service-desc {
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding-top: 8px !important;
  }
  .service-action-link {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    white-space: nowrap;
    color: var(--gold) !important;
  }
  .service-item-num {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 767px) {
  .promise-scroll-container {
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .promise-scroll-container::-webkit-scrollbar {
    display: none;
  }
  .promise-grid {
    display: flex;
    gap: 16px;
    width: max-content;
  }
  .promise-card {
    width: 270px;
    flex-shrink: 0;
    padding: 24px 20px;
  }
  .promise-heading {
    font-size: 1.6rem;
  }
  .services-main-heading {
    font-size: 1.7rem;
  }
  .filter-scroll-container {
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-scroll-container::-webkit-scrollbar {
    display: none;
  }
  .filter-pills-wrap {
    flex-wrap: nowrap;
    width: max-content;
  }
  .service-media-card {
    border-radius: 22px;
    aspect-ratio: 1 / 1.1;
  }
  .service-card-overlay {
    padding: 14px 12px;
  }
  .service-card-title {
    font-size: 0.82rem;
  }
  .service-arrow-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .services-main-title {
    font-size: 1.85rem;
  }
  .service-card-content {
    padding: 18px 16px;
  }
  .ugc-video-card {
    flex: 0 0 260px;
  }
  .ugc-main-heading {
    font-size: 1.6rem;
  }
  .ugc-media-inner {
    border-radius: 24px;
  }
  .process-main-heading {
    font-size: 1.7rem;
  }
  .process-card {
    padding: 22px 18px;
  }
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 40px;
  }
  .partner-item {
    padding: 10px 20px;
    min-width: 150px;
  }
  .partner-brand-text {
    font-size: 0.8rem;
  }
  .marquee-track {
    gap: 16px;
    animation-duration: 20s;
  }
  .about-hero-title {
    font-size: 1.8rem;
  }
  .about-section-heading {
    font-size: 1.6rem;
  }
  .about-image-frame {
    aspect-ratio: 1 / 1;
  }
  .about-experience-badge {
    bottom: 12px;
    left: 12px;
    padding: 12px 16px;
  }
  .exp-years {
    font-size: 1.4rem;
  }
  .services-hero-title {
    font-size: 1.8rem;
  }
  .service-deliverable-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-body {
    padding: 20px 16px;
  }
  .gallery-hero-title {
    font-size: 1.8rem;
  }
  .gallery-photo-card {
    border-radius: 22px;
    aspect-ratio: 1 / 1;
  }
  .gallery-card-overlay {
    padding: 16px 14px;
  }
  .gallery-card-title {
    font-size: 0.88rem;
  }
  .process-hero-title {
    font-size: 1.8rem;
  }
  .process-step-title {
    font-size: 1.55rem;
  }
  .process-visual-box {
    aspect-ratio: 1 / 1;
  }
  .phase-num {
    font-size: 1.3rem;
  }
  .process-phase-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 14px;
  }
  .why-hero-title {
    font-size: 1.8rem;
  }
  .why-section-heading {
    font-size: 1.6rem;
  }
  .comparison-card-wrapper {
    padding: 16px 12px;
  }
  .comparison-custom-table thead th,
  .comparison-custom-table tbody td {
    padding: 14px 10px;
    font-size: 0.8rem;
  }
  .faqs-hero-title {
    font-size: 1.8rem;
  }
  .faq-group-heading {
    font-size: 1.15rem;
  }
  .luxury-accordion .accordion-button {
    font-size: 0.92rem;
    padding: 16px 18px;
  }
  .luxury-accordion .accordion-body {
    padding: 0 18px 18px 18px;
    font-size: 0.85rem;
  }
  .faq-support-box {
    border-radius: 22px;
  }
  .contact-hero-title {
    font-size: 1.8rem;
  }
  .contact-info-panel,
  .contact-card-form {
    border-radius: 22px;
    padding: 20px 16px;
  }
}

@media (max-width: 575.98px) {
  .hero-btn-wrap .btn {
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 0.88rem !important;
  }
  .cinematic-hero-section {
    padding-top: 20px;
    padding-bottom: 30px;
    min-height: auto;
  }
  .hero-main-title {
    font-size: 1.85rem;
  }
  .hero-stat-number {
    font-size: 1.5rem;
  }
}


/* ==========================================================================
   15. HIGH-CONVERTING LUXURY MODAL STYLING
   ========================================================================== */
.luxury-modal-card {
  background: #ffffff !important;
  border-radius: 28px !important;
  box-shadow: 0 25px 60px rgba(18, 24, 36, 0.22) !important;
}

.modal-ambient-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(180, 140, 72, 0.08) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.promo-emerald-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #059669;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 30px;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: emeraldPulse 2s infinite;
}

@keyframes emeraldPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.text-success-emerald {
  color: #059669 !important;
}

.shadow-gold-glow {
  box-shadow: 0 8px 24px rgba(180, 140, 72, 0.38) !important;
}

.trust-badge-item {
  font-size: 0.73rem;
  font-weight: 600;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust-badge-divider {
  color: #cbd5e1;
  font-size: 0.7rem;
}