/* ANANDA ALAYA — Boutique Urban Sanctuary & Club Styles */
:root {
  --bg-dark: #140f0c;
  --bg-dark-card: #1c1510;
  --bg-masters: #121711;
  --bg-light: #f5efe6;
  --bg-light-card: #fbf7f0;
  --text-dark: #201712;
  --text-dark-muted: #6e6154;
  --text-light: #f6eedf;
  --text-light-muted: #b8aba0;
  --gold: #d99a3a;
  --gold-light: #f0be65;
  --gold-dark: #ad7023;
  --burgundy: #7a2327;
  --border-light: rgba(217, 154, 58, 0.22);
  --border-card-light: #e5dac9;
  --radius-pill: 999px;
  --radius-card: 18px;
  --font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-subtle: 0 14px 34px rgba(20, 15, 12, 0.08);
  --shadow-elevated: 0 24px 60px rgba(20, 15, 12, 0.22);
}

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

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

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Texture overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Helpers */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.eyebrow-dark {
  color: var(--gold-dark);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.28s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #f0be65 0%, #b87527 100%);
  color: #1a120b;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(216, 148, 52, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(216, 148, 52, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(240, 190, 101, 0.4);
  color: #f7eedf;
}

.btn-outline:hover {
  background: rgba(240, 190, 101, 0.12);
  border-color: var(--gold-light);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(138, 97, 45, 0.35);
  color: var(--text-dark);
}

.btn-outline-dark:hover {
  border-color: var(--gold-dark);
  background: rgba(184, 117, 39, 0.06);
}

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 clamp(20px, 4.5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(16, 12, 9, 0.92) 0%, rgba(16, 12, 9, 0.3) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.topbar.scrolled {
  height: 68px;
  background: rgba(16, 12, 9, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(240, 190, 101, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #f7eedf;
}

.brand-subtitle {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bfb09e;
  margin-top: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  color: #d1c4b2;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold-light);
}

.header-cta {
  padding: 10px 22px;
  font-size: 12.5px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 4.5vw, 64px) 70px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_bg_clean.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Subtle gradient to ensure left text readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 15, 12, 0.95) 0%, rgba(20, 15, 12, 0.82) 42%, rgba(20, 15, 12, 0.15) 75%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  color: #fff9ef;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: #d1c3b2;
  margin-bottom: 34px;
  max-width: 530px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #bfaea0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(217, 154, 58, 0.3);
  color: var(--gold-light);
}

.hero-aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: #cbbba8;
}

.pillar-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-left: auto;
  margin-top: 6px;
}

/* SECTION CONTAINER */
.section-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 46px;
}

.section-head-left {
  flex: 1;
}

.section-head-right {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark-muted);
}

/* 7 LEVELS SECTION */
.seven-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0;
}

.seven-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.level-card {
  position: relative;
  display: block;
  border-radius: 90px 90px 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(46, 30, 17, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  background-color: #2a1b15;
}

.level-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(46, 30, 17, 0.18);
}

.level-card-art {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 90px 90px 16px 16px;
  transition: transform 0.4s ease;
}

.level-card:hover .level-card-art {
  transform: scale(1.04);
}

/* ABOUT HOUSE SECTION */
.house-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 110px 0;
}

.house-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.house-visual {
  position: relative;
}

.lounge-img-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.lounge-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.house-visual:hover .lounge-img {
  transform: scale(1.02);
}

.house-content {
  display: flex;
  flex-direction: column;
}

.house-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 26px;
}

.house-cta-row {
  margin-bottom: 34px;
}

.house-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.house-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #d8cdbe;
}

.feat-circ-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 154, 58, 0.35);
  color: var(--gold-light);
  flex-shrink: 0;
}

/* EVENTS SECTION */
.events-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.event-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: all 0.32s ease;
  cursor: pointer;
  background: #1a120c;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.event-card-art {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-art {
  transform: scale(1.03);
}

.event-card.dynamic-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  min-height: 320px;
}

.event-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-bg {
  transform: scale(1.04);
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 12, 9, 0.95) 0%, rgba(18, 12, 9, 0.45) 55%, rgba(18, 12, 9, 0.2) 100%);
  pointer-events: none;
}

.event-card-top, .event-card-bottom {
  position: relative;
  z-index: 2;
}

.event-date-pill {
  display: inline-flex;
  flex-direction: column;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(18, 14, 11, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.event-date-pill b {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.event-date-pill small {
  font-size: 9.5px;
  color: #dfd4c5;
  letter-spacing: 0.05em;
}

.event-card-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 10px;
  color: #ffffff;
}

.event-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* MASTERS SECTION */
.masters-section {
  background: var(--bg-masters);
  color: var(--text-light);
  padding: 100px 0;
}

.masters-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.masters-intro {
  max-width: 440px;
}

.masters-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin-bottom: 28px;
}

.masters-cards-area {
  position: relative;
  display: flex;
  align-items: center;
}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.master-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(217, 154, 58, 0.25);
  background: #171c14;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.master-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 190, 101, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.master-card-art {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-card);
  transition: transform 0.4s ease;
}

.master-card:hover .master-card-art {
  transform: scale(1.03);
}

.slider-arrow-btn {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(24, 19, 14, 0.85);
  border: 1px solid rgba(217, 154, 58, 0.4);
  color: #f7eedf;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.slider-arrow-btn:hover {
  background: var(--gold);
  color: #16110d;
}

/* MEMBERSHIP SECTION */
.membership-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 100px 0;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.membership-card {
  position: relative;
  background: var(--bg-light-card);
  border: 1px solid var(--border-card-light);
  border-radius: var(--radius-card);
  padding: 38px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-subtle);
}

.membership-card.featured {
  background: linear-gradient(150deg, #241812 0%, #16110e 100%);
  color: #ffffff;
  border-color: #a8793b;
  box-shadow: 0 20px 50px rgba(40, 24, 14, 0.22);
}

.membership-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: #fceceb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}

.membership-plan-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.membership-price-wrap {
  margin-bottom: 26px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.membership-card.featured .membership-price-wrap {
  color: var(--gold-light);
}

.membership-price-wrap small {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dark-muted);
}

.membership-card.featured .membership-price-wrap small {
  color: #c9bcaf;
}

.membership-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
  flex-grow: 1;
}

.membership-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-dark-muted);
}

.membership-card.featured .membership-features li {
  color: #d9cec2;
}

.membership-features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.membership-card .btn {
  width: 100%;
}

/* REVIEWS SECTION */
.reviews-section {
  background: #17110d;
  color: var(--text-light);
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-wrapper {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.reviews-intro {
  max-width: 320px;
}

.reviews-content-area {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

.review-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(217, 154, 58, 0.15);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240, 190, 101, 0.4);
  flex-shrink: 0;
}

.review-text-wrap {
  display: flex;
  flex-direction: column;
}

.review-quote {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.35;
  color: #f7eedf;
  margin-bottom: 8px;
}

.review-author {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--gold-light);
}

.review-role {
  font-size: 9.5px;
  color: #a6988a;
  margin-top: 1px;
}

/* FOOTER */
.footer {
  background: #100d0a;
  color: var(--text-light);
  padding: 55px 0 35px;
}

.footer-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-nav a {
  color: #bfaea0;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dfd4c5;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: #8c7e70;
}

.footer-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-meta-left .sep {
  opacity: 0.4;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.delay-1 {
  transition-delay: 0.15s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .seven-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    padding: 24px;
    background: rgba(20, 15, 12, 0.98);
    border: 1px solid rgba(217, 154, 58, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    z-index: 99;
  }
  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .mobile-menu a {
    color: #f7eedf;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-cta {
    margin-top: 10px;
  }
  .house-container {
    grid-template-columns: 1fr;
  }
  .masters-wrapper, .reviews-wrapper {
    grid-template-columns: 1fr;
  }
  .masters-intro, .reviews-intro {
    max-width: 100%;
  }
  .slider-arrow-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-aside {
    display: none;
  }
  .seven-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    gap: 12px;
  }
  .level-card {
    min-width: 220px;
    scroll-snap-align: start;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .masters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
