/* ==========================================================================
   HOP IN GROUP - Ultimate Luxury Dark Theme Styling (Glassmorphism & Gold Shimmer)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800&family=Outfit:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --font-serif: 'Cinzel', 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Color System - 24K Luxury Dark Palette */
  --bg-dark: #06080d;
  --bg-card: #0e121a;
  --gold-light: #f5dfac;
  --gold-primary: #d4af37;
  --gold-mid: #c59b47;
  --gold-dark: #9a7228;
  --gold-border: rgba(212, 175, 55, 0.35);
  
  --text-main: #ffffff;
  --text-muted: #b4b8c5;
  --text-subtle: #8a8e9e;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Custom Gold Side Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #06080d;
  border-left: 1px solid rgba(212, 175, 55, 0.15);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, #c59b47 50%, #9a7228 100%);
  border-radius: 10px;
  border: 2px solid #06080d;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f5dfac 0%, #d4af37 50%, #c59b47 100%);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #06080d;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* Metallic Shimmer Gold Text Effect */
.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #fff1ce 20%, #e2ba6e 50%, #c59b47 75%, #9a7228 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.9));
  animation: goldShimmer 8s linear infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glassmorphic Top Header Navbar */
.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(6, 8, 13, 0.92) 0%, rgba(6, 8, 13, 0.75) 60%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.luxury-header.scrolled {
  background: rgba(6, 8, 13, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.65rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: clamp(38px, 4.5vh, 48px);
  width: auto;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.1vh, 0.82rem);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #d0d0dc;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(245, 223, 172, 0.5);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f5dfac, #d4af37, #9a7228);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #c59b47 50%, #9a7228 100%);
  color: #06080d;
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.1vh, 0.78rem);
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
}

.btn-enquire:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(245, 223, 172, 0.6);
  background: linear-gradient(135deg, #f5dfac 0%, #d4af37 100%);
}

.hamburger-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 6px;
  background: rgba(14, 18, 26, 0.6);
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 1px;
}

/* Floating Concierge Dock (Right Edge) */
.concierge-dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  background: rgba(10, 14, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-right: none;
  border-radius: 12px 0 0 12px;
  display: flex;
  flex-direction: column;
  width: clamp(78px, 5.5vw, 90px);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.4vh, 1.05rem) 0.35rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  color: var(--gold-mid);
}

.dock-item:last-child {
  border-bottom: none;
}

.dock-item:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
}

.dock-icon {
  width: clamp(20px, 2.6vh, 24px);
  height: clamp(20px, 2.6vh, 24px);
  margin-bottom: 0.3rem;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease;
}

.dock-item:hover .dock-icon {
  transform: scale(1.15);
}

.dock-label {
  font-family: var(--font-sans);
  font-size: clamp(0.5rem, 0.88vh, 0.56rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e0e0ea;
  line-height: 1.25;
}

.dock-item:hover .dock-label {
  color: #ffffff;
}

/* Main Hero Wrapper - Single Viewport Cinematic Design */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url('image/hero_bg.jpg') center center / cover no-repeat;
  padding-top: 90px;
  padding-bottom: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Vignette & Ambient Golden Ray Lighting */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    linear-gradient(to right, rgba(6, 8, 13, 0.95) 0%, rgba(6, 8, 13, 0.72) 45%, rgba(6, 8, 13, 0.25) 100%),
    linear-gradient(to bottom, rgba(6, 8, 13, 0.4) 0%, transparent 35%, rgba(6, 8, 13, 0.98) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hero Main Section Text */
.hero-main-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3.5vh, 4rem) 2.5rem 1rem 2.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text-block {
  max-width: 1000px;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.4vh, 0.9rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vh, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.98));
}

.hero-title span {
  display: block;
}

/* Decorative Divider */
.title-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  width: 280px;
}

.ornament-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 223, 172, 0.95), transparent);
}

.ornament-diamond {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border: 1px solid var(--gold-light);
  background: var(--bg-dark);
  position: relative;
}

.ornament-diamond::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #e2ba6e;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vh, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 820px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.98);
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1.8px solid var(--gold-primary);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.6vh, 0.98rem);
  font-weight: 800;
  letter-spacing: 3px;
  padding: 1rem 2.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(197, 155, 71, 0.5) 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.35);
  transition: var(--transition-smooth);
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, rgba(245, 223, 172, 0.6) 0%, rgba(212, 175, 55, 0.75) 100%);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 40px rgba(245, 223, 172, 0.7);
  transform: translateY(-3px);
}

.btn-hero-cta svg {
  transition: transform 0.3s ease;
}

.btn-hero-cta:hover svg {
  transform: translateX(5px);
}

/* Service Cards Section (3 Main Pillars Grid) */
.hero-cards-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 1rem auto 0 auto;
  padding: 0 2.5rem;
  flex: 0 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.5vw, 1.8rem);
  width: 100%;
}

.service-card {
  position: relative;
  height: clamp(280px, 36vh, 380px);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 2.2vh, 1.85rem);
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 13, 0.95) 0%, rgba(6, 8, 13, 0.45) 55%, transparent 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: clamp(22px, 2.8vh, 28px);
  height: clamp(22px, 2.8vh, 28px);
  margin-bottom: 0.4rem;
  color: var(--gold-mid);
  transition: transform 0.3s ease, color 0.3s ease;
}

.card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vh, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.card-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1vh, 0.68rem);
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: clamp(0.35rem, 0.6vh, 0.6rem);
}

.card-action {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 1.1vh, 0.75rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.25);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card:hover .card-icon {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.service-card:hover .card-action {
  color: var(--gold-light);
  transform: translateX(5px);
}

/* Database Tag Badges Bar */
.tags-bar-section {
  position: relative;
  z-index: 2;
  background: rgba(6, 8, 13, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.85rem 2.5rem;
  width: 100%;
}

.tags-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #e0e0ea;
  transition: var(--transition-smooth);
}

.tag-badge:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-light);
  color: #fff;
}

/* Modal Popup Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0e121a;
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.2);
  position: relative;
  transform: translateY(25px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Footer Section Styling */
.luxury-footer {
  background: #040508;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4rem 0 2rem;
  color: #a0a4b5;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 1.2rem !important;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #c0c4d4;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #c0c4d4;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.contact-info-item svg {
  color: var(--gold-mid);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: #707485;
}

/* Tablet & Mobile Responsiveness (<992px) */
@media (max-width: 992px) {
  .hero-wrapper {
    min-height: 100vh;
    height: auto;
    background: url('image/hero_bg.jpg') center center / cover no-repeat;
    padding-top: 90px;
  }
  .main-nav {
    display: none;
  }
  .concierge-dock {
    display: none;
  }
  .hero-title {
    font-size: 3rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card {
    height: 240px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .header-inner {
    padding: 0.6rem 1.25rem;
  }
  .hero-main-content {
    padding: 1rem 1.25rem;
  }
  .hero-cards-container {
    padding: 0 1.25rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .btn-enquire {
    font-size: 0.65rem;
    padding: 0.5rem 0.9rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
