@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
   1. RESET & BASE VARIABLES
   ========================================================= */
:root {
  --bg-primary: #07090e;
  --bg-secondary: #0c0f17;
  --bg-card: rgba(20, 26, 38, 0.65);
  --border-light: rgba(255, 255, 255, 0.06);
  --border-focus: rgba(212, 175, 55, 0.4);
  
  --primary: #ffffff;
  --accent: #e5c060; /* Luxurious gold */
  --accent-rgb: 229, 192, 96;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5);
  --glass-effect: backdrop-filter: blur(12px) saturate(180%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* =========================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.card-subtitle {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-meta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* =========================================================
   3. LAYOUT & GLOBAL COMPONENTS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
  margin-top:2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem
}

.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-medium);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

header.scrolled {
  background: rgba(7, 9, 14, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.04);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--accent);
  color: #07090e;
}

.btn-primary:hover {
  background-color: #f7d983;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* =========================================================
   4. HOMEPAGE SPECIFIC
   ========================================================= */

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 9, 14, 0.85) 0%,
      rgba(7, 9, 14, 0.72) 45%,
      rgba(7, 9, 14, 0.45) 100%
    ),
    url('../assets/mall_hero.png');
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 10;
}

.hero-copy {
  max-width: 760px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(var(--accent-rgb), 0.1);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  text-shadow: none;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.8);
}

.hero p {
  max-width: 650px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Quick Access Tiles */
.quick-tiles {
  margin-top: -4rem;
  position: relative;
  z-index: 20;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.tile-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 1.25rem;
  border-radius: 16px;
}

.tile-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.tile-card:hover .tile-icon {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.08);
}

.tile-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tile-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Promotional Carousel */
.promo-section {
  background-color: var(--bg-secondary);
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
}

.carousel-slide {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  background-color: var(--bg-card);
  min-height: 400px;
}

.carousel-slide.active {
  display: grid;
  animation: fadeEffect 0.6s ease;
}

.carousel-image {
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.carousel-content {
  padding: 3rem 2.5rem;
}

.carousel-tag {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.carousel-content h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

.carousel-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  gap: 0.8rem;
  z-index: 15;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

@keyframes fadeEffect {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Architectural Section */
.architectural-section {
  padding-top: 3.5rem;
}

.architectural-visual {
  width: min(100%, 900px);
  height: 330px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-premium);
}

.architectural-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-medium);
}

.architectural-visual:hover img {
  transform: scale(1.03);
}

.architectural-stats {
  text-align: center;
  width: min(100%, 900px);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.architectural-stats .stat-item {
  padding: 0 1.5rem;
  text-align: center;
  border-left: 2px solid var(--accent);
}

.architectural-stats .stat-item:first-child {
  border-left: none;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

.architectural-info {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: left;
}

.architectural-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.architectural-info .btn {
  margin-top: 0.75rem;
}

/* Car Wash Section */
.car-wash-section {
  margin-top: 2rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.showcase-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition-medium);
}

.showcase-visual:hover img {
  transform: scale(1.03);
}

.car-wash-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.showcase-info h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0.8rem 0 1.25rem;
}

.section-description {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* News Grid */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

/* Community CTA */
.community-cta-content {
  max-width: 700px;
  text-align: center;
}

.community-cta-content h2 {
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.community-cta-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.community-cta-buttons {
  justify-content: center;
}

/* =========================================================
   5. DIRECTORY & SEARCH PAGE
   ========================================================= */
.directory-filter {
  margin-bottom: 3rem;
}

.search-wrapper {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  font-size: 1.05rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--primary);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.15);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  pointer-events: none;
}

.filter-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
}

.filter-pill {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.filter-pill:hover, 
.filter-pill.active {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.2);
}

.store-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.store-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.store-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.store-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.store-location svg {
  color: var(--accent);
}

.store-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.store-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.store-link:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* =========================================================
   6. DINING & ENTERTAINMENT PAGE
   ========================================================= */
.dining-hero {
  background-image: linear-gradient(rgba(7, 9, 14, 0.4), rgba(7, 9, 14, 0.85)), url('../assets/dining_rooftop.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.dining-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  padding: 0;
}

.dining-img {
  height: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
}

.dining-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dining-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.dining-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.entertainment-section {
  background-color: var(--bg-secondary);
}

.ent-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ent-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.ent-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.ent-features {
  list-style: none;
  margin-bottom: 2rem;
}

.ent-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.ent-features svg {
  color: var(--accent);
}

/* =========================================================
   7. EVENTS & TIMELINE PAGE
   ========================================================= */
.events-hero {
  background-image: linear-gradient(rgba(7, 9, 14, 0.4), rgba(7, 9, 14, 0.85)), url('../assets/cinema_lobby.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.event-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.event-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  margin-bottom: 3.5rem;
  position: relative;
  padding-left: 80px;
}

.timeline-dot {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--accent);
  z-index: 10;
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.4);
}

.timeline-date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.timeline-card {
  padding: 2rem 2.5rem;
}

.timeline-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.timeline-card p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.past-gallery-section {
  background-color: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(7, 9, 14, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-medium);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* =========================================================
   8. ABOUT & LEASING PAGE
   ========================================================= */
.about-hero {
  background-image: linear-gradient(rgba(7, 9, 14, 0.4), rgba(7, 9, 14, 0.85)), url('../assets/mall_interior.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

.design-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.leasing-section {
  background-color: var(--bg-secondary);
}

.leasing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.leasing-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.leasing-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.leasing-benefits {
  list-style: none;
}

.leasing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.leasing-benefits svg {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.leasing-benefits h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.leasing-benefits p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(7, 9, 14, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--primary);
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-wrapper {
  margin-top: 2rem;
}

.form-submit-wrapper button {
  width: 100%;
}

/* =========================================================
   9. VISIT US PAGE & MAP
   ========================================================= */
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  padding: 1.75rem;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.info-card-header svg {
  color: var(--accent);
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.info-card p, 
.info-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-card ul {
  list-style: none;
}

.info-card li {
  margin-bottom: 0.4rem;
}

.map-wrapper {
  height: 100%;
  min-height: 450px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  background-color: #0b0e14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

.map-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2);
  animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
  0% { transform: scale(1); box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2); }
  50% { transform: scale(1.08); box-shadow: 0 0 45px rgba(var(--accent-rgb), 0.35); }
  100% { transform: scale(1); box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2); }
}

.map-details {
  max-width: 320px;
}

.map-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.map-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-section {
  background-color: var(--bg-secondary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
}

.toast {
  background: var(--bg-card);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* =========================================================
   10. FOOTER
   ========================================================= */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =========================================================
   11. CONSOLIDATED RESPONSIVE MEDIA QUERIES
   ========================================================= */

@media (min-width: 1200px) and (prefers-reduced-motion: no-preference) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px) {
  .tiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dining-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid, 
  .ent-grid, 
  .leasing-grid, 
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .nav-container {
    min-height: 68px;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.25rem;
    background: rgba(12, 15, 23, 0.98);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition-medium), opacity var(--transition-fast);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-link::after {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .quick-tiles {
    margin-top: -2.5rem;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .carousel-image {
    height: 220px;
    min-height: 220px;
  }

  .carousel-content {
    padding: 2rem 1.25rem 4.5rem;
  }

  .carousel-nav {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .architectural-visual {
    height: 240px;
  }

  .architectural-stats {
    gap: 0.5rem;
  }

  .architectural-stats .stat-item {
    padding: 0 0.5rem;
  }

  .architectural-stats .stat-number {
    font-size: 1.6rem;
  }

  .dining-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .design-features,
  .form-row,
  .info-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .event-timeline::before {
    left: 15px;
  }

  .timeline-dot {
    left: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6.5rem 0 3.5rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .tiles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .tile-card {
    padding: 1.25rem 0.75rem;
  }

  .tile-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
  }

  .tile-card h3 {
    font-size: 0.98rem;
  }

  .tile-card p {
    font-size: 0.78rem;
  }

  .architectural-stats {
    gap: 1.25rem;
   }

  .architectural-stats .stat-item {
    border-left: 2px solid var(--accent);
    padding-left: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   DIRECTORY PAGE ENHANCEMENTS
   ========================================================= */
.directory-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 9, 14, 0.88) 0%,
      rgba(7, 9, 14, 0.72) 55%,
      rgba(7, 9, 14, 0.55) 100%
    ),
    url('../assets/mall_hero.png');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
}

.directory-hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.directory-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.directory-hero p {
  max-width: 620px;
  color: #e2e8f0;
  font-size: 1.05rem;
}

.directory-filter {
  margin-bottom: 3.5rem;
}

.search-wrapper {
  max-width: 720px;
  margin: 0 auto 1.75rem;
}

.search-input {
  min-height: 58px;
  padding: 1rem 1.5rem 1rem 3.5rem;
  background: rgba(20, 26, 38, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.search-input::placeholder {
  color: #64748b;
}

.filter-pills {
  gap: 0.6rem;
}

.filter-pill {
  white-space: nowrap;
  padding: 0.65rem 1.1rem;
}

.grid-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.store-card-wrapper {
  min-width: 0;
}

.store-card {
  padding: 1.15rem;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(25, 31, 44, 0.78),
    rgba(12, 15, 23, 0.92)
  );
}

.store-card:hover {
  transform: translateY(-6px);
}

.store-image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 1.15rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition-medium), filter var(--transition-medium);
}

.store-card:hover .store-image {
  transform: scale(1.025);
  filter: brightness(1.05);
}

.store-header {
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.store-logo {
  min-width: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.store-logo-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  font-size: 0.75rem;
}

.store-tag {
  flex-shrink: 0;
  font-size: 0.65rem;
  padding: 0.3rem 0.55rem;
  white-space: nowrap;
}

.store-location {
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

.store-blurb {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.store-footer {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.store-footer span {
  font-size: 0.78rem !important;
  color: #64748b !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .grid-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-image {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .directory-filter {
    margin-bottom: 2rem;
  }

  .search-wrapper {
    margin-bottom: 1.25rem;
  }

  .search-input {
    min-height: 54px;
    font-size: 0.95rem;
  }

  .filter-pills {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0 0.6rem;
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    scrollbar-width: none;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .store-card {
    padding: 0.9rem;
    border-radius: 16px;
  }

  .store-image {
    height: 210px;
    margin-bottom: 1rem;
    border-radius: 11px;
  }

  .store-logo {
    font-size: 1.1rem;
  }

  .store-tag {
    font-size: 0.6rem;
  }
}

.directory-page {
  padding-bottom: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .store-image {
    height: 190px;
  }

  .store-header {
    align-items: center;
  }

  .store-logo {
    font-size: 1rem;
  }

  .store-logo-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .store-blurb {
    font-size: 0.84rem;
  }
}
