@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');

/* --- 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;
}

/* --- Typography --- */
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);
}

/* --- Layout Elements --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 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: 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.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

header.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.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;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- 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);
}

/* --- Footer --- */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
  margin-top: auto;
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  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;
}

/* --- Homepage Specific --- */
/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(7, 9, 14, 0.4), rgba(7, 9, 14, 0.85)), url('../assets/mall_hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
  max-width: 800px;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  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);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Quick Access Tiles */
.quick-tiles {
  margin-top: -6rem;
  position: relative;
  z-index: 20;
  padding: 0;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tile-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
}

.tile-icon {
  width: 50px;
  height: 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.1);
}

.tile-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.tile-card p {
  font-size: 0.9rem;
  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: 3.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: 2.2rem;
  margin-bottom: 1rem;
}

.carousel-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  right: 3.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); }
}

/* Showcase Section */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.showcase-visual img {
  width: 100%;
  display: block;
  transition: var(--transition-medium);
}

.showcase-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
  pointer-events: none;
}

.showcase-visual:hover img {
  transform: scale(1.03);
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.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.25rem;
}

/* --- Directory / Search Section --- */
.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);
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.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);
}

/* --- Dining Page Specific --- */
.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 Sub-Section */
.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);
}

/* --- Events Page Specific --- */
.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 Events Grid */
.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;
}

/* --- About & Leasing Page Specific --- */
.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;
}

/* Form Styles */
.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%;
}

/* --- Visit Us Page Specific --- */
.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 Us Area */
.contact-section {
  background-color: var(--bg-secondary);
}

/* --- Toast notification style --- */
.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;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand {
    grid-column: span 3;
  }
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dining-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid, .ent-grid, .leasing-grid, .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 3rem;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    transform: translateY(-120%);
    transition: var(--transition-medium);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-toggle {
    display: block;
  }
  .carousel-slide {
    grid-template-columns: 1fr;
  }
  .carousel-image {
    min-height: 220px;
    height: 220px;
  }
  .carousel-content {
    padding: 2.5rem 1.5rem;
  }
  .carousel-nav {
    right: 1.5rem;
    bottom: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .design-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .info-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .event-timeline::before {
    left: 15px;
  }
  .timeline-dot {
    left: 5px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns button, .hero-btns a {
    width: 100%;
  }
  .tiles-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
