/* ═══════════════════════════════════════════════
   MOVING GURU — Global Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FDFCF8;
  color: #1A1A18;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lime); color: var(--text); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F7F5F0; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #999; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: 'DM Sans', sans-serif; }

/* ─── CSS VARIABLES ─── */
:root {
  /* ── BRAND PALETTE ──────────────────────────────────────────
     Only four brand colours are used site-wide:
       Green   #B4FF5A   (primary)
       Yellow  #F5FDA6   (secondary)
       Black   #1A1A18   (text only — never a background)
       White   #FFFFFF
     No blue / red / purple / orange anywhere.
     The legacy accent tokens (--coral, --orange, --sky, --mint)
     are kept so existing rules keep working, but they now all
     map onto the brand green/yellow above. */
  --lime: #F5FDA6;        /* brand yellow */
  --lime-dark: #B4FF5A;   /* brand green (overridden to a deeper green in brand-lime.css) */
  --lime-soft: rgba(180, 255, 90, 0.10);
  --bg: #FDFCF8;          /* off-white page background */
  --bg-warm: #F5FDA6;     /* brand yellow */
  --bg-sand: #EDE8DF;     /* neutral sand */
  --text: #1A1A18;        /* black text */
  --text-mid: #6B6B66;    /* neutral grey */
  --text-light: #9A9A94;  /* neutral grey */
  --border: #E5E0D8;      /* neutral border */
  --white: #fff;
  --dark: #1A1A18;        /* black (used for text, not backgrounds) */
  --coral: #B4FF5A;       /* legacy accent → brand green */
  --orange: #F5FDA6;      /* legacy accent → brand yellow */
  --sky: #B4FF5A;         /* legacy accent → brand green */
  --mint: #B4FF5A;        /* legacy accent → brand green */
  --blush: #C4BCB4;       /* neutral taupe */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(229, 224, 216, 0.5);
  transition: all 0.35s ease;
}
.navbar.scrolled {
  padding: 10px 48px;
  background: rgba(253, 252, 248, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}
.nav-logo {
  font-family: 'Unbounded', cursive;
  font-size: 22px; font-weight: 900;
  color: var(--dark); letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-logo em { font-style: normal; color: var(--lime-dark); }
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}
.navbar.scrolled .nav-logo-img { height: 70px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: var(--text-mid); font-size: 13.5px; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-pill);
  transition: all 0.25s; cursor: pointer;
  letter-spacing: 0.2px; border: none; background: none;
  font-family: 'DM Sans', sans-serif;
}
.nav-link:hover { color: var(--text); background: rgba(0, 0, 0, 0.03); }
.nav-link.active { color: var(--lime-dark); background: var(--lime-soft); font-weight: 600; }
.nav-divider { width: 1px; height: 18px; background: var(--border); margin: 0 8px; }
.btn-nav-login {
  color: var(--text); font-size: 13.5px; font-weight: 600;
  padding: 8px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: transparent;
  cursor: pointer; transition: all 0.25s;
}
.btn-nav-login:hover { border-color: var(--text-mid); }
.btn-nav-signup {
  background: var(--coral); color: var(--text); border: none;
  padding: 10px 24px; font-weight: 700; font-size: 13.5px;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: all 0.2s;
}
.btn-nav-signup:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(180, 255, 90, 0.25); }


/* ═══════════════════════════════════════════════
   HOME — Static Banner + Search
   ═══════════════════════════════════════════════ */

/* Banner image (static, height-capped) */
.home-banner {
  position: relative;
  padding-top: 96px;                     /* fixed navbar ko clear karta hai */
  background: var(--bg);
  overflow: hidden;
}
.home-banner-img {
  display: block;
  width: 100%;
  /* height: clamp(280px, 42vh, 460px);     banner ko tall hone se rokta hai */
  object-fit: cover;
  object-position: center;               /* logo clip ho to 'center top' / 'center 30%' kar do */
}

/* Search band (banner ke neeche coloured section) */
.home-search {
  background: linear-gradient(135deg, #B4FF5A 0%, #A6F24D 60%, #8FE03D 100%);         /* brand yellow — green chahiye to #B4FF5A daal do */
  padding: 48px 24px 40px;
}
.home-search-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.home-search-welcome {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.6vw, 15px);   /* chhota text */
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto 10px;
}
.home-search-tagline {
  font-family: 'Unbounded', cursive;
  font-size: clamp(22px, 3.2vw, 34px);   /* bada + bold */
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 22px;
}

/* ─── SEARCH BAR (light theme — coloured band pe baithti hai) ─── */
.search-container { max-width: 660px; margin: 0 auto; width: 100%; }
.search-bar-main {
  display: flex; align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 6px 6px 6px 20px;
  transition: border-color 0.3s, box-shadow 0.3s; position: relative;
  z-index: 2;
}
.search-bar-main:focus-within {
  border-color: var(--lime-dark);
  box-shadow: 0 8px 32px rgba(180, 255, 90, 0.18);
}
.search-icon { color: var(--text-mid); margin-right: 12px; flex-shrink: 0; }
.search-bar-main input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-size: 15px; font-family: 'DM Sans', sans-serif; padding: 13px 0;
  min-width: 0;
}
.search-bar-main input::placeholder { color: var(--text-light); }
.search-btn {
  background: var(--coral); color: var(--text); border: none;
  padding: 13px 28px; font-weight: 700; font-size: 13px;
  border-radius: 18px; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: transform 0.2s; white-space: nowrap; flex-shrink: 0;
}
.search-btn:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(180, 255, 90, 0.3); }

/* Autocomplete */
.search-autocomplete {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14); z-index: 100;
  max-height: 260px; overflow-y: auto; animation: slideDown 0.2s ease;
  text-align: left;
}
.search-autocomplete.show { display: block; }
.autocomplete-item {
  padding: 12px 20px; font-size: 14px; cursor: pointer; transition: background 0.15s;
  display: flex; align-items: center; gap: 10px; color: var(--text);
}
.autocomplete-item:hover { background: var(--bg-warm); }
.autocomplete-item .ac-cat {
  font-size: 11px; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Filter row */
.search-filters {
  display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; justify-content: center;
}
.filter-select-wrap { position: relative; }
.filter-select {
  appearance: none; -webkit-appearance: none;
  background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 36px 10px 14px; font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-mid); font-weight: 500;
  cursor: pointer; transition: border-color 0.3s; min-width: 140px;
}
.filter-select:focus { outline: none; border-color: var(--lime-dark); }
.filter-select option { background: var(--white); color: var(--text); }
.filter-arrow {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--text-light); font-size: 10px;
}


/* ═══════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════ */
.section { padding: 120px 40px; position: relative; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-tag { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.section-tag-line { width: 36px; height: 2px; background: var(--lime-dark); border-radius: 1px; }
.section-tag-text {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--text-light);
}
.section-title {
  font-family: 'Unbounded', cursive;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px; max-width: 680px; color: var(--dark);
}
.section-title span { color: var(--lime-dark); }
.section-desc {
  font-size: 16px; line-height: 1.75; max-width: 500px;
  color: var(--text-mid); margin-bottom: 52px;
}
.bg-warm { background: var(--bg-warm); }
.bg-dark { background: var(--coral); }
.bg-lime { background: var(--lime); }


/* ═══════════════════════════════════════════════
   DISCIPLINES (HOME)
   ═══════════════════════════════════════════════ */
.disc-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.disc-tab {
  padding: 9px 18px; border-radius: var(--radius-pill); cursor: pointer;
  border: 1px solid var(--border); background: var(--white);
  color: var(--text-mid); font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 600; transition: all 0.25s; letter-spacing: 0.2px;
}
.disc-tab.active { border-color: var(--lime-dark); background: var(--lime-soft); color: var(--lime-dark); }
.disc-tab:hover:not(.active) { border-color: var(--text-light); color: var(--text); }
.disc-items { display: flex; flex-wrap: wrap; gap: 10px; min-height: 50px; }
.disc-item {
  padding: 11px 18px; border-radius: 10px; background: var(--white);
  border: 1px solid var(--border); color: var(--text); font-size: 14px; font-weight: 500;
  animation: fadeUp 0.3s ease both; cursor: pointer; transition: all 0.25s;
}
.disc-item:hover { border-color: var(--lime-dark); color: var(--lime-dark); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ═══════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.step-card {
  padding: 36px 28px; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
  cursor: default; display: flex; flex-direction: column;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06); }
.step-num {
  font-family: 'Unbounded', cursive; font-size: 42px; font-weight: 900;
  background: linear-gradient(135deg, #7BC93A, #B4FF5A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 20px;
}
.step-card h3 {
  font-family: 'Unbounded', cursive; font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; flex: 1; }


/* ═══════════════════════════════════════════════
   SWAP SECTION
   ═══════════════════════════════════════════════ */
.swap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.swap-text h2 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 800;
  color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.swap-text h2 span { color: var(--lime-dark); }
.swap-text > p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.swap-option { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.swap-option-icon {
  min-width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.swap-option h4 {
  font-family: 'Unbounded', cursive; font-size: 14px; font-weight: 700;
  color: var(--dark); margin: 0 0 4px;
}
.swap-option p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* Chat mockup */
.chat-mockup {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}
.chat-label {
  font-size: 11px; color: var(--text-light); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px; font-weight: 600;
}
.chat-messages { display: flex; flex-direction: column; gap: 14px; }
.msg-sent { align-self: flex-end; max-width: 80%; }
.msg-sent .bubble { background: var(--coral); border-radius: 16px 16px 4px 16px; padding: 12px 16px; }
.msg-recv { align-self: flex-start; max-width: 80%; }
.msg-recv .bubble { background: var(--bg-warm); border-radius: 16px 16px 16px 4px; padding: 12px 16px; }
.bubble p { font-size: 13px; color: var(--dark); margin: 0; line-height: 1.5; }
.msg-sent .bubble p { color: var(--text); }
.msg-meta { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.msg-sent .msg-meta { text-align: right; }
.chat-input-mock {
  margin-top: 20px; padding: 12px 18px; border-radius: var(--radius-pill);
  background: var(--bg-warm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.chat-input-mock span { font-size: 13px; color: var(--text-light); }


/* ═══════════════════════════════════════════════
   IMAGE BANNER
   ═══════════════════════════════════════════════ */
.image-banner { width: 100%; height: 500px; overflow: hidden; position: relative; }
.image-banner img { width: 100%; height: 100%; object-fit: cover; }
.image-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253, 252, 248, 0) 50%, rgba(253, 252, 248, 1) 100%);
}


/* ═══════════════════════════════════════════════
   PAGE HERO (Sub-pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  position: relative; height: 50vh; min-height: 360px;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: 0 40px 60px; margin-top: 62px;
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(62, 61, 56, 0.15) 0%,
    rgba(62, 61, 56, 0.6) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; width: 100%;
}
.page-hero-content h1 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900; color: #fff; line-height: 1.05;
}
.page-hero-content h1 span { color: var(--coral); }
.page-hero-content p {
    color: #fff;
  font-size: 16px; 
  margin-top: 12px; max-width: 480px; line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 400px; object-fit: contain; }
.about-text h2 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 800;
  color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.about-text h2 span { color: var(--lime-dark); }
.about-text p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }

/* Studio callout */
.studio-callout {
  background: var(--sky); border-radius: var(--radius-lg); padding: 48px;
  color: var(--text); margin-top: 80px;
}
.studio-callout h2 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(22px, 2.8vw, 34px); font-weight: 800;
  color: var(--text); line-height: 1.15; margin-bottom: 20px;
}
.studio-callout p {
  font-size: 15px; color: rgba(26, 26, 24, 0.65);
  line-height: 1.8; max-width: 620px; margin-bottom: 14px;
}
.btn-lime {
  display: inline-block; margin-top: 12px;
  background: var(--lime); color: var(--dark); border: none;
  padding: 14px 36px; font-weight: 700; font-size: 14px;
  font-family: 'DM Sans', sans-serif; border-radius: var(--radius-pill);
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
  transition: transform 0.2s;
}
.btn-lime:hover { transform: scale(1.04); }


/* ═══════════════════════════════════════════════
   COMMUNITY / PROFILES
   ═══════════════════════════════════════════════ */
.profiles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.profile-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
  cursor: default; position: relative; overflow: hidden;
}
.profile-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06); }
.profile-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--orange));
}
.profile-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.profile-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--text);
  font-family: 'Unbounded', cursive;
}
.profile-header h3 {
  font-family: 'Unbounded', cursive; font-size: 15px;
  font-weight: 700; color: var(--dark); margin: 0;
}
.profile-header p { font-size: 12px; color: var(--text-light); margin: 2px 0 0; }
.profile-info { display: flex; flex-direction: column; gap: 8px; }
.info-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.info-label {
  font-size: 11px; color: var(--text-light); text-transform: uppercase;
  letter-spacing: 0.5px; font-weight: 600; white-space: nowrap; min-width: 80px;
}
.info-value { font-size: 13px; color: var(--text); font-weight: 500; text-align: right; }
.profile-btn {
  margin-top: 18px; width: 100%; padding: 11px; border-radius: 12px;
  background: var(--coral); color: var(--text); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s;
}
.profile-btn:hover { background: #8FE03D; }


/* ═══════════════════════════════════════════════
   GROW — EVENTS
   ═══════════════════════════════════════════════ */
.grow-filters {
  display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; align-items: center;
}
.grow-filter-select {
  appearance: none; -webkit-appearance: none;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 36px 10px 14px; font-size: 13px;
  font-family: 'DM Sans', sans-serif; color: var(--text-mid); font-weight: 500;
  cursor: pointer; transition: border-color 0.3s; min-width: 160px;
}
.grow-filter-select:focus { outline: none; border-color: var(--lime-dark); }
.grow-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;
}
.grow-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default; position: relative; overflow: hidden;
}
.grow-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06); }
.grow-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.grow-type {
  padding: 4px 10px; border-radius: 6px; background: rgba(180, 255, 90, 0.18);
  color: var(--text); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.grow-date { font-size: 12px; color: var(--text-light); }
.grow-card h3 {
  font-family: 'Unbounded', cursive; font-size: 16px; font-weight: 700;
  color: var(--dark); margin: 0 0 6px; line-height: 1.3;
}
.grow-location { font-size: 13px; color: var(--text-mid); margin: 0 0 10px; font-weight: 600; }
.grow-card > p { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin: 0 0 18px; }
.grow-card-foot { display: flex; justify-content: space-between; align-items: center; }
.grow-tag { font-size: 11px; color: var(--text-light); font-style: italic; }
.grow-btn {
  background: var(--orange); color: var(--text); border: none;
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; cursor: pointer; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; transition: transform 0.2s;
}
.grow-btn:hover { transform: scale(1.04); }


/* ═══════════════════════════════════════════════
   VALUES / PHILOSOPHY
   ═══════════════════════════════════════════════ */
.values-title {
  font-family: 'Unbounded', cursive;
  font-size: clamp(30px, 4.2vw, 48px); font-weight: 900;
  color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.values-desc {
  font-size: 16px; color: rgba(0, 0, 0, 0.5); line-height: 1.8;
  max-width: 560px; margin: 0 auto 48px;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 28px 16px; }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(180, 255, 90, 0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 {
  font-family: 'Unbounded', cursive; font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: rgba(0, 0, 0, 0.4); line-height: 1.7; }


/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section { text-align: center; }
.cta-section h2 {
  font-family: 'Unbounded', cursive;
  font-size: clamp(34px, 5vw, 60px); font-weight: 900;
  color: var(--text); line-height: 1.05; margin-bottom: 20px;
}
.cta-section h2 span {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--white);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.cta-section p {
  font-size: 16px; color: rgba(26, 26, 24, 0.6);
  line-height: 1.7; max-width: 440px; margin: 0 auto 36px;
}
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-cta-primary {
  background: var(--lime); color: var(--dark); border: none;
  padding: 16px 40px; font-family: 'Unbounded', cursive;
  font-size: 14px; font-weight: 700; border-radius: var(--radius-pill);
  cursor: pointer; text-transform: uppercase; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-primary:hover { transform: scale(1.04); box-shadow: 0 0 36px rgba(245, 252, 166, 0.35); }
.btn-cta-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(26, 26, 24, 0.25);
  padding: 16px 40px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: border-color 0.3s; font-family: 'DM Sans', sans-serif;
}
.btn-cta-outline:hover { border-color: rgba(26, 26, 24, 0.5); }


/* ═══════════════════════════════════════════════
   LOGIN MODAL
   ═══════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.35); backdrop-filter: blur(8px);
  z-index: 2000; align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px;
  max-width: 420px; width: 90%; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.35s ease; position: relative;
}
.modal h2 {
  font-family: 'Unbounded', cursive; font-size: 24px; font-weight: 800;
  color: var(--dark); margin-bottom: 8px;
}
.modal p { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.modal-field { margin-bottom: 16px; }
.modal-field label {
  display: block; font-size: 12px; font-weight: 600; color: var(--text-mid);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.modal-field input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text);
  transition: border-color 0.3s; background: var(--bg);
}
.modal-field input:focus { outline: none; border-color: var(--lime-dark); }
.modal-submit {
  width: 100%; padding: 14px; background: var(--coral); color: var(--text);
  border: none; border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; text-transform: uppercase;
  letter-spacing: 0.5px; margin-top: 8px; transition: transform 0.2s;
}
.modal-submit:hover { transform: scale(1.02); }
.modal-toggle { text-align: center; margin-top: 16px; font-size: 13px; color: var(--text-mid); }
.modal-toggle a { color: var(--lime-dark); font-weight: 600; cursor: pointer; }
.modal-close {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--text-light); padding: 4px; line-height: 1;
}
.modal-close:hover { color: var(--text); }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  padding: 56px 40px 28px; background: var(--bg-warm);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Unbounded', cursive; font-size: 20px;
  font-weight: 900; color: var(--dark);
}
.footer-brand-desc {
  font-size: 13px; color: var(--text-light); line-height: 1.7;
  margin-top: 10px; max-width: 260px;
}
.footer-email { font-size: 13px; color: var(--text-light); margin-top: 6px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--text-mid);
  margin-bottom: 8px; transition: color 0.3s; cursor: pointer;
}
.footer-col a:hover { color: var(--lime-dark); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-light); }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .swap-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar { padding: 12px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links .nav-link { display: none; }
  .nav-divider { display: none; }
  .section { padding: 80px 20px; }
  .grow-grid { grid-template-columns: 1fr; }
  .studio-callout { padding: 32px; }
  .page-hero { padding: 0 20px 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .search-filters { flex-direction: column; align-items: stretch; }
  .filter-select { width: 100%; min-width: 0; }
  .home-banner-img { height: clamp(200px, 38vh, 340px); }
  .home-search { padding: 36px 18px 32px; }
}

/* ═══════════════════════════════════════════════
   GROW LISTING FORM
   ═══════════════════════════════════════════════ */

/* Overlay */
.grow-form-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.grow-form-overlay.show {
  display: flex;
}

/* Modal */
.grow-form-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px 36px;
  max-width: 600px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.35s ease;
  margin: auto 0;
}
.grow-form-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.grow-form-close:hover {
  color: var(--text);
}

/* Header */
.grow-form-header {
  margin-bottom: 32px;
}
.grow-form-header h2 {
  font-family: 'Unbounded', cursive;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.grow-form-header p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Section labels */
.grow-form-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin: 28px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.grow-form-section-label:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Fields */
.grow-form-field {
  margin-bottom: 16px;
}
.grow-form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.grow-form-field input,
.grow-form-field select,
.grow-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.grow-form-field input:focus,
.grow-form-field select:focus,
.grow-form-field textarea:focus {
  outline: none;
  border-color: var(--lime-dark);
}
.grow-form-field input::placeholder,
.grow-form-field textarea::placeholder {
  color: var(--text-light);
}
.grow-form-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%239A9A94' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.grow-form-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Two-column row */
.grow-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* File upload */
.grow-form-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  border: 2px dashed var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  color: var(--text-light);
}
.grow-form-upload-inner:hover,
.grow-form-upload.dragover .grow-form-upload-inner {
  border-color: var(--orange);
  background: rgba(180, 255, 90, 0.06);
}
.grow-form-upload-inner svg {
  stroke: var(--text-light);
}
.grow-form-upload-inner span {
  font-size: 13px;
  font-weight: 500;
}
.grow-form-upload-hint {
  font-size: 11px !important;
  color: var(--text-light) !important;
  font-weight: 400 !important;
}

/* File list */
.grow-form-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.grow-form-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-warm);
  border-radius: 8px;
  font-size: 13px;
}
.grow-form-file-name {
  flex: 1;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grow-form-file-size {
  color: var(--text-light);
  font-size: 11px;
  flex-shrink: 0;
}
.grow-form-file-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.grow-form-file-remove:hover {
  color: var(--text);
}

/* Duration options */
.grow-form-duration-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grow-form-duration {
  cursor: pointer;
}
.grow-form-duration input {
  display: none;
}
.grow-form-duration-card {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
  position: relative;
}
.grow-form-duration:hover .grow-form-duration-card {
  border-color: var(--text-light);
}
.grow-form-duration input:checked + .grow-form-duration-card {
  border-color: var(--coral);
  background: rgba(180, 255, 90, 0.08);
  box-shadow: 0 0 0 1px var(--coral);
}
.grow-form-duration-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.grow-form-duration-price {
  display: block;
  font-family: 'Unbounded', cursive;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}
.grow-form-duration-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Submit button */
.grow-form-submit {
  width: 100%;
  padding: 15px;
  margin-top: 28px;
  background: var(--coral);
  color: var(--text);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, background 0.3s;
}
.grow-form-submit:hover {
  transform: scale(1.02);
}
.grow-form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.grow-form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .grow-form-modal {
    padding: 32px 20px 28px;
  }
  .grow-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .grow-form-duration-options {
    grid-template-columns: 1fr;
  }
  .grow-form-overlay {
    padding: 20px 12px;
  }
}

/* ═══════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  transition: border-color 0.25s;
}
.hamburger:hover { border-color: var(--text-mid); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   DRAWER OVERLAY
   ═══════════════════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1050;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-overlay.show { display: block; }
.drawer-overlay.visible { opacity: 1; }

/* ═══════════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  max-width: 85vw;
  height: 100dvh;
  background: var(--bg);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  transition: right 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 2;
}
.drawer-logo {
  font-family: 'Unbounded', cursive;
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.drawer-logo em { font-style: normal; color: var(--lime-dark); }
.drawer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.drawer-close:hover { border-color: var(--text-mid); color: var(--text); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  flex: 1;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.drawer-link:hover { background: rgba(0,0,0,0.04); color: var(--text); }
.drawer-link.active { background: var(--lime-soft); color: var(--lime-dark); font-weight: 600; }
.drawer-link-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.drawer-link.active .drawer-link-icon { background: var(--lime-soft); }
.drawer-divider { height: 1px; background: var(--border); margin: 8px 12px; }
.drawer-auth {
  padding: 16px 12px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer-btn-login {
  width: 100%; padding: 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text); cursor: pointer;
  transition: border-color 0.25s;
}
.drawer-btn-login:hover { border-color: var(--text-mid); }
.drawer-btn-signup {
  width: 100%; padding: 13px;
  border: none; border-radius: 12px;
  background: var(--coral);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text); cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.drawer-btn-signup:hover { transform: scale(1.02); box-shadow: 0 4px 16px rgba(180, 255, 90, 0.25); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .btn-nav-login, .btn-nav-signup { display: none; }
}