.nav-link {
  position: relative;
  color: white;
}
.nav-link.scrolled-style {
  color: #0f172a;
}
.nav-link.active-link {
  color: #d4a017;
}
.nav-link.scrolled-style.active-link {
  color: #047857;
}

.filter-btn {
  font-family: "Manrope", "Noto Sans Devanagari", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #e2e8f1;
  color: #334155;
  background: white;
  transition: all 0.2s ease;
}
.filter-btn:hover {
  border-color: #047857;
  color: #047857;
}
.filter-btn.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: white;
}

.service-card {
  background: white;
  border: 1px solid #e2e8f1;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 2px 10px -2px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px -6px rgba(15, 23, 42, 0.15);
}
.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: #04785714;
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card {
  background: white;
  border: 1px solid #e2e8f1;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card {
  background: white;
  border: 1px solid #e2e8f1;
  border-radius: 1.25rem;
  padding: 1.5rem;
  min-width: 85%;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .testimonial-card {
    min-width: 0;
  }
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: white;
  border: 1px solid #e2e8f1;
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s ease;
}
.contact-row:hover {
  border-color: #047857;
}
.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #0f172a0d;
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-input {
  font-family: "Manrope", "Noto Sans Devanagari", sans-serif;
  width: 100%;
  border: 1px solid #e2e8f1;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  color: #0f172a;
  transition: border-color 0.2s ease;
}
.form-input:focus {
  border-color: #047857;
  background: white;
}
.form-input.input-error {
  border-color: #dc2626;
  background: #fef2f2;
}
.form-error {
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
  min-height: 1rem;
}

.dot-btn {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #cbd5e1;
}
.dot-btn.is-active {
  background: #047857;
  width: 1.4rem;
}

/* Smooth scrolling, but disabled entirely under reduced-motion (handled below too) */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Noto Sans Devanagari", sans-serif;
}
.np {
  font-family: "Noto Sans Devanagari", "Manrope", sans-serif;
}

/* Reveal-on-scroll base state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > *:nth-child(1) {
  transition-delay: 0.02s;
}
.reveal-stagger.in-view > *:nth-child(2) {
  transition-delay: 0.09s;
}
.reveal-stagger.in-view > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger.in-view > *:nth-child(4) {
  transition-delay: 0.23s;
}
.reveal-stagger.in-view > *:nth-child(5) {
  transition-delay: 0.3s;
}
.reveal-stagger.in-view > *:nth-child(6) {
  transition-delay: 0.37s;
}
.reveal-stagger.in-view > *:nth-child(7) {
  transition-delay: 0.44s;
}
.reveal-stagger.in-view > *:nth-child(8) {
  transition-delay: 0.51s;
}

/* Card image zoom */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.5s ease;
}
.img-zoom:hover img {
  transform: scale(1.06);
}

/* Navbar transition */
#navbar {
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

/* Modal animation */
.modal-panel {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Mobile menu */
#mobile-menu {
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}

/* Terrain motif (signature background element) */
.terrain-line {
  stroke: currentColor;
  fill: none;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d4a017;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Toast */
#toast-container {
  position: fixed;
  z-index: 70;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  animation: toast-in 0.3s ease forwards;
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Prevent horizontal scroll */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}



  /* Custom Animations for Process Section */
  .process-line-animated {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(212, 160, 23, 0.8) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: flowLine 3s infinite linear;
  }
  
  @keyframes flowLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  .step-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .step-card:hover {
    transform: translateY(-8px);
  }

  .step-number {
    transition: all 0.4s ease;
  }

  .step-card:hover .step-number {
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.6);
    background-color: #FFFFFF;
    color: #0F172A;
    transform: scale(1.1);
  }



  /* Custom Animations for Why Choose Us Section */
  .why-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9; /* slate-100 */
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Animated Top Border */
  .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #047857; /* emerald */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
  }
  
  .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
    border-color: transparent;
  }
  
  .why-card:hover::before {
    transform: scaleX(1);
  }
  
  /* Icon Box Animation */
  .icon-wrapper {
    transition: all 0.4s ease;
  }
  
  .why-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: #047857;
    box-shadow: 0 10px 15px -3px rgba(4, 120, 87, 0.3);

    
  }
.why-card:hover .icon-wrapper .icon{
  color: white !important;
}


  /* Hide Scrollbar */
  .hide-scroll::-webkit-scrollbar { display: none; }
  .hide-scroll { -ms-overflow-style: none; scrollbar-width: none; }

  /* Premium Card Styling */
  .premium-testi-card {
    /* Responsive Widths */
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem 2rem 2rem;
    margin-top: 2rem; /* Avatar pop-out space */
    position: relative;
    border: 1px solid rgba(4, 120, 87, 0.1);
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
    transition: all 0.4s ease;
  }
  
  @media (min-width: 768px) { .premium-testi-card { flex: 0 0 calc(50% - 12px); } }
  @media (min-width: 1024px) { .premium-testi-card { flex: 0 0 calc(33.3333% - 16px); } }

  .premium-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
    border-color: rgba(212, 160, 23, 0.4);
  }

  /* Avatar Pop-out */
  .testi-avatar {
    position: absolute;
    top: -2rem;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    object-fit: cover;
  }

  /* Large Quote Mark */
  .bg-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #F8FAFC; /* Very light slate */
    width: 5rem;
    height: 5rem;
    z-index: 0;
  }

  /* Dot Active State */
  .dot-active {
    background-color: #D4A017 !important;
    width: 2rem !important;
  }

/* ======================================================================
   PREMIUM 2026 DESIGN LAYER
   Header, hero, video showcase, cards and responsive refinements
====================================================================== */

:root {
  --premium-navy: #07111f;
  --premium-navy-soft: #0f1d2e;
  --premium-emerald: #087b5a;
  --premium-emerald-light: #16a37a;
  --premium-gold: #d8ab45;
  --premium-gold-light: #f4d987;
  --premium-cream: #fbfaf6;
  --premium-border: rgba(148, 163, 184, 0.2);
}

::selection {
  color: #07111f;
  background: #f4d987;
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(8, 123, 90, 0.035), transparent 25rem),
    #f8fafc;
}

/* Premium floating navigation */
#navbar {
  padding-top: 0.75rem;
  background: transparent;
  transition: padding 0.35s ease;
}

#navbar.is-scrolled {
  padding-top: 0.35rem;
}

.premium-nav-inner {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(7, 17, 31, 0.74), rgba(15, 29, 46, 0.48));
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.13);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition:
    height 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    border-radius 0.35s ease,
    box-shadow 0.35s ease;
}

#navbar.is-scrolled .premium-nav-inner {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.11);
}

.brand-logo {
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  color: #07111f;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #f5dc91 0%, #d2a33d 56%, #b98121 100%);
  box-shadow:
    0 10px 26px rgba(216, 171, 69, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.brand-logo:hover .brand-mark {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 14px 32px rgba(216, 171, 69, 0.38);
}

.brand-mark-dot {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  width: 0.38rem;
  height: 0.38rem;
  border: 2px solid #e5bd5c;
  border-radius: 999px;
  background: #087b5a;
}

#navbar.is-scrolled .logo-main {
  color: #07111f !important;
}

#navbar.is-scrolled .logo-sub {
  color: #087b5a !important;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.84);
  border-radius: 0.75rem;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.31rem;
  left: 0.7rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--premium-gold-light), var(--premium-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav-link:hover,
.nav-link.active-link {
  color: #f4d987;
  background: rgba(255, 255, 255, 0.07);
}

.nav-link:hover::after,
.nav-link.active-link::after {
  transform: scaleX(1);
}

#navbar.is-scrolled .nav-link,
.nav-link.scrolled-style {
  color: #334155;
}

#navbar.is-scrolled .nav-link:hover,
#navbar.is-scrolled .nav-link.active-link,
.nav-link.scrolled-style.active-link {
  color: #087b5a;
  background: rgba(8, 123, 90, 0.065);
}

#navbar.is-scrolled .nav-link::after {
  background: linear-gradient(90deg, #16a37a, #087b5a);
}

.nav-social,
.mobile-menu-button {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.07);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-social:hover {
  color: #fff;
  border-color: #1877f2;
  background: #1877f2;
  transform: translateY(-2px);
}

#navbar.is-scrolled .nav-social,
#navbar.is-scrolled .mobile-menu-button {
  color: #0f172a;
  border-color: #e2e8f0;
  background: #f8fafc;
}

.mobile-menu-button:hover {
  color: #07111f !important;
  border-color: var(--premium-gold);
  background: var(--premium-gold-light) !important;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  min-height: 2.72rem;
  align-items: center;
  gap: 0.55rem;
  overflow: hidden;
  padding: 0.35rem 0.9rem 0.35rem 0.38rem;
  color: #07111f;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #f5dc91, #d4a540 60%, #c08e2b);
  box-shadow: 0 10px 26px rgba(216, 171, 69, 0.22);
  font-size: 0.79rem;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(216, 171, 69, 0.34);
}

.nav-cta:hover::before {
  left: 130%;
}

.nav-cta-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: white;
  border-radius: 999px;
  background: #07111f;
  transition: transform 0.3s ease;
}

.nav-cta:hover .nav-cta-icon {
  transform: rotate(90deg);
}

.nav-cta-arrow {
  transition: transform 0.25s ease;
}

.nav-cta:hover .nav-cta-arrow {
  transform: translate(2px, -2px);
}

.premium-mobile-menu {
  margin-top: 0.45rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(20px);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  color: #334155;
  border-radius: 0.8rem;
  font-size: 0.86rem;
  font-weight: 750;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active-link {
  color: #087b5a;
  background: #ecfdf5;
  transform: translateX(2px);
}

.mobile-nav-icon {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  color: #087b5a;
  border-radius: 0.7rem;
  background: rgba(8, 123, 90, 0.09);
}

.mobile-nav-icon-facebook {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.09);
}

/* Premium hero */
.premium-hero {
  isolation: isolate;
}

.premium-hero > .absolute img {
  transform: scale(1.025);
  animation: hero-cinema 18s ease-in-out infinite alternate;
}

@keyframes hero-cinema {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.095) translate3d(-0.8%, -0.4%, 0); }
}

.hero-luxury-overlay {
  background:
    radial-gradient(circle at 72% 28%, rgba(216, 171, 69, 0.14), transparent 27rem),
    linear-gradient(90deg, rgba(4, 11, 21, 0.93) 0%, rgba(4, 13, 24, 0.79) 46%, rgba(4, 13, 24, 0.34) 78%, rgba(4, 13, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 11, 21, 0.82), transparent 56%);
}

.hero-copy {
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.16);
}

.hero-badge {
  color: #f4d987;
  border: 1px solid rgba(244, 217, 135, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-badge-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-gold-text,
.video-gold-text {
  color: transparent;
  background: linear-gradient(135deg, #fff0b6 0%, #e7ba58 48%, #c58a25 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-primary-btn,
.hero-secondary-btn,
.hero-video-link {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hero-primary-btn {
  color: #07111f;
  background: linear-gradient(135deg, #f5dc91, #d4a540);
  box-shadow: 0 14px 32px rgba(216, 171, 69, 0.24);
}

.hero-secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.hero-video-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-play-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #07111f;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-primary-btn:hover,
.hero-secondary-btn:hover,
.hero-video-link:hover {
  transform: translateY(-3px);
}

.hero-primary-btn:hover {
  box-shadow: 0 18px 42px rgba(216, 171, 69, 0.36);
}

.hero-secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
}

.hero-video-link:hover .hero-play-icon {
  transform: scale(1.07);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.hero-trust-row li {
  position: relative;
}

.premium-search-panel {
  border-color: rgba(15, 23, 42, 0.07) !important;
  border-radius: 1.6rem !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 28px 70px -24px rgba(15, 23, 42, 0.3) !important;
  backdrop-filter: blur(18px);
}

.premium-search-panel select {
  min-height: 2.85rem;
  border-color: #e2e8f0;
  background-color: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.premium-search-panel select:focus {
  outline: none;
  border-color: #16a37a;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(22, 163, 122, 0.09);
}

/* Existing card polish */
.property-card {
  border-color: rgba(15, 23, 42, 0.07) !important;
  box-shadow: 0 12px 36px -20px rgba(15, 23, 42, 0.26);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.property-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 123, 90, 0.2) !important;
  box-shadow: 0 26px 60px -24px rgba(15, 23, 42, 0.34);
}

.service-card {
  border-color: rgba(15, 23, 42, 0.07);
  border-radius: 1.4rem;
  box-shadow: 0 12px 36px -24px rgba(15, 23, 42, 0.24);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 123, 90, 0.16);
  box-shadow: 0 24px 54px -25px rgba(15, 23, 42, 0.32);
}

.service-icon {
  border: 1px solid rgba(8, 123, 90, 0.1);
  background: linear-gradient(145deg, rgba(8, 123, 90, 0.12), rgba(8, 123, 90, 0.05));
}

/* Premium video tour */
.video-tour-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 171, 69, 0.12), transparent 27rem),
    radial-gradient(circle at 8% 85%, rgba(8, 123, 90, 0.17), transparent 30rem),
    linear-gradient(135deg, #07111f 0%, #0c1a2b 50%, #081626 100%);
}

.video-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.video-orb-one {
  top: -9rem;
  right: 8%;
  width: 25rem;
  height: 25rem;
  background: rgba(216, 171, 69, 0.09);
}

.video-orb-two {
  bottom: -12rem;
  left: -5rem;
  width: 30rem;
  height: 30rem;
  background: rgba(8, 123, 90, 0.12);
}

.video-contour {
  color: rgba(255, 255, 255, 0.018);
}

.video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.8rem;
  color: #f4d987;
  border: 1px solid rgba(244, 217, 135, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-feature {
  display: flex;
  min-height: 4.55rem;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.video-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 171, 69, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.video-feature > span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  color: #f4d987;
  border: 1px solid rgba(244, 217, 135, 0.12);
  border-radius: 0.8rem;
  background: rgba(216, 171, 69, 0.09);
}

.video-feature strong,
.video-feature small {
  display: block;
}

.video-feature strong {
  color: #fff;
  font-size: 0.79rem;
}

.video-feature small {
  margin-top: 0.18rem;
  color: #94a3b8;
  font-size: 0.69rem;
  line-height: 1.35;
}

.video-contact-btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.2rem;
  color: #07111f;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5dc91, #d4a540);
  box-shadow: 0 14px 32px rgba(216, 171, 69, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(216, 171, 69, 0.28);
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.6rem;
  background: #030a13;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.34),
    0 0 0 7px rgba(255, 255, 255, 0.025);
}

.video-stage video {
  display: block;
  transition: transform 0.8s ease;
}

.video-stage:not(.is-playing):hover video {
  transform: scale(1.025);
}

.video-stage-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.34), transparent 28%, transparent 62%, rgba(2, 8, 23, 0.38)),
    radial-gradient(circle at center, transparent 25%, rgba(2, 8, 23, 0.16));
}

.video-stage-topline {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.video-live-pill,
.video-quality-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.58);
  backdrop-filter: blur(12px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-live-pill > span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.13);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  pointer-events: none;
  font-size: 0.82rem;
  font-weight: 800;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-stage.is-playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
}

.video-play-button {
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  padding-left: 0.25rem;
  color: #07111f;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: linear-gradient(145deg, #fff7dd, #e7bb5e);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.video-play-button:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 17px rgba(255, 255, 255, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.3);
}

.video-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -0.35rem 1.2rem 0;
  padding: 1.15rem 1.25rem 0.9rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  border-radius: 0 0 1.25rem 1.25rem;
  background: rgba(255, 255, 255, 0.045);
}

.video-meta-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  color: #f4d987;
  border-radius: 0.8rem;
  background: rgba(216, 171, 69, 0.1);
}

.video-meta-bar strong,
.video-meta-bar small {
  display: block;
}

.video-meta-bar strong {
  font-size: 0.79rem;
}

.video-meta-bar small {
  margin-top: 0.2rem;
  color: #94a3b8;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.video-browse-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f4d987;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.video-browse-link svg {
  transition: transform 0.25s ease;
}

.video-browse-link:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 767px) {
  #navbar {
    padding-top: 0.45rem;
  }

  .premium-nav-wrap {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .premium-nav-inner {
    border-radius: 1rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.78rem;
  }

  .premium-hero {
    min-height: 47rem;
  }

  .hero-luxury-overlay {
    background:
      radial-gradient(circle at 70% 25%, rgba(216, 171, 69, 0.13), transparent 22rem),
      linear-gradient(0deg, rgba(4, 11, 21, 0.96) 0%, rgba(4, 13, 24, 0.72) 64%, rgba(4, 13, 24, 0.42) 100%);
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    flex: 1 1 13rem;
  }

  .hero-video-link {
    min-height: 2.8rem;
  }

  .premium-search-panel {
    border-radius: 1.25rem !important;
  }

  .video-stage {
    aspect-ratio: 16 / 11;
    border-radius: 1.2rem;
  }

  .video-play-button {
    width: 4rem;
    height: 4rem;
  }

  .video-quality-pill {
    display: none;
  }

  .video-meta-bar {
    align-items: flex-start;
    margin-right: 0.55rem;
    margin-left: 0.55rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .video-browse-link span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero > .absolute img,
  .hero-badge-dot {
    animation: none !important;
  }
}
