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

:root {
  --navy: #1F3864;
  --navy-dark: #0d1b2a;
  --navy-mid: #1a3a6b;
  --blue: #1A73E8;
  --green: #34A853;
  --yellow: #F7C948;
  --white: #ffffff;
  --offwhite: #F7F3EE;
  --grey-light: #f0f0f0;
  --grey: #888888;
  --grey-dark: #444444;
  --text: #1a1a2e;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(31,56,100,0.10);
  --shadow-lg: 0 8px 40px rgba(31,56,100,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,56,100,0.08);
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
}
.nav-logo span.uni { color: var(--navy); }
.nav-logo span.life { color: var(--blue); }
.nav-logo span.connect { color: var(--green); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; display: block; line-height: 1; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  position: relative; transform: rotate(-6deg);
}
.nav-logo-icon::after {
  content: '📍'; font-size: 18px; transform: rotate(6deg); display: block;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: var(--grey-dark); transition: all var(--transition);
}
.nav-links a:hover { background: var(--grey-light); color: var(--navy); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all var(--transition); border: none; text-decoration: none; }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1558c0; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,115,232,0.35); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: #f0bc30; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(247,201,72,0.4); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #2d9248; transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex; align-items: center;
  padding-top: 68px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg .circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.18) 0%, transparent 70%);
}
.hero-bg .circle-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg .circle-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(52,168,83,0.15) 0%, transparent 70%); }
.hero-bg .circle-3 { width: 300px; height: 300px; top: 50%; left: 40%; background: radial-gradient(circle, rgba(247,201,72,0.08) 0%, transparent 70%); }
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52,168,83,0.15); border: 1px solid rgba(52,168,83,0.3);
  color: var(--green); padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: white; font-weight: 800; margin-bottom: 20px; line-height: 1.1;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .accent-green { color: var(--green); }
.hero-subtitle {
  color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--yellow); }
.hero-stat .label { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card-main {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  width: 320px; box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-label { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.hero-card-address { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.hero-card-location { font-size: 0.85rem; color: var(--grey); margin-bottom: 16px; display: flex; align-items: center; gap: 4px; }
.hero-card-price { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.hero-card-price span { font-size: 0.8rem; color: var(--grey); font-weight: 400; }
.hero-card-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.badge { padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.badge-green { background: rgba(52,168,83,0.12); color: var(--green); }
.badge-blue { background: rgba(26,115,232,0.12); color: var(--blue); }
.badge-yellow { background: rgba(247,201,72,0.2); color: #a07800; }
.hero-card-btn { width: 100%; text-align: center; justify-content: center; }
.hero-card-float {
  position: absolute; background: white; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.hero-card-float-1 { top: -20px; right: -30px; animation: float 3s ease-in-out infinite 0.5s; }
.hero-card-float-2 { bottom: -20px; left: -30px; animation: float 3.5s ease-in-out infinite 1s; }
.float-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.float-icon-green { background: rgba(52,168,83,0.12); }
.float-icon-blue { background: rgba(26,115,232,0.12); }

/* ── SECTIONS ── */
.section { padding: 90px 0; }
.section-light { background: white; }
.section-offwhite { background: var(--offwhite); }
.section-navy { background: var(--navy-dark); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; background: rgba(26,115,232,0.1); color: var(--blue);
  padding: 5px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 14px; text-transform: uppercase;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.section-title.white { color: white; }
.section-sub { color: var(--grey); font-size: 1.05rem; }
.section-sub.white { color: rgba(255,255,255,0.65); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all var(--transition); border: 2px solid transparent;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px;
}
.icon-navy { background: rgba(31,56,100,0.08); }
.icon-blue { background: rgba(26,115,232,0.1); }
.icon-green { background: rgba(52,168,83,0.1); }
.icon-yellow { background: rgba(247,201,72,0.15); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
.service-link { color: var(--blue); font-weight: 600; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 10px; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(to right, var(--blue), var(--green));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); color: white;
  font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 4px solid var(--offwhite);
  box-shadow: var(--shadow);
}
.step-num.blue { background: var(--blue); }
.step-num.green { background: var(--green); }
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 0.88rem; }

/* ── LISTINGS GRID ── */
.listings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.listing-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.listing-img {
  height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 56px;
  position: relative;
}
.listing-verified {
  position: absolute; top: 12px; right: 12px;
  background: var(--green); color: white; font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; display: flex; align-items: center; gap: 4px;
}
.listing-body { padding: 20px; }
.listing-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.listing-location { color: var(--grey); font-size: 0.82rem; margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.listing-price { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--blue); }
.listing-price span { font-size: 0.75rem; font-weight: 400; color: var(--grey); font-family: 'DM Sans'; }
.listing-meta { display: flex; gap: 8px; margin: 12px 0; flex-wrap: wrap; }
.listing-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--grey-light); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); }
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: 'Syne'; font-weight: 700; color: white; font-size: 1rem;
}
.author-name { font-weight: 600; color: white; font-size: 0.9rem; }
.author-dept { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 60px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(26,115,232,0.2);
}
.cta-banner-text h2 { font-size: 1.8rem; color: white; margin-bottom: 10px; }
.cta-banner-text p { color: rgba(255,255,255,0.65); }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all var(--transition); color: rgba(255,255,255,0.6);
}
.social-link:hover { background: var(--blue); color: white; }
.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── DASHBOARD ── */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; padding-top: 68px; }
.sidebar {
  background: white; border-right: 1px solid rgba(31,56,100,0.08);
  padding: 32px 0; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto;
}
.sidebar-section { margin-bottom: 8px; }
.sidebar-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); padding: 12px 24px 6px; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 24px; font-size: 0.9rem; font-weight: 500; color: var(--grey-dark);
  transition: all var(--transition); cursor: pointer; border-left: 3px solid transparent;
}
.sidebar-link:hover { background: var(--grey-light); color: var(--navy); }
.sidebar-link.active { background: rgba(26,115,232,0.07); color: var(--blue); border-left-color: var(--blue); font-weight: 600; }
.sidebar-link .icon { font-size: 18px; width: 22px; text-align: center; }
.dash-main { background: var(--offwhite); padding: 36px; }
.dash-header { margin-bottom: 32px; }
.dash-header h1 { font-size: 1.7rem; color: var(--navy); margin-bottom: 4px; }
.dash-header p { color: var(--grey); font-size: 0.92rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 32px; }
.dash-stat-card {
  background: white; border-radius: var(--radius); padding: 22px 20px;
  box-shadow: var(--shadow); border-top: 3px solid var(--blue);
}
.dash-stat-card.green { border-top-color: var(--green); }
.dash-stat-card.yellow { border-top-color: var(--yellow); }
.dash-stat-card.navy { border-top-color: var(--navy); }
.dash-stat-num { font-family: 'Syne'; font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.dash-stat-label { font-size: 0.8rem; color: var(--grey); margin-top: 4px; }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.dash-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.dash-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.dash-listing-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--grey-light); }
.dash-listing-item:last-child { border-bottom: none; }
.dash-listing-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,115,232,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dash-listing-info { flex: 1; }
.dash-listing-title { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.dash-listing-sub { font-size: 0.78rem; color: var(--grey); }
.dash-listing-price { font-family: 'Syne'; font-weight: 700; color: var(--blue); font-size: 0.95rem; }
.status-badge { padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
.status-verified { background: rgba(52,168,83,0.12); color: var(--green); }
.status-pending { background: rgba(247,201,72,0.2); color: #a07800; }
.status-available { background: rgba(26,115,232,0.1); color: var(--blue); }

/* ── AUTH PAGES ── */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
  background: var(--navy-dark); display: flex; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.auth-left-content { position: relative; z-index: 2; max-width: 420px; }
.auth-left-bg { position: absolute; inset: 0; }
.auth-left-bg .blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.2) 0%, transparent 70%);
}
.auth-left-bg .blob-1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.auth-left-bg .blob-2 { width: 300px; height: 300px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(52,168,83,0.18) 0%, transparent 70%); }
.auth-left h2 { font-size: 2rem; color: white; margin-bottom: 16px; margin-top: 32px; }
.auth-left p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.auth-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.auth-feature-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.auth-feature-text h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.auth-feature-text p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.auth-right { display: flex; align-items: center; justify-content: center; padding: 60px; background: var(--offwhite); }
.auth-form-box { width: 100%; max-width: 420px; }
.auth-form-box h1 { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.auth-form-box .auth-sub { color: var(--grey); margin-bottom: 32px; font-size: 0.92rem; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0;
  border-radius: var(--radius); font-family: 'DM Sans'; font-size: 0.92rem;
  color: var(--text); background: white; outline: none;
  transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--blue); }
.form-input::placeholder { color: #aaa; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input { margin-top: 3px; accent-color: var(--blue); }
.form-check label { font-size: 0.85rem; color: var(--grey-dark); }
.form-check a { color: var(--blue); font-weight: 600; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #e0e0e0; }
.auth-divider span { font-size: 0.8rem; color: var(--grey); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--grey); }
.auth-switch a { color: var(--blue); font-weight: 600; }
.btn-full { width: 100%; justify-content: center; padding: 13px; font-size: 0.95rem; }

/* ── FORMS ── */
.page-hero {
  background: var(--navy-dark); padding: 120px 0 80px; position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-bg .circle { position: absolute; border-radius: 50%; }
.page-hero-bg .c1 { width: 400px; height: 400px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(26,115,232,0.2) 0%, transparent 70%); }
.page-hero-bg .c2 { width: 300px; height: 300px; bottom: -80px; left: -80px; background: radial-gradient(circle, rgba(52,168,83,0.15) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 520px; }
.form-page { padding: 60px 0; }
.form-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-card h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.form-card .form-card-sub { color: var(--grey); font-size: 0.9rem; margin-bottom: 28px; }
.form-section-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin: 24px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--grey-light); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 100px; }

/* ── TUTOR CARDS ── */
.tutors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tutor-card {
  background: white; border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow); transition: all var(--transition); text-align: center;
}
.tutor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tutor-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne'; font-weight: 800; color: white; font-size: 1.4rem;
}
.tutor-name { font-family: 'Syne'; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.tutor-subject { color: var(--blue); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.tutor-rating { color: var(--yellow); font-size: 0.85rem; margin-bottom: 14px; }
.tutor-rating span { color: var(--grey); }
.tutor-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.tutor-price { font-family: 'Syne'; font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.tutor-price span { font-size: 0.78rem; color: var(--grey); font-weight: 400; font-family: 'DM Sans'; }

/* ── MARKETPLACE ── */
.market-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.market-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.market-img { height: 150px; background: linear-gradient(135deg, #f0f4ff, #e8f4fd); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.market-body { padding: 14px; }
.market-title { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.market-seller { font-size: 0.78rem; color: var(--grey); margin-bottom: 8px; }
.market-price { font-family: 'Syne'; font-weight: 800; color: var(--blue); font-size: 1.05rem; }
.market-footer { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-top: 1px solid var(--grey-light); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-info-card h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.contact-info-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,115,232,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-text h4 { font-weight: 600; color: var(--navy); font-size: 0.9rem; margin-bottom: 3px; }
.contact-item-text p { font-size: 0.85rem; color: var(--grey); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--navy); color: white; padding: 14px 20px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; max-width: 340px;
  transform: translateY(80px); opacity: 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.1rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  max-width: 480px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: scale(0.95) translateY(20px); transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.2rem; color: var(--navy); }
.modal-close { width: 32px; height: 32px; border-radius: 8px; background: var(--grey-light); border: none; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.modal-close:hover { background: #e0e0e0; }

/* ── SEARCH BAR ── */
.search-bar {
  background: white; border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; gap: 12px; align-items: center; box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.search-field { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 140px; }
.search-field label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey); }
.search-field input, .search-field select {
  border: none; outline: none; font-family: 'DM Sans'; font-size: 0.9rem; color: var(--text);
  background: transparent; cursor: pointer;
}
.search-divider { width: 1px; height: 36px; background: #e0e0e0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid, .listings-grid, .tutors-grid { grid-template-columns: repeat(2,1fr); }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid, .listings-grid, .tutors-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
