/* ========================================
   Shanta Holdings - Exact Replica
   Homepage Stylesheet
   ======================================== */

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

/* --- Light Theme (Default) --- */
:root {
  --primary: #978c21;
  --primary-hover: #b5a828;
  --primary-dark: #7a7119;

  --bg: #fffaf4;
  --bg-alt: #f3ebdd;
  --bg-card: #ffffff;
  --text: #3c3c3b;
  --text-secondary: #6b6b6a;
  --text-muted: #999;
  --border: #e8e0d4;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --footer-bg: #f3ebdd;
  --drawer-bg: #15171b;
  --overlay: rgba(0,0,0,0.5);
  --hero-overlay: rgba(0,0,0,0.3);

  --nav-height: 80px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Dark Theme --- */
[data-theme="dark"] {
  --bg: #212121;
  --bg-alt: #2a2a2a;
  --bg-card: #2e2e2e;
  --text: #f2f2f2;
  --text-secondary: #c0c0c0;
  --text-muted: #888;
  --border: #3a3a3a;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --footer-bg: #5f613a;
  --hero-overlay: rgba(0,0,0,0.4);
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol { list-style: none; }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 0 7.5%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow);
}

.nav-logo img {
  height: 46px;
  transition: var(--transition);
}

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.menu-btn-lines span {
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-btn-lines span:nth-child(1) { width: 100%; }
.menu-btn-lines span:nth-child(2) { width: 70%; }

.menu-btn:hover .menu-btn-lines span:nth-child(2) { width: 100%; }

/* Theme Toggle Pill */
.theme-pill {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--border);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.theme-pill::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  transition: var(--transition);
}

[data-theme="dark"] .theme-pill::after {
  left: 23px;
}

.theme-pill .pill-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #fff;
  z-index: 1;
  pointer-events: none;
}

.theme-pill .icon-sun { left: 6px; }
.theme-pill .icon-moon { right: 6px; }

/* ========================================
   NAVIGATION DRAWER
   ======================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(100%, 520px);
  height: 100vh;
  background: var(--drawer-bg);
  z-index: 10002;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nav-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: var(--transition);
}

.drawer-close:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.drawer-theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-theme-toggle .label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.drawer-theme-pill {
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-theme-pill::after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary);
  transition: var(--transition);
}

[data-theme="dark"] .drawer-theme-pill::after {
  left: 22.5px;
}

/* Drawer Menu Links */
.drawer-menu {
  flex: 1;
  padding: 20px 40px;
}

.drawer-menu > li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.drawer-menu > li > a,
.drawer-menu > li > .drawer-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.drawer-menu > li > a:hover,
.drawer-menu > li > .drawer-parent:hover {
  color: var(--primary);
}

.drawer-parent .arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.drawer-parent.open .arrow {
  transform: rotate(180deg);
}

.drawer-sub {
  display: none;
  padding: 0 0 10px 20px;
}

.drawer-sub.open {
  display: block;
}

.drawer-sub a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 400;
  transition: var(--transition);
}

.drawer-sub a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.drawer-footer {
  padding: 20px 40px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.drawer-social {
  display: flex;
  gap: 12px;
}

.drawer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.drawer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ========================================
   HERO BANNER
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 7s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

/* Hero Title */
.hero-title {
  position: absolute;
  bottom: 10%;
  left: 7.5%;
  z-index: 2;
  color: #fff;
}

.hero-title h1 {
  font-weight: 300;
  line-height: 0.9;
  text-transform: lowercase;
  letter-spacing: -2px;
}

.hero-title h1 .line-1 {
  display: block;
  font-size: clamp(60px, 13vw, 200px);
  font-weight: 300;
}

.hero-title h1 .line-2 {
  display: block;
  font-size: clamp(60px, 13vw, 200px);
  font-weight: 900;
}

/* ========================================
   FLOATING IMAGE WITH VIDEO
   ======================================== */
.video-section {
  position: relative;
  padding: 100px 7.5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

.video-section-left {
  position: relative;
}

.floating-img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.video-section-right {
  position: relative;
}

.video-section-right .description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.video-thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-thumb:hover img {
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.play-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Marquee */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  padding: 0 30px;
  flex-shrink: 0;
}

.marquee-track .dot {
  color: var(--primary);
}

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

/* ========================================
   FEATURED PROJECTS SLIDER
   ======================================== */
.featured-section {
  padding: 100px 0;
}

.featured-header {
  padding: 0 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.featured-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
}

.slider-nav {
  display: flex;
  gap: 12px;
}

.slider-nav button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}

.slider-nav button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.featured-slider {
  position: relative;
  overflow: hidden;
}

.featured-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-slide {
  position: relative;
  flex: 0 0 85%;
  margin-right: 20px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.featured-slide:first-child {
  margin-left: 7.5%;
}

.featured-slide-img {
  width: 100%;
  height: 70vh;
  min-height: 450px;
  max-height: 650px;
  overflow: hidden;
}

.featured-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-slide:hover .featured-slide-img img {
  transform: scale(1.03);
}

.featured-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.featured-slide-overlay h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.featured-slide-overlay .location {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.project-meta-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.project-meta-item strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.featured-slide-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  opacity: 0;
  transition: var(--transition);
}

.featured-slide:hover .featured-slide-play {
  opacity: 1;
}

/* ========================================
   STATISTICS
   ======================================== */
.stats-section {
  position: relative;
  padding: 100px 7.5%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

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

.stats-title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stats-title strong {
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ========================================
   CITY MAP (LeafletJS)
   ======================================== */
.map-section {
  padding: 100px 7.5%;
  text-align: center;
}

/* Location Filter Pills */
.map-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.map-filter-btn {
  padding: 10px 24px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-secondary);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.map-filter-btn.active,
.map-filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Status / Type Dropdowns */
.map-dropdowns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.map-dropdown {
  position: relative;
}

.map-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
}

.map-dropdown-btn:hover,
.map-dropdown-btn.open {
  border-color: var(--primary);
  color: var(--primary);
}

.map-dropdown-btn i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.map-dropdown-btn.open i {
  transform: rotate(180deg);
}

.map-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--transition);
}

.map-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.map-dropdown-menu label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.map-dropdown-menu label:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.map-dropdown-menu input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

#dhakaMap {
  width: 100%;
  height: 600px;
  background: var(--bg-alt);
  z-index: 1;
}

/* Active Filter Chips (bottom bar inside map) */
.map-active-filters {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(80, 75, 65, 0.85);
  backdrop-filter: blur(6px);
  padding: 0;
  min-height: 0;
  transition: var(--transition);
  pointer-events: auto;
}

.map-active-filters:empty {
  display: none;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.15);
  cursor: default;
  white-space: nowrap;
}

.filter-chip:last-child {
  border-right: none;
}

.filter-chip .chip-remove {
  cursor: pointer;
  opacity: 0.7;
  font-size: 0.8rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.filter-chip .chip-remove:hover {
  opacity: 1;
}

/* Custom Leaflet marker label styles */
.area-marker-label {
  background: var(--primary, #978c21);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  text-align: center;
  line-height: 1.3;
}

.area-marker-dot {
  width: 12px;
  height: 12px;
  background: #6b6742;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Project marker popup */
.project-popup {
  font-family: 'Inter', sans-serif;
}

.project-popup h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #3c3c3b;
}

.project-popup p {
  font-size: 0.8rem;
  color: #6b6b6a;
  margin: 2px 0;
}

.project-popup .popup-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  background: #978c21;
  color: #fff;
  border-radius: 3px;
  margin-top: 6px;
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Override Leaflet defaults for dark theme */
[data-theme="dark"] .leaflet-tile-pane {
  filter: brightness(0.7) contrast(1.1) saturate(0.3);
}

[data-theme="dark"] .leaflet-control-zoom a {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}

[data-theme="dark"] .leaflet-popup-content-wrapper,
[data-theme="dark"] .leaflet-popup-tip {
  background: var(--bg-card);
}

[data-theme="dark"] .project-popup h4 {
  color: var(--text);
}

[data-theme="dark"] .project-popup p {
  color: var(--text-secondary);
}

/* ========================================
   PLATINUM / THREE SLIDER
   ======================================== */
.platinum-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.platinum-header {
  padding: 0 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.platinum-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.platinum-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 7.5%;
}

.platinum-slide {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 9/14;
  max-height: 500px;
}

.platinum-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.platinum-slide:hover img {
  transform: scale(1.05);
}

.platinum-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}

.platinum-slide-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.platinum-slide-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.platinum-slide-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.platinum-slide:hover .platinum-slide-play {
  opacity: 1;
}

/* ========================================
   BUSINESSES
   ======================================== */
.businesses-section {
  padding: 100px 0;
}

.businesses-header {
  padding: 0 7.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.businesses-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.businesses-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 7.5%;
}

.business-card {
  flex: 0 0 280px;
  margin-right: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.business-card-img {
  height: 340px;
  overflow: hidden;
}

.business-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-card:hover .business-card-img img {
  transform: scale(1.05);
}

.business-card-body {
  padding: 20px 24px;
}

.business-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.business-card-body .sub-brands {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.business-card-body .sub-brands a {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.business-card-body .sub-brands a:hover {
  text-decoration: underline;
}

/* ========================================
   LET'S CONNECT
   ======================================== */
.connect-section {
  position: relative;
  padding: 100px 7.5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  overflow: hidden;
}

.connect-image {
  position: relative;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}

.connect-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connect-content {
  background: var(--bg-alt);
  padding: 60px;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connect-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text);
}

.connect-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.connect-card:last-child {
  border-bottom: none;
}

.connect-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.connect-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.connect-card .arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.connect-card:hover .arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.connect-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.connect-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.connect-info a i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.connect-info a:hover {
  color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--footer-bg);
  padding: 80px 7.5% 0;
  transition: background 0.4s ease;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-col h6 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-newsletter h6 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: var(--bg-card);
  color: var(--text);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-hover);
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-contact a i {
  color: var(--primary);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

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

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(151, 140, 33, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Hero title entrance */
.hero-title h1 .line-1,
.hero-title h1 .line-2 {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-title h1 .line-1.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-title h1 .line-2.animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .navbar { padding: 0 5%; }
  .hero-title { left: 5%; }
  .video-section { padding: 80px 5%; grid-template-columns: 1fr; }
  .featured-header, .platinum-header, .businesses-header { padding: 0 5%; }
  .featured-slide:first-child { margin-left: 5%; }
  .platinum-track, .businesses-track { padding-left: 5%; }
  .connect-section { padding: 80px 5%; grid-template-columns: 1fr; }
  .connect-image { border-radius: 16px 16px 0 0; min-height: 300px; }
  .connect-content { border-radius: 0 0 16px 16px; padding: 40px; }
  .map-section { padding: 80px 5%; }
  .stats-section { padding: 80px 5%; }
  .footer { padding: 60px 5% 0; }

  .featured-slide { flex: 0 0 90%; }
  .platinum-slide { flex: 0 0 calc(50% - 10px); }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 65px; }

  .menu-btn .label { display: none; }

  .hero-title h1 .line-1,
  .hero-title h1 .line-2 {
    font-size: clamp(48px, 13vw, 80px);
  }

  .video-section { padding: 60px 5%; gap: 30px; }
  .featured-section { padding: 60px 0; }
  .featured-header { margin-bottom: 30px; }
  .featured-slide { flex: 0 0 92%; }
  .featured-slide-img { height: 50vh; min-height: 350px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stats-title { font-size: 1.6rem; margin-bottom: 40px; }

  .platinum-slide { flex: 0 0 70%; }
  .business-card { flex: 0 0 250px; }

  #dhakaMap { height: 450px; }
  .map-dropdowns { flex-wrap: wrap; }
  .filter-chip { padding: 10px 16px; font-size: 0.8rem; }

  .connect-content { padding: 30px; }
  .connect-content h2 { font-size: 1.8rem; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .drawer-header, .drawer-menu, .drawer-footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .hero-title { bottom: 8%; left: 5%; }
  .hero-title h1 .line-1,
  .hero-title h1 .line-2 {
    font-size: 48px;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 2rem; }

  .platinum-slide { flex: 0 0 85%; }
  .business-card { flex: 0 0 85%; }

  .map-filters { gap: 6px; }
  .map-filter-btn { padding: 6px 14px; font-size: 0.75rem; }
  #dhakaMap { height: 380px; }
  .map-dropdowns { gap: 8px; }
  .map-dropdown-btn { padding: 8px 14px; font-size: 0.75rem; }
  .filter-chip { padding: 8px 12px; font-size: 0.75rem; gap: 10px; }

  .whatsapp-btn { bottom: 20px; left: 20px; width: 50px; height: 50px; }
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}
