/* ============================================
   Vista Hall — Next-Gen Tech/AI Design System
   Ultra-modern, dark mode, glassmorphism, glows
   ============================================ */

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

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

:root {
  --bg-base: #030305;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --bg-surface-hover: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(212, 168, 83, 0.3);
  
  --gold: #D4A853;
  --gold-light: #F2C94C;
  --gold-dark: #A67C00;
  
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  
  --glow-gold: 0 0 20px rgba(212, 168, 83, 0.3);
  --glow-white: 0 0 20px rgba(255, 255, 255, 0.1);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-base);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows (The "AI" vibe) */
body::before, body::after {
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

body::before {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--gold), transparent 60%);
}

body::after {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, #4f46e5, transparent 60%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); text-shadow: var(--glow-gold); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.1; font-weight: 700; color: var(--text-main); letter-spacing: -0.03em; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* --- Modern Buttons --- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-base);
  box-shadow: 0 4px 14px rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
  color: var(--bg-base);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg-base);
  box-shadow: var(--glow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.5);
  color: var(--bg-base);
}

.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--text-main);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* --- Typography & Labels --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  box-shadow: inset 0 0 10px rgba(212,168,83,0.05);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  padding-bottom: 0.1em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* --- Header / Glass Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  margin: 0 auto;
  max-width: calc(var(--max-width) + 48px);
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  /* If the logo is white bg with gold text, invert it to match dark theme, or just display as is */
  /* filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); */
}
.nav-brand-text {
  display: none; /* Hidden because the new logo image contains the text */
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
  background: var(--bg-surface);
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-phone:hover { color: var(--gold); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); margin: 5px 0; transition: 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 20px;
  right: 20px;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.mobile-menu a:hover { background: var(--bg-surface); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  overflow: hidden;
}

/* Abstract Tech Grid Background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero-content h1 .gradient-text {
  background: linear-gradient(to right, var(--gold-light), #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 10px; /* Prevent clipping italic/script fonts if any */
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-buttons { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* --- Glassmorphism Bento Cards --- */
section { padding: 100px 0; position: relative; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Hover Glow Effect */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212,168,83,0.06), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.bento-card-content { position: relative; z-index: 1; }

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.bento-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.bento-card p { color: var(--text-muted); font-size: 0.95rem; }

/* --- About Preview / Image Reveal --- */
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: block;
}
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tech-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.tech-image-wrapper img {
  border-radius: calc(var(--radius-lg) - 1px);
  width: 100%;
  display: block;
  filter: contrast(1.1) saturate(1.1);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,168,83,0.1), transparent);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(212,168,83,0.15), transparent 70%);
  pointer-events: none;
}
.cta-banner p {
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Forms (Tech Style) --- */
.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 2px rgba(212,168,83,0.2);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a1aa' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
  margin-bottom: 24px;
  border: 1px solid transparent;
}
.form-message.success {
  background: rgba(16,185,129,0.1);
  color: #34d399;
  border-color: rgba(16,185,129,0.2);
  display: block;
}
.form-message.error {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border-color: rgba(239,68,68,0.2);
  display: block;
}

/* --- Map Wrapper --- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 21/9;
  filter: grayscale(0.8) contrast(1.2) invert(0.9) hue-rotate(180deg); /* Dark mode map trick */
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
  margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 64px; }
.footer h4 { font-size: 1rem; margin-bottom: 24px; color: var(--text-main); }
.footer p, .footer a { color: var(--text-muted); font-size: 0.9rem; }
.footer a:hover { color: var(--text-main); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--text-main); border-color: var(--text-main); color: var(--bg-base); }
.footer-social a:hover svg { color: var(--bg-base); }

/* --- WhatsApp FAB --- */
.whatsapp-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 15px 40px rgba(37,211,102,0.4); }
.whatsapp-fab svg { width: 32px; height: 32px; fill: white; }

/* --- Scroll Animations --- */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Gallery Layout --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3;
  border: 1px solid var(--border-color);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: inset 0 0 50px rgba(0,0,0,0.5); opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 0 50px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute; top: 32px; right: 32px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; color: white; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* Page Header */
.page-header {
  padding: 180px 24px 80px;
  text-align: center;
  position: relative;
}
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 16px; }

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: block;
}
.about-preview { gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 12px 20px; border-radius: 16px; margin: 0 16px; width: auto; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: block;
}
.about-preview { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 20px 80px; }
  .hero-stats { gap: 24px; justify-content: space-around; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
}


/* --- Logo Wrapper --- */
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.logo-wrapper img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: none !important;
}

/* --- Halls Grid Layout --- */
.hall-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.hall-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hall-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.hall-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.hall-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hall-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-main);
}
.hall-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Footer Address Alignment */
.footer-contact-item.address {
  align-items: flex-start;
}
.footer-contact-item.address svg {
  margin-top: 4px;
}

/* --- Features Row --- */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(212,168,83,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text-main);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- 4 Column Grid & Cards --- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.card-body {
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* --- Business Hours --- */
.hours-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  margin-top: 24px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span:first-child {
  font-weight: 500;
  color: var(--text-main);
}

/* --- Contact Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,168,83,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}
.contact-info-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .features-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

/* --- Reviews Marquee --- */
.reviews-section {
  padding: 80px 0;
  overflow: hidden;
}
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 24px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
  gap: 24px;
  animation: scrollX 40s linear infinite;
}
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 24px)); }
}
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 350px;
  flex-shrink: 0;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars {
  color: var(--gold);
  display: flex;
  gap: 4px;
}
.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: rgba(212,168,83,0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-name {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
}
