
:root {
  --accent: #d0b36c;
  --dark: #131619;
  --text: #2b2b2b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

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

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

/* Navbar */
.m-glass-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.m-logo {
  height: 40px;
}

.m-glass-nav {
  display: flex;
  gap: 28px;
}

.m-glass-nav a {
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}

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

.m-menu-toggle {
  display: none;
}

/* Hero */
.m-hero {
  padding-top: 180px;
  padding-bottom: 120px;
  background: linear-gradient(to right, #111316, #1c1f25);
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.2rem;
  color: #ccc;
}

.hero-locations {
  font-weight: 500;
  color: var(--accent);
  margin-top: 6px;
}

/* Sections */
.m-section {
  padding: 80px 20px;
}

.alt-bg {
  background-color: #f8f8f8;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 40px;
}

/* Cards */
.grid {
  display: grid;
  gap: 30px;
}

.grid.two-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.mall-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.mall-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mall-card h3 {
  padding: 20px 16px 0;
  font-size: 1.3rem;
}

.card-btn {
  display: inline-block;
  margin: 16px 0 24px;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.card-btn:hover {
  background: #b79853;
}

/* Brand logos */
.brand-logo {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.brand-logo img {
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.brand-logo img:hover {
  filter: none;
}

/* Footer */
.m-footer {
  background: #0f0f0f;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

/* Responsive adjustments if needed */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}
