/* ========================================================
   MODERN LUXURY ISLAMIC ACADEMIC CSS 
   ======================================================== */

:root {
  /* Rich, deep emerald and midnight colors */
  --primary-dark: #0a1712;
  /* Nearly black green */
  --primary: #112d22;
  /* Deep luxurious emerald */
  --primary-light: #1c4435;

  /* Rich metallic golds */
  --gold-dark: #9e7b39;
  --gold: #ceaa5b;
  --gold-light: #ebd08c;
  --gold-gradient: linear-gradient(135deg, #ceaa5b 0%, #a8843c 100%);

  /* Backgrounds */
  --bg-color: #fcfbfa;
  /* Cashmere white */
  --bg-alt: #f5f4ef;
  /* Warm architectural grey/beige */

  /* Typography */
  --text-main: #222524;
  --text-muted: #5e6662;
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  /* Advanced Layout Variables */
  --container-width: 1360px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition-fast: all 0.2s ease;
  --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  /* Shadows mimicking soft lighting */
  --shadow-soft: 0 10px 40px -10px rgba(17, 45, 34, 0.08);
  --shadow-hover: 0 20px 50px -15px rgba(17, 45, 34, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

/* ===================== */
/* BASE RESET & TYPOGRAPHY */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.15;
  font-weight: 500;
}

.elegant-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.25em;
}

.elegant-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
}

.elegant-title-md {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gold-text {
  color: var(--gold);
}

.text-muted {
  color: var(--text-light);
}

.text-white {
  color: var(--white) !important;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.95rem;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.15em;
}

.leading-loose {
  line-height: 2;
}

.uppercase {
  text-transform: uppercase;
}

.fw-bold {
  font-weight: 600;
}

.d-block {
  display: block;
}

.text-dark {
  color: var(--primary-dark);
}

.text-white {
  color: var(--white);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* 8px Strict Grid Scale */
.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-12 {
  margin-bottom: 48px;
}

.mb-16 {
  margin-bottom: 64px;
}

.mb-20 {
  margin-bottom: 80px;
}

.mb-24 {
  margin-bottom: 96px;
}

.mb-30 {
  margin-bottom: 120px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-10 {
  margin-top: 40px;
}

.mt-12 {
  margin-top: 48px;
}

.mt-16 {
  margin-top: 64px;
}

.mt-20 {
  margin-top: 80px;
}

.mt-24 {
  margin-top: 96px;
}

.mt-30 {
  margin-top: 120px;
}

.pt-8 {
  padding-top: 32px;
}

.pt-12 {
  padding-top: 48px;
}

.pt-16 {
  padding-top: 64px;
}

.pt-20 {
  padding-top: 80px;
}

.pt-24 {
  padding-top: 96px;
}

.pt-30 {
  padding-top: 120px;
}

.pb-8 {
  padding-bottom: 32px;
}

.pb-12 {
  padding-bottom: 48px;
}

.pb-16 {
  padding-bottom: 64px;
}

.pb-20 {
  padding-bottom: 80px;
}

.pb-24 {
  padding-bottom: 96px;
}

.pb-30 {
  padding-bottom: 120px;
}

.p-4 {
  padding: 16px;
}

.p-6 {
  padding: 24px;
}

.p-8 {
  padding: 32px;
}

.p-10 {
  padding: 40px;
}

.pl-4 {
  padding-left: 2rem;
}

.pr-4 {
  padding-right: 2rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.overflow-hidden {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 48px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.border-top {
  border-top: 1px solid rgba(24, 58, 48, 0.1);
}

.padding-lg {
  padding: 120px 0;
}

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

.gap-4 {
  gap: 1rem;
}

/* ===================== */
/* BUTTONS */
/* ===================== */
.btn-primary,
.btn-primary-outline,
.btn-primary-gold,
.btn-outline-gold,
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  /* Pill shape for luxury */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(206, 170, 91, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-primary-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary-gold:hover {
  box-shadow: 0 10px 25px rgba(206, 170, 91, 0.3);
  transform: translateY(-2px);
}

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.btn-secondary-link:hover {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  gap: 15px;
  /* Slide arrow */
}

/* ===================== */
/* HEADER / NAV (Glassmorphism) */
/* ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Add scrolling class via JS later if needed */
.glass-nav.scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(252, 251, 250, 0.95);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  min-height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.header-logo-img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-cta .btn-primary-outline {
  white-space: nowrap;
}

/* Dropdown Glass Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-glass), 0 15px 35px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 24px;
  color: var(--text-main);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  border-left: 2px solid transparent;
}

.dropdown li a:hover {
  background: var(--bg-alt);
  color: var(--primary);
  border-left: 2px solid var(--gold);
}

/* ===================== */
/* HERO SECTION (Editorial Layout) */
/* ===================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  /* Offset for header + 32px breathing room */
  padding-bottom: 96px;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  opacity: 1;
  /* Let the rich graphic shine */
  z-index: 0;
}

/* Subtle overlay to ensure text is always readable regardless of the screen size */
.hero-bg-texture::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--bg-color) 0%, rgba(252, 251, 250, 0.8) 40%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(206, 170, 91, 0.15);
  border: 1px solid rgba(206, 170, 91, 0.3);
  color: var(--gold-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-supporting {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-elegant {
  position: relative;
  width: 90%;
  height: 90%;
  z-index: 2;
}

/* Modern Islamic Arch Mask */
.image-mask-arch {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.image-mask-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Soft inner glow/overlay for realism */
.image-overlay {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

/* Glass Floating Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-glass), 0 20px 40px rgba(17, 45, 34, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.floating-stat {
  position: absolute;
  left: -20px;
  bottom: 80px;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Decorative Gold Rings */
.deco-circle-1,
.deco-circle-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 1;
}

.deco-circle-1 {
  width: 400px;
  height: 400px;
  top: -20px;
  right: -40px;
}

.deco-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -30px;
  left: 20px;
  border-style: dashed;
}

/* ===================== */
/* OVERLAPPING STATS */
/* ===================== */
.stats-overlap {
  position: relative;
  z-index: 20;
  margin-top: -60px;
  /* Pulls up over hero */
}

.stats-glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft), 0 20px 50px rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(206, 170, 91, 0.3), transparent);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================== */
/* GENERAL SECTIONS & GRID */
/* ===================== */
section {
  padding: 120px 0;
}

.overlap-top-padding {
  padding-top: 80px;
}

/* Force white on dark-background hero headings */
.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

/* Locked 2-column grid — stays side-by-side on desktop, stacks on mobile */
.two-col-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.light-mode .elegant-title-md {
  color: var(--white);
}

.section-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.center-desc {
  max-width: 750px;
  margin: 0 auto;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.align-center {
  align-items: center;
}

/* ===================== */
/* LUXURY CARDS */
/* ===================== */
.luxury-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition-slow);
  z-index: 1;
}

.luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* border thickness */
  background: linear-gradient(to bottom right, rgba(206, 170, 91, 0.4), transparent, rgba(17, 45, 34, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: var(--transition);
}

.luxury-card-inner {
  padding: 50px 40px;
  background: linear-gradient(to bottom, #ffffff, #fcfbfa);
  border-radius: calc(var(--radius-lg) - 1px);
  height: 100%;
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.luxury-card:hover::before {
  background: var(--gold-gradient);
}

.card-icon-elegant {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
}

/* Subtle icon ring */
.card-icon-elegant::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(206, 170, 91, 0.4);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.luxury-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.luxury-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.card-hover-link a {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-hover-link a:hover {
  gap: 12px;
  color: var(--primary);
}

.card-hover-li.btn-primary-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ===================== */
/* EDITORIAL IMAGE FRAME */
/* ===================== */
.bg-pattern-light {
  background-color: var(--bg-alt);
  background-image: radial-gradient(rgba(17, 45, 34, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.editorial-image-frame {
  position: relative;
  height: 650px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.editorial-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.editorial-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50%;
  height: 50%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
}

.editorial-image-frame::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 40%;
  background: var(--primary);
  z-index: 1;
  border-radius: var(--radius-sm);
}

/* ===================== */
/* LIST STYLING */
/* ===================== */
.luxury-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.luxury-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.luxury-list-sm {
  margin: 0;
  padding: 0;
}

.luxury-list-sm li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.luxury-list li {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
}

.luxury-list li:hover {
  border-left-color: var(--gold);
  transform: translateX(5px);
}

.list-bullet {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: rgba(206, 170, 91, 0.1);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== */
/* FLOATING BOXES (Kehidupan) */
/* ===================== */
.floating-box {
  background: var(--white);
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.box-icon {
  font-size: 3rem;
  margin-bottom: 25px;
}

/* ===================== */
/* SUMBANGAN (Dark Mode Glass) */
/* ===================== */
.sumbangan-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/architecture.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.sumbangan-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 23, 18, 0.92);
  /* Very dark emerald overlay */
}

.glass-panel-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-panel-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(206, 170, 91, 0.5);
  transform: translateY(-8px);
}

.glass-panel-dark h4 {
  color: var(--white);
}

.glass-panel-dark .luxury-list-sm li,
.glass-panel-dark .luxury-list li {
  color: var(--white);
}

/* ===================== */
/* FOOTER LUXURY */
/* ===================== */
.luxury-footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 100px 0 30px;
  border-top: 1px solid rgba(206, 170, 91, 0.2);
}

.luxury-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.icon-logo-large {
  font-size: 2.5rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--white);
  font-weight: 500;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.social-pills {
  display: flex;
  gap: 15px;
}

.social-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-pill:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================== */
/* STEPPER COMPONENT */
/* ===================== */
.stepper-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.stepper-container::before {
  content: '';
  position: absolute;
  top: 30px;
  /* center of the 60px circle */
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gold-light);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: bold;
  margin: 0 auto 20px auto;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-item:hover .step-circle {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(206, 170, 91, 0.4);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav-list {
    gap: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-supporting {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
    height: auto;
    margin-top: 20px;
  }

  .image-mask-arch {
    border-radius: 100px 100px 0 0;
  }

  .stats-glass-panel {
    flex-wrap: wrap;
    gap: 30px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 1 1 40%;
  }

  .three-columns {
    grid-template-columns: 1fr;
  }

  .two-col-desktop {
    grid-template-columns: 1fr;
  }

  .editorial-image-frame {
    height: 400px;
  }

  .overlap-top-padding {
    padding-top: 100px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .nav-list {
    display: none;
  }

  /* Add mobile menu later */
  .elegant-title {
    font-size: 2.5rem;
  }

  .elegant-subtitle {
    font-size: 1.5rem;
  }

  .stats-glass-panel {
    flex-direction: column;
  }
}