/* ═══════════════════════════════════════════════════════════
   PURPLE SOIL — MAIN STYLESHEET
   Fonts: Cormorant Garamond (display) + Outfit (UI/body)
   Theme: Light | Colors: #6b21a8 purple + #b6a184 warm gold
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {  font-size: 16px; }

::selection {
  background: #744a9db5;
  color: black;
 text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

::-moz-selection {
  background: rgba(174, 58, 237, 0.75);
  color: black; 
  text-shadow: 0 0 10px rgba(29, 29, 29, 0.35);
}

body {
  overflow-x: hidden;
}
body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  color: #1c1625;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --purple:       #784e90;
  --purple-mid:   #784e90e9;
  --purple-light: #784e90;
  --purple-pale:  #f3e8ff;
  --gold:         #b6a184;
  --gold-light:   #d4c5ae;
  --gold-pale:    #f5f0ea;
  --white:        #ffffff;
  --bg:           #faf9f7;
  --bg2:          #f5f0ea;
  --bg3:          #ede8e0;
  --text:         #b6a184;
  --text-mid:     #4b4560;
  --muted:        #292828;
  --border:       rgba(182, 161, 132, 0.25);
  --border-p:     rgba(107, 33, 168, 0.15);
  --shadow-sm:    0 2px 12px rgba(28, 22, 37, 0.06);
  --shadow-md:    0 8px 32px rgba(28, 22, 37, 0.10);
  --shadow-lg:    0 20px 60px rgba(28, 22, 37, 0.12);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 0px }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  width: 0%; transition: width 0.1s linear;
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--purple);
  padding: 9px 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,0.85);
}
.topbar-left { display: flex; gap: 16px; }
.topbar-left a {
  color: rgba(255,255,255,0.7); font-size: 13px;
  transition: color 0.2s; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
}
.topbar-left a:hover { color: var(--gold-light); border-color: var(--gold); }
.topbar-right { display: flex; gap: 28px; align-items: center; }
.topbar-right a {
  color: rgba(255,255,255,0.8); display: flex; align-items: center;
  gap: 7px; font-size: 12.5px; transition: color 0.2s;
}
.topbar-right a:hover { color: var(--gold-light); }
.topbar-right a svg { opacity: 0.7; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ── NAVIGATION ──────────────────────────────────────────── */
nav#main-nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(242, 241, 238, 0.645);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
nav#main-nav.scrolled {
  margin-top:18px;
  height: 75px;
  box-shadow: 0 4px 24px rgba(214, 214, 215, 0);
}
.nav-logo {
  display: flex; align-items: center; gap: 11px;
}
.nav-logo img {
  height: 65px; width: auto;
  transition: var(--transition);

}
nav#main-nav.scrolled .nav-logo img { height: 65px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);

  padding: 8px 14px;
  border-radius: 8px;

  transition: var(--transition);

  position: relative;

  letter-spacing: 0.1px;
}

/* underline base */
.nav-links a::after {
  content: '';

  position: absolute;

  bottom: 4px;
  left: 50%;

  transform: translateX(-50%);

  width: 0;
  height: 2px;

  background: var(--purple);

  transition: width 0.3s ease;
}

/* hover */
.nav-links a:hover {
  color: var(--purple);
  
}

.nav-links a:hover::after {
  width: 28px;
}

/* active */
.nav-links a.active {
  color: var(--purple);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 28px;
}
.nav-cta{
  --x:50%;
  --y:50%;
  --scale:0;

  position:relative;
  overflow:hidden;
  isolation:isolate;

  background:var(--purple);
  color:#ffffff48;   
  border:none;
  padding:12px 24px;
  border-radius:40px;

  font-family:'Outfit',sans-serif;
  font-size:16px;
  font-weight:600;

  cursor:pointer;
  letter-spacing:.2px;

  transition:
    transform .3s ease,
    box-shadow .35s ease,
    color .3s ease;

  box-shadow:0 4px 16px rgba(107,33,168,0.25);
}

.nav-cta span{
  position:relative;
  z-index:3;
}

.nav-cta::before{
  content:'';

  position:absolute;

  left:var(--x);
  top:var(--y);
  width:20px;
  height:20px;

  border-radius:50%;
  background:#fff;
  color: var(--purple);
  transform:
    translate(-50%,-50%)
    scale(var(--scale));

  will-change:transform;

  z-index:-1;

  pointer-events:none;
}

.nav-cta:hover{
  color:var(--purple);
  transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(107,33,168,0.35);
}

/* ── REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── SECTION COMMON */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--purple); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--purple); border-radius: 2px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--text);
  line-height: 1.08; letter-spacing: -0.5px;
}
.section-title .accent { color: var(--purple);  font-style: italic; }
.section-title .gold { color: var(--gold); }
.section-body {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.85; font-weight: 300;
  max-width: 560px; margin-top: 16px;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
section { padding: 40px 60px; }

/* ── BUTTONS  */
.btn{
  --x:20px;
  --y:20px;
  --scale:0;

  position:relative;
  overflow:hidden;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:12px 24px;

  border:1.5px solid rgba(107,33,168,0.35);
  background:transparent;

  color:var(--purple);
  border-radius:999px;

  font-family:'Outfit',sans-serif;
  font-size:14px;
  font-weight:600;

  cursor:pointer;
  isolation:isolate;

  transition:
    color .45s ease,
    border-color .35s ease,
    transform .3s ease;
}

.btn span{
  position:relative;
  z-index:3;
}

.btn::before{
  content:'';

  position:absolute;

  left:var(--x);
  top:var(--y);

  width:20px;
  height:20px;
  
  border-radius:20px;
  background:var(--purple);

  transform:
    translate(-50%,-50%)
    scale(var(--scale));

  will-change:transform;

  z-index:-1;
}

.btn:hover{
  color:#fff;
  border-color:var(--purple);
  transform:translateY(-2px);
}

.btn-arrow::after{
  content:'→';

  position:relative;
  z-index:3;

  font-size:15px;
  transition:transform .3s ease;
}

.btn-arrow:hover::after{
  transform:translateX(4px);
}
.nav-cta-btn{
  color:var(--white);
}

/*  HERO SECTION*/
.hero {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 20px;
  background:
    linear-gradient(
      to right,
      #170e1f 0%,
      rgba(23, 14, 31, 0.98) 18%,
      rgba(23, 14, 31, 0.92) 35%,
      rgba(23, 14, 31, 0.72) 50%,
      rgba(23, 14, 31, 0.35) 68%,
      rgba(23, 14, 31, 0.05) 82%,
      rgba(23, 14, 31, 0) 100%
    ),
    url("../images/hero-banner1.webp");

  background-size: 100% auto;
  background-position: center ;
  background-repeat: no-repeat;

  padding: 0px 40px ;
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(107,33,168,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(182,161,132,0.08) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(168,85,247,0.04) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(107,33,168,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,33,168,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 1; opacity: 0.98;
}
  #hero-canvas,

  .hero-bg-pattern,

  .hero-grid {

    pointer-events: none;

  }
.hero-content {
  position: relative; z-index: 3;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(107, 33, 168, 0); border: 1px solid rgba(107,33,168,0.18);
  border-radius: 100px; padding: 7px 18px;
  font-size: 11px; font-weight: 600;
  color: var(--purple); letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(46px, 4.5vw, 40px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -1.5px; color: var(--text);
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title .h-accent {
  color: var(--purple); font-style: italic;
}
.hero-title .h-gold {
  position: relative; display: inline-block;
}
.hero-title .h-gold::after {
  content: '';
  position: absolute; bottom: 6px; left: 0; right: 0;
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
}
.hero-sub {
  font-size: 17px; color: var(--white); line-height: 1.8;
  font-weight: 300; max-width: 500px; margin-top: 22px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; margin-top: 38px;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-partners-wrap{
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--border);

  animation: fadeUp 1s 0.4s ease both;
}

.hero-partners-title{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.55);

  margin-bottom: 18px;
}

.hero-partners{
  display: flex;
  gap: 80px;
}

.partner-card{
  width: 100px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border-radius: 18px;

  transition: all .35s ease;
}

/* DEFAULT STATE */
.partner-card img{
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;

  opacity: .5;

  /* makes logos white */
  filter: brightness(0) invert(1);

  transition: all .35s ease;
}

/* HOVER STATE */
.partner-card:hover img{
  opacity: 1;

  /* back to original color */
  filter: none;

  transform: scale(1.05);
}

/* ABOUT SECTION */
.about-section {
  padding: 60px 60px 40px;
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.about-visual-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;

}
.about-card{
  background: linear-gradient(135deg, var(--gold-pale), #ede8e0);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  margin-left: 40px;
}

.about-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
 
}
.about-badge-float {
  position: absolute; bottom: 28px; right: 28px;
  background: #744a9d1c;backdrop-filter: blur(10px); color: #fff;
  border-radius: var(--radius-md); padding: 16px 20px;
  z-index: 2; box-shadow: 0 8px 28px rgba(123, 66, 170, 0.3);
}
.about-badge-float .num {
  font-family: 'Outfit', sans-serif;
  font-size: 30px; font-weight: 700; line-height: 1;
}
.about-badge-float .lbl { font-size: 11px; opacity: 0.8; margin-top: 2px; }
.about-text .section-body { max-width: 100%; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.pill {
  background: var(--purple-pale); color: var(--purple);
  border: 1px solid rgba(107,33,168,0.2);
  border-radius: 80px; padding: 4px 17px;
  font-size: 10px; font-weight: 500;
}
.pill.gold { background: var(--gold-pale); color: #7a6040; border-color: rgba(182,161,132,0.4); }


/* WHAT WE DO (two-panel scroll-pin layout)*/

/*  Section shell  */
.whatwedo-section {
  background: var(--white);
  padding: 40px 60px;
  position: relative;
}

/* ── Two-panel grid  */
.whatwedo-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;

}

/*  LEFT sticky column  */
.whatwedo-left {
  position: sticky;
  top: 100px;              /* sits below the nav */
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.whatwedo-desc {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}
.button-wrap{margin-top:-40px;}
.whatwedo-left-footer { margin-top: 8px; }

/* RIGHT card column */
.whatwedo-right {
  display: flex;
  flex-direction: column;
  gap: 80px;
  overflow-x: visible;        /* clips cards while they animate in from x:200 */
}

/*  Service card — reference-image style  */
.svc-card {
  position: relative;
  background: var(--purple-pale);      /* light lavender — closest root var */
  border: 1.5px solid var(--border-p);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* GSAP owns transform + opacity — CSS only touches safe props */
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, opacity;
}

/* Shadow / border hover (always safe — no transform conflict) */
.svc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(120, 78, 144, 0.35);
}

/* Left accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20px; bottom: 20px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(to bottom, var(--purple), var(--gold));
}

/* Ghost card number — watermark top-right */
.svc-card-number {
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 56px; font-weight: 700;
  color: rgba(120, 78, 144, 0.10);
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
}

/* ── Inner content: text left + image right  */
.svc-card-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 0;
  min-height: 200px;
}

/* ── Text column  */
.svc-card-text {
  padding: 32px 28px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.svc-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.svc-card-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-style: italic;
  color: var(--purple);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* Spec list — mimics the reference card rows */
.svc-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-specs li {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
  display: flex;
  gap: 6px;
}
.spec-label {
  font-weight: 600;
  color: var(--text-mid);
  flex-shrink: 0;
  min-width: 90px;
}

/* Learn More link */
.svc-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: 0.1px;
  transition: color 0.2s, gap 0.2s;
}
.svc-learn-more:hover {
  color: var(--gold);
  gap: 8px;
}

/* ── Image column ──────────────────────────────────────── */
.svc-card-img {
  position: relative;
  overflow: hidden;
  /* HVS */
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--bg3);
}
.svc-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}

/* ── After-GSAP hover lift — only when GSAP is NOT active ── */
.whatwedo-section:not([data-gsap-active]) .svc-card:hover {
  transform: translateY(-5px);
}



/* ════════════════════════════════════════════════════════════
   CONTACT STRIPE
════════════════════════════════════════════════════════════ */
.contact-stripe {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #ede8e0 50%, var(--purple-pale) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px 10px;        /* ← no bottom padding; cityscape fills it */
  display: grid;
  grid-template-columns: 1fr 1fr;  /* ← two equal columns */
  gap: 40px;
  align-items: start;          /* ← both columns pin to TOP, above cityscape */
  position: relative;
  overflow: visible;
  height: 520px;
}

/* ── Eyebrow ── */
.cs-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cs-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}
.cs-eyebrow-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.85;
}

/* ── Headline ── */
.contact-stripe-text h2 {
  font-family: 'Outfit', sans-serif;
 font-size: clamp(42px, 5vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.22;
  margin: 30px 0 12px;
}
.contact-stripe-text h2 em {
  color: var(--purple);
  font-style: italic;
}

/* ── Body copy ── */


/* ── Right column: stats + CTAs, pushed to right, clear of cityscape ── */
.cs-right{
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;

  padding-top:60px;

  position:relative;
  z-index:10;
}

.cs-content{
  width:740px;
}

.cs-right-text{
  font-size:18px;
  line-height:2;

  color:var(--text-mid);
  font-weight:300;

  margin:0 0 20px;
}

.cs-actions{
  display:flex;
  justify-content:flex-end;
  margin-right:10px;
}

/* ── Cityscape layers (unchanged) ── */
.cityscape-layers {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 101%;
  height: 100%;
  pointer-events: none;
}

.cityscape-layers .layer{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;

  filter:
    brightness(0)
    saturate(100%)
    invert(7%)
    sepia(42%)
    saturate(2600%)
    hue-rotate(236deg)
    brightness(0.82);
}

.layer.skyline{
  z-index: 1;
  opacity: 0.90;
}

.layer.towers-mid{
  z-index: 2;
  opacity: 0.75;
}

.layer.towers-front{
  z-index: 3;
  opacity: 0.9;
  left: 480px;
}

.layer.towers-fill{
  z-index: 3;
  opacity: 0.9;
  left: -560px;
}

.layer.trees{
  z-index: 4;
  opacity: 1;
}
/*  FOOTER  */
.site-footer{
  position: relative;
  overflow: hidden;
  z-index: 6;
}
#footer-canvas {
  position: absolute;
  
  inset: 0;
  z-index: 0;
  opacity: 0.55; /* slightly softer than hero */
  pointer-events: none;
}

/* bring content above */
.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}
footer {
  position: relative;
  overflow: hidden;
  
  color: var(--white);
  padding: 40px 60px 40px;
}
/* mirrored background */
footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background-color: #160e2c;
   

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: -1;
}
/* ───────────────── TOP ───────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr ;
  grid-template-rows: auto auto;
  gap: 0 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
}



/* ───────────────── BRAND ───────────────── */
.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.footer-brand .f-logo img {
  height: 90px;
  width: auto;
  margin-top:-30px;
}

.footer-brand .f-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.footer-brand > p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 500px;
  color: var(--white); /* FIX: was purple */
  margin-bottom: 22px;
}

/* ───────────────── CONTACT BOX ───────────────── */


/* ───────────────── SOCIALS ───────────────── */
.f-socials{
  display:flex;
  gap:12px;
}

.f-soc{
  --x:50%;
  --y:50%;
  --scale:0;

  position:relative;
  overflow:hidden;
  isolation:isolate;

  width:46px;
  height:46px;

  border:1px solid var(--border);
  border-radius:9px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:transparent;
  color:var(--gold);

  font-size:13px;
  font-weight:600;

  cursor:pointer;

  transition:
    color .35s ease,
    border-color .35s ease,
    transform .3s ease,
    box-shadow .35s ease;

  will-change:transform;
}

.f-soc::before{
  content:'';

  position:absolute;

  left:var(--x);
  top:var(--y);

  width:16px;
  height:16px;

  border-radius:50%;
  background:var(--gold);

  transform:
    translate(-50%,-50%)
    scale(var(--scale));

  z-index:-1;

  pointer-events:none;

  will-change:transform;
}

.f-soc span{
  position:relative;
  z-index:3;
}

.f-soc:hover{
  color:#1f1628;

  transform:translateY(-4px);

  box-shadow:var(--shadow-sm);
}

/* ───────────────── bottom-footer-links ───────────────── */
.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  gap:50px;
}


.footer-col ul li {
  font-size: 13px;
  color: var(--white); 
  margin-bottom: 11px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.footer-col ul li:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-col ul li:hover a {
  color: var(--gold);
}



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

.bottom-footer-links a {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;

  transition: var(--transition);

  display: flex;
  align-items: center;
  gap: 8px;

  position: relative;
}

.bottom-footer-links a::before {
  content: '';

  width: 4px;
  height: 4px;

  border-radius: 50%;
  background: var(--gold);

  flex-shrink: 0;
}

.bottom-footer-links a:hover {
  color: var(--gold);
  padding-left: 0px;
}
/* ───────────────── BOTTOM ───────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  margin-bottom: -22px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #adadad;
}

.footer-status {
  font-size: 12px;
  color: #bebebe;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ───────────────── STATUS DOT ───────────────── */
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}



/* ═══════════════════════════════════════
   MEGA MENU — PURPLE SOIL STYLE
═══════════════════════════════════════ */

.nav-has-dropdown {
  position: relative;
}

/* dropdown */
/* ═══════════════════════════════════════════════════════════
   MEGA DROPDOWN — Card-style redesign (matches design spec)
═══════════════════════════════════════════════════════════ */

.nav-mega-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(18px);
  width: 1100px;

  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(28, 22, 37, 0.14), 0 2px 8px rgba(120,78,144,0.08);
  border: 1.5px solid rgba(182,161,132,0.18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1);
  z-index: 999;
}

/* invisible hover bridge */
.nav-has-dropdown::after {
  content: "";
  position: absolute;
  left: 0; top: 100%;
  width: 100%; height: 35px;
}

/* show */
.nav-has-dropdown:hover .nav-mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* inner wrapper */
.nav-mega-dropdown-inner {
  padding: 28px 28px 0;
  background: #faf9f8;
}

/* ── top grid: 4 equal columns ── */
.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* column */
.mega-col {
  position: relative;
  padding: 0 24px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.mega-col:not(:last-child) {
  border-right: 1.5px solid rgba(182,161,132,0.18);
}

.nav-has-dropdown:hover .mega-col { opacity: 1; transform: translateY(0); }
.nav-has-dropdown:hover .mega-col:nth-child(1) { transition-delay: 0.04s; }
.nav-has-dropdown:hover .mega-col:nth-child(2) { transition-delay: 0.10s; }
.nav-has-dropdown:hover .mega-col:nth-child(3) { transition-delay: 0.16s; }
.nav-has-dropdown:hover .mega-col:nth-child(4) { transition-delay: 0.22s; }

/* ── Column header: icon circle + title ── */
.mega-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}

.mega-heading-icon{
  width:44px;
  height:44px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mega-heading-icon svg{
  width:100%;
  height:100%;
}



.mega-heading span {
  display: flex;
  flex-direction: column;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold) !important;
  line-height: 1.2;
  text-decoration: none;
}



/* active heading */
.mega-active span {
  color: var(--purple) !important;
}

/* ── List items: pill cards with small icon circle ── */
.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-list li {
  margin: 0;
}

.mega-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(120,78,144,0.10);
  color: #3a3055;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.mega-list a:hover {
  background:rgba(120,78,144,0.14);
}

.mega-list a::after {
  display: none; /* remove old underline */
}

.mega-list a:hover {
  background: rgba(120,78,144,0.06);
  border-color: rgba(120,78,144,0.25);
  color: var(--purple);
  transform: translateX(3px);
}



/* Divider between items */
.mega-list li + li a {
  border-top: none;
}

/* ── Footer bar ── */
.mega-footer {
  margin-top: 0;
  padding: 16px 28px;
  border-top: 1.5px solid rgba(182,161,132,0.18);
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mega-footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-footer-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.mega-footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-footer-note {
  color: rgba(58,57,57,0.72);
  font-size: 0.88rem;
}

.mega-footer-note strong {
  color: var(--purple);
  font-weight: 600;
}

.mega-footer-link {
  color: var(--purple);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mega-footer-link:hover {
  transform: translateX(4px);
  opacity: 0.8;
}

/* nav dropdown trigger link */
.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* chevron */
.nav-chevron {
  color: var(--purple);
  transition: transform 0.35s ease;
}

.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
