@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

:root {
  --bg-primary: #fcfcfb;
  --bg-secondary: #f6f6f3;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfcf9;
  --accent-gold: #b3882f;
  --accent-amber: #cca03c;
  --accent-gold-glow: rgba(179, 136, 47, 0.12);
  --text-primary: #18181b;
  --text-secondary: #4a4a50;
  --text-muted: #828288;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(179, 136, 47, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 8px 30px rgba(179, 136, 47, 0.15);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.lenis, html.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

/* ==========================================================================
   2. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(to right, var(--accent-gold), var(--accent-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   3. Navigation (.navbar)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  z-index: 1002;
}

.logo-accent {
  color: var(--accent-gold);
}

.nav-cta {
  background-color: var(--accent-gold);
  color: var(--bg-primary) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-cta:hover {
  background-color: var(--accent-amber);
}

.nav-link.active {
  color: var(--accent-gold);
}

.nav-link.active::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li a {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.nav-links li a:hover {
  color: var(--accent-gold);
}

.nav-links li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.menu-toggle.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Styles handled in Media Queries */

/* ==========================================================================
   4. Night Owl Banner (.night-owl-banner)
   ========================================================================== */
.night-owl-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f7ebd3, #faedd8, #f7ebd3);
  z-index: 1001;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: pulse-glow 3s infinite alternate;
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.night-owl-banner p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.banner-cta {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  animation: pulse-button 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(212, 168, 83, 0.1);
  }
  100% {
    box-shadow: 0 0 30px rgba(212, 168, 83, 0.4);
  }
}

@keyframes pulse-button {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(212, 168, 83, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 168, 83, 0); }
}

/* Push navbar down when banner is present (controlled by JS typically) */
body.banner-active .navbar {
  top: 48px; /* Approximate height of banner */
}

/* ==========================================================================
   5. Hero Section (.hero)
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(10px);
  transform: scale(1.05); /* Hide edges from blur */
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(252, 252, 251, 0.45) 0%, rgba(252, 252, 251, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title .highlight {
  color: var(--accent-gold);
}

.hero-subtitle {
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  font-size: 1.2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--accent-amber);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.social-hook {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.gold-link {
  color: var(--accent-gold);
  font-weight: 600;
}

.gold-link:hover {
  color: var(--accent-amber);
  text-decoration: underline;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.icon-inline {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
}

/* Floating particles background */
.particles, .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-up 10s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-duration: 12s; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-duration: 18s; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-duration: 14s; animation-delay: 1s; }
.particle:nth-child(5) { left: 90%; animation-duration: 16s; animation-delay: 3s; }

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* ==========================================================================
   6. Services Section (.services)
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  background-color: var(--bg-card-hover);
}

.service-card:hover::after {
  width: 100%;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 2rem;
  flex-grow: 1;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold-glow);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li i, .service-features li svg {
  color: var(--accent-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   7. Instagram Feed Section (.instagram-feed)
   ========================================================================== */
.instagram-feed {
  background-color: var(--bg-secondary);
}

.feed-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none; /* Firefox */
}

.feed-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.feed-tab {
  background-color: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.feed-tab:hover {
  background-color: var(--bg-card-hover);
  color: var(--text-primary);
}

.feed-tab.active {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feed-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-placeholder-content,
.feed-placeholder {
  text-align: center;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.feed-placeholder i, .feed-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
  opacity: 0.5;
}

.feed-placeholder span {
  font-weight: 600;
  color: var(--text-secondary);
}

.feed-placeholder small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.feed-cta {
  text-align: center;
  margin-top: 3rem;
}

.feed-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 15, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.feed-item:hover .feed-overlay {
  opacity: 1;
}

.feed-overlay i, .feed-overlay svg {
  color: var(--accent-gold);
  width: 36px;
  height: 36px;
  transition: transform var(--transition-fast);
}

.feed-overlay:hover i, .feed-overlay:hover svg {
  transform: scale(1.15);
}

.feed-overlay span {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   8. Before/After Section (.before-after)
   ========================================================================== */
.before-after {
  background-color: var(--bg-primary);
}

.comparison-container {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  cursor: col-resize;
  user-select: none;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.comparison-image.after {
  clip-path: inset(0 50% 0 0); /* Initial state, changed by JS */
  z-index: 2;
}

.comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background-color: var(--accent-gold);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none; /* Let the container handle mouse events */
}

.comparison-slider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--text-primary);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrows inside the handle */
.comparison-slider::after {
  content: '< >';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: monospace;
  font-weight: bold;
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 2px;
}

.comparison-label {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 1rem;
  background-color: var(--glass-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  z-index: 4;
}

.label-before {
  left: 1rem;
}

.label-after {
  right: 1rem;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* ==========================================================================
   9. Testimonials Section (.testimonials)
   ========================================================================== */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.star-filled {
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  flex-grow: 1;
  color: var(--text-secondary);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author strong {
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-gold);
  display: inline;
}

.stat-suffix {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--accent-gold);
}

.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.section-subheader {
  text-align: center;
  margin: 3rem 0 2rem;
}

.section-subheader h3 {
  margin-bottom: 0.5rem;
}

.section-subheader p {
  color: var(--text-muted);
  font-size: 1rem;
}

.staff-spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.spotlight-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold-glow);
  border-radius: 50%;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.spotlight-icon i, .spotlight-icon svg {
  width: 32px;
  height: 32px;
}

.spotlight-content h3 {
  color: var(--accent-gold);
}

.spotlight-content p {
  color: var(--text-secondary);
  margin: 0;
}

.staff-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
}

.reels-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-card);
}

.reels-row::-webkit-scrollbar {
  height: 8px;
}
.reels-row::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 4px;
}
.reels-row::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

.reel-item {
  flex-shrink: 0;
}

.reel-placeholder {
  position: relative;
  min-width: 250px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  display: block;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.reel-placeholder:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.4) 50%, rgba(10, 10, 15, 0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
}

.reel-overlay i, .reel-overlay svg {
  width: 48px;
  height: 48px;
  color: #ffffff;
  opacity: 0.9;
  transition: transform var(--transition-fast);
  margin-bottom: auto;
  margin-top: calc(50% - 24px);
}

.reel-placeholder:hover .reel-overlay i, 
.reel-placeholder:hover .reel-overlay svg {
  transform: scale(1.15);
  color: var(--accent-gold);
}

.reel-overlay span {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.reel-placeholder small {
  font-size: 0.85rem;
  color: #d1d1d6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================================================
   10. Location Section (.location)
   ========================================================================== */
.location {
  background-color: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.location-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.location-info h3 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.location-address {
  display: block;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.location-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold-glow);
  border-radius: 50%;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.location-icon i, .location-icon svg {
  width: 28px;
  height: 28px;
}

.landmark-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.detail-row a {
  color: var(--accent-gold);
}

.detail-row a:hover {
  text-decoration: underline;
}

.location-cta {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.location-info i, .location-info svg {
  color: var(--accent-gold);
  margin-top: 5px;
}

.landmark-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.landmark-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.map-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   11. Footer (.footer)
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
}

.social-link i, .social-link svg {
  width: 18px;
  height: 18px;
}

.footer-heading {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-booster-btn {
  cursor: pointer;
  border: none;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a, .footer-col p {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.review-booster-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1rem;
  transition: all var(--transition-fast);
  animation: subtle-pulse 3s infinite;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.2);
}

.review-booster-btn:hover {
  transform: scale(1.05);
  background-color: var(--accent-amber);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
  color: var(--bg-primary);
}

@keyframes subtle-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   12. Utility Classes
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   13. Scroll Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   15. Scrollbar Styling
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-amber);
}

/* ==========================================================================
   16. Loading Animation
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid var(--glass-border);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   14. Responsive Queries
   ========================================================================== */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-spotlight {
    flex-direction: row;
    text-align: left;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* Mobile Navigation Toggle */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-smooth);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .night-owl-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary, .btn-secondary, .btn-outline {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
