/* ============================================
   DHABA LIVE — styles.css
   Dark, cinematic, electric-blue accent theme
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --primary-bg:      #0A0A0A;
  --secondary-bg:    #111111;
  --tertiary-bg:     #1A1A1A;
  --accent:          #00A8FF;
  --accent-glow:     rgba(0, 168, 255, 0.3);
  --accent-hover:    #33BBFF;
  --text-primary:    #FFFFFF;
  --text-secondary:  #A0A0A0;
  --text-tertiary:   #666666;
  --gradient-accent: linear-gradient(135deg, #00A8FF, #0066CC);
  --border-subtle:   rgba(255, 255, 255, 0.08);
  --max-width:       1200px;
  --nav-height:      80px;
  --transition:      0.3s ease;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Page fade-in */
body {
  animation: pageFadeIn 0.5s ease both;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ============================================
   4. LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 110px 0;
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .container {
    padding: 0 1.5rem;
  }
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.nav-logo .logo-main span {
  color: var(--accent);
}

.nav-logo .logo-sub {
  font-size: 0.625rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  margin-right: -12px;
  background: none;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background: var(--primary-bg);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  transform: translateY(20px);
  opacity: 0;
  transition: color var(--transition), transform 0.4s ease, opacity 0.4s ease;
}

.nav-overlay.open a {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open a:nth-child(4) { transition-delay: 0.2s; }

.nav-overlay a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================
   6. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-outline:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-solid {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}

.btn-solid:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 28px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding-left: 0;
  letter-spacing: 1.5px;
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-ghost .arrow {
  transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ============================================
   7. HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

.hero-sub {
  font-size: 1.125rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

/* Sub-hero (shorter pages) */
.hero-sub-page {
  height: 62vh;
  min-height: 380px;
}

.hero-sub-page .hero-content {
  padding-bottom: 4rem;
}


/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.scroll-indicator i {
  color: var(--accent);
  font-size: 0.875rem;
}

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

/* ============================================
   8. STATS BAR
   ============================================ */
.stats-bar {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3.5rem 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}

/* ============================================
   9. INTRO / SPLIT SECTIONS
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.split-image:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-subtle);
  z-index: 1;
  pointer-events: none;
}

.split-text h2 {
  margin-bottom: 1.25rem;
}

.split-text p {
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-section.reverse {
    direction: ltr;
  }
}

/* ============================================
   10. CARDS — SERVICES
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.4s ease;
}

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

.service-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-card:hover .service-card-desc {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   11. MARQUEE
   ============================================ */
.marquee-section {
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--secondary-bg);
}

.marquee-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.marquee-track {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 100%;
}

.marquee-list:nth-child(2) {
  animation-delay: -11s;
}

.marquee-item {
  padding: 0 3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color var(--transition);
  border-right: 1px solid var(--border-subtle);
}

.marquee-item:hover {
  color: var(--accent);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================
   12. ARTISTS SECTION
   ============================================ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.artist-tile {
  background: var(--tertiary-bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--transition), box-shadow var(--transition);
  cursor: default;
}

.artist-tile:hover {
  background: #1e1e1e;
  box-shadow: inset 0 0 0 1px var(--accent-glow), 0 0 20px rgba(0, 168, 255, 0.05);
}

.artist-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  opacity: 0.6;
}

.artist-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: 1fr 1fr;
  }
  .artist-tile {
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================
   13. CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.cta-banner .accent-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  margin: 1.25rem auto;
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 0;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo .logo-main span {
  color: var(--accent);
}

.footer-logo .logo-sub {
  font-size: 0.625rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

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

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: border-color var(--transition), color var(--transition);
}

.city-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.75rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   15. SECTION HEADINGS (reusable)
   ============================================ */
.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 560px;
  font-size: 1.0625rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ============================================
   16. ABOUT PAGE — EDGE CARDS
   ============================================ */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.edge-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.edge-card:hover {
  box-shadow: 0 0 30px rgba(0, 168, 255, 0.08), 0 8px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.edge-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.edge-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: 0.5px;
}

.edge-card p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .edge-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   17. CITIES
   ============================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.city-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}

.city-card.hq {
  border-color: rgba(0, 168, 255, 0.4);
  grid-column: span 2;
}

.city-card:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.07);
}

.city-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.city-card.hq .city-card-name {
  font-size: 1.25rem;
  color: var(--accent);
}

.city-card-sub {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

@media (max-width: 900px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .city-card.hq {
    grid-column: span 1;
  }
}

@media (max-width: 580px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   18. SERVICES PAGE — ALTERNATING SECTIONS
   ============================================ */
.service-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}

.feature-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 0.4375rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  transition: border-color var(--transition), color var(--transition);
}

.feature-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.service-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--border-subtle);
  line-height: 1;
  margin-bottom: -1rem;
  user-select: none;
}

/* ============================================
   19. CONTACT PAGE
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-card:hover {
  box-shadow: 0 0 30px rgba(0, 168, 255, 0.08);
  border-color: rgba(0, 168, 255, 0.25);
  transform: translateY(-4px);
}

.contact-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.hq-section {
  background: var(--secondary-bg);
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}

.hq-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.hq-detail i,
.hq-detail svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.hq-detail p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.social-links-large {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-link-big {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.social-link-big i,
.social-link-big svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.social-link-big:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-2px);
}

.social-link-big:hover i,
.social-link-big:hover svg {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .social-links-large {
    flex-direction: column;
  }
}

/* ============================================
   20. ACCENT DIVIDER
   ============================================ */
.accent-divider {
  width: 50px;
  height: 2px;
  background: var(--gradient-accent);
  margin-bottom: 1.5rem;
}

.accent-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   21. GALLERY ROW (Homepage food shots)
   ============================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 3rem;
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.1);
}

@media (max-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   22. CUSTOM CURSOR (subtle glow dot)
   ============================================ */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
  box-shadow: 0 0 8px var(--accent-glow);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 168, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ============================================
   23. MISC UTILITIES
   ============================================ */
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.dark-section {
  background: var(--secondary-bg);
}

.darker-section {
  background: var(--primary-bg);
}

/* AOS custom overrides */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ============================================
   24. CONTACT FORM
   ============================================ */
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form {
  background: var(--tertiary-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 3rem 3.5rem;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--secondary-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 0.875rem 1.125rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--secondary-bg);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4d4d;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
}
