/* Midnight Luxe Design System - Compact & Direct */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Playfair+Display:ital,wght@1,700;1,900&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --primary: #0D0D12;
  --accent: #C9A84C;
  --bg: #14141B;
  --text-dark: #2A2A35;
  --text-light: #FAF8F5;
  --glass: rgba(26, 26, 35, 0.8);
  --noise-opacity: 0.04;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--primary);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.5;
}

/* Global Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  opacity: var(--noise-opacity);
}

/* Typography Utilities */
.heading-sans {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.drama-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
}

.data-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* Floating Navbar - Compact */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.nav-logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: scale(1.03);
  background: #e0bc55;
}

.hero-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
  max-width: 100%;
}

.hero-cta:hover {
  transform: scale(1.03);
  background: #e0bc55;
}

/* Hero Section - Compact */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem 5%;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
  filter: brightness(0.60);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--primary) 20%, transparent 100%);
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-gradient {
    background: linear-gradient(to top, var(--primary) 10%, transparent 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-line-1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-line-2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Services Section - Horizontal Scroll */
.services-section {
  padding: 5rem 5% 3rem 5%;
  background-color: var(--bg);
}

.features-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.features-scroll::-webkit-scrollbar {
  height: 6px;
}

.features-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.features-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.feature-card {
  background: var(--primary);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}

.card-icon {
  color: var(--accent);
  margin-bottom: 1rem;
  width: 32px;
  height: 32px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-desc {
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: auto;
}

.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: '•';
  color: var(--accent);
}

/* Brands Marquee Section */
.brands-marquee-section {
  background-color: var(--bg);
  padding: 4rem 0;
  overflow: hidden;
  text-align: center;
}

.brands-marquee-header {
  margin-bottom: 3rem;
  padding: 0 5%;
}

.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  animation: marquee 15s linear infinite;
  /* Auto rotate at fast speed */
  width: max-content;
}

.marquee-track img {
  height: 60px;
  width: auto;
  margin: 0 3rem;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
  transition: var(--transition);
}

.marquee-track img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Philosophy / Statement */
.philosophy {
  padding: 5rem 5%;
  background: var(--primary);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phil-2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
}

.phil-2 span {
  color: var(--accent);
}

/* Protocol / Process - Compact List */
.protocol {
  padding: 5rem 5%;
  background: var(--bg);
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  position: relative;
}

.step-num {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  opacity: 0.7;
  font-size: 0.95rem;
}

/* Booking Section */
.booking {
  padding: 5rem 5%;
  background: var(--primary);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--glass);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.input-field {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
  background: var(--accent);
  color: var(--primary);
  padding: 1.2rem;
  border-radius: 8px;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: #e0bc55;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #050508;
  padding: 4rem 5% 2rem 5%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 0.5rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .hero {
    align-items: flex-start;
    padding-top: 7rem;
    text-align: left;
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .phil-2 {
    font-size: 1.5rem;
  }

  .feature-card {
    flex: 0 0 calc(100% - 2rem);
  }
}

/* Animations for success message */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}