/* ======================================
   Tawhid Housing — Static Site Styles
   ====================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --background: hsl(0, 0%, 99%);
  --foreground: hsl(215, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 50%, 15%);
  --primary: hsl(145, 55%, 36%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(215, 50%, 18%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(150, 10%, 95%);
  --muted-foreground: hsl(215, 25%, 38%);
  --accent: hsl(145, 40%, 93%);
  --accent-foreground: hsl(145, 55%, 25%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(215, 20%, 90%);
  --input: hsl(215, 20%, 90%);
  --ring: hsl(145, 55%, 36%);
  --radius: 0.75rem;
  --primary-glow: hsl(145, 60%, 45%);
  --gradient-primary: linear-gradient(135deg, hsl(145, 55%, 36%), hsl(145, 60%, 45%));
  --shadow-elegant: 0 10px 40px -12px hsla(145, 55%, 36%, 0.25);
  --shadow-card: 0 4px 24px -4px hsla(215, 50%, 15%, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ---------- Typography ---------- */
.font-heading { font-family: 'Playfair Display', serif; }
.text-gradient {
  background-image: linear-gradient(135deg, hsl(145, 55%, 36%), hsl(145, 60%, 48%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-weight: 600; border-radius: 9999px; cursor: pointer;
  transition: all 0.3s ease; border: none; font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: var(--primary-foreground);
  box-shadow: 0 4px 14px -3px hsla(145, 55%, 36%, 0.4);
  padding: 0.875rem 2rem; font-size: 1rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -4px hsla(145, 55%, 36%, 0.5); }
.btn-white {
  background: white; color: var(--secondary); font-weight: 700;
  padding: 0.875rem 2rem; font-size: 1rem;
  box-shadow: 0 4px 14px -3px rgba(0,0,0,0.15);
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--foreground);
  border: 1px solid var(--border); padding: 0.5rem 1.25rem; font-size: 0.875rem;
}
.btn-outline:hover { background: var(--muted); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.375rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; overflow: hidden;
  transition: all 0.5s ease;
}
.card:hover { box-shadow: 0 12px 40px -10px rgba(0,0,0,0.12); transform: translateY(-4px); }
.card-body { padding: 2rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500;
}
.badge-primary { background: var(--primary); color: var(--primary-foreground); }
.badge-accent { background: var(--accent); color: var(--accent-foreground); }
.badge-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }

/* ---------- Form Elements ---------- */
.input, .textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--input); border-radius: var(--radius);
  background: var(--background); color: var(--foreground);
  font-family: inherit; font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus, .textarea:focus {
  outline: none; border-color: var(--ring);
  box-shadow: 0 0 0 3px hsla(145, 55%, 36%, 0.15);
}
.input-lg { height: 3.5rem; font-size: 1.125rem; }
.textarea { resize: vertical; min-height: 100px; }
label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }

/* ---------- Navbar ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
}
.site-header.transparent { background: transparent; border-bottom: 1px solid transparent; }
.site-header.scrolled {
  background: hsla(0, 0%, 99%, 0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; padding: 0 1rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }
.nav-brand { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.light { color: rgba(255,255,255,0.8); }
.nav-link.light:hover, .nav-link.light.active { color: white; }
.mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; background: none; border: none;
  cursor: pointer; padding: 0;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 4rem; z-index: 40;
  background: var(--background); padding: 2rem 1rem;
  flex-direction: column; gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-link {
  display: block; padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; color: var(--foreground);
  transition: all 0.3s;
}
.mobile-link:hover, .mobile-link.active { background: var(--accent); color: var(--primary); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 2s ease-out;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(215,50%,18%,0.8), hsla(215,50%,18%,0.6), hsla(215,50%,18%,0.9));
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(48px);
  background: hsla(145,55%,36%,0.1); animation: float 4s ease-in-out infinite;
}
.hero-content {
  position: relative; z-index: 10; text-align: center; color: white;
  padding: 4rem 1rem 0;
}
.hero-content h1 {
  font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif;
  line-height: 1.4;
}
@media (min-width: 640px) { .hero-content h1 { font-size: 2.5rem; } }
@media (min-width: 768px) { .hero-content h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-content h1 { font-size: 4.5rem; } }
.hero-underline {
  display: block; height: 4px; border-radius: 9999px;
  background: linear-gradient(to right, var(--primary), hsla(145,55%,36%,0.6));
  width: 0; transition: width 1s ease-out 1s;
}
.loaded .hero-underline { width: 100%; }
.hero-subtitle {
  font-size: 1rem; opacity: 0.8; max-width: 640px; margin: 0 auto;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-top: 2rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 1.5rem; height: 2.5rem; border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: flex-start; justify-content: center; padding-top: 0.5rem;
}
.scroll-dot { width: 6px; height: 12px; border-radius: 9999px; background: rgba(255,255,255,0.6); animation: fade-in-up 1.5s ease-in-out infinite; }

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  position: relative; padding: 8rem 0 6rem;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) { .page-hero { padding: 10rem 0 7rem; } }
.page-hero .hero-bg { transform: scale(1.05); }
.page-hero-content {
  position: relative; z-index: 10; text-align: center; color: white;
}
.page-hero-content h1 {
  font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif;
}
@media (min-width: 640px) { .page-hero-content h1 { font-size: 2.5rem; } }
@media (min-width: 768px) { .page-hero-content h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-hero-content h1 { font-size: 3.75rem; } }
.page-hero-content .subtitle {
  font-size: 0.875rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 1rem;
}
@media (min-width: 768px) { .page-hero-content .subtitle { font-size: 1.125rem; } }
.divider {
  width: 5rem; height: 6px; border-radius: 9999px; margin: 1.5rem auto 0;
  background: linear-gradient(to right, var(--primary), hsla(145,55%,36%,0.5));
}

/* ---------- Sections ---------- */
.section { padding: 7rem 0; position: relative; overflow: hidden; }
.section-muted { background: var(--muted); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  color: var(--primary); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.15em; font-size: 0.875rem; margin-bottom: 0.75rem;
}
.section-title {
  font-size: 2.25rem; font-weight: 700; font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }
.section-desc {
  color: var(--muted-foreground); font-size: 1.125rem; max-width: 768px;
  margin: 0 auto; line-height: 1.8;
}
@media (min-width: 768px) { .section-desc { font-size: 1.25rem; } }

/* ---------- Grid Helpers ---------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Icon Box ---------- */
.icon-box {
  width: 4rem; height: 4rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); transition: all 0.5s;
}
.icon-box svg { width: 2rem; height: 2rem; color: var(--primary); transition: color 0.5s; }
.card:hover .icon-box, .group:hover .icon-box { background: var(--primary); transform: scale(1.1); }
.card:hover .icon-box svg, .group:hover .icon-box svg { color: var(--primary-foreground); }

/* ---------- Stats ---------- */
.stat-card {
  text-align: center; padding: 2rem; border-radius: 1rem;
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
}
.stat-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); }
.stat-value {
  font-size: 3rem; font-weight: 700; font-family: 'Playfair Display', serif;
  margin: 0.5rem 0;
}
.stat-label { color: var(--muted-foreground); font-size: 1.125rem; }

/* ---------- Video Section ---------- */
.video-section { position: relative; overflow: hidden; }
.video-container {
  position: relative; width: 100%; aspect-ratio: 16/9;
  min-height: 480px; max-height: 800px; cursor: pointer;
}
.video-thumbnail {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s;
}
.video-container:hover .video-thumbnail { transform: scale(1.05); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(215,50%,18%,0.6), hsla(215,50%,18%,0.4), hsla(215,50%,18%,0.7));
  transition: all 0.5s;
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 10; background: none; border: none; cursor: pointer;
}
.play-circle {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: hsla(145,55%,36%,0.9); display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 0 40px hsla(145,55%,36%,0.3);
  transition: all 0.5s;
}
@media (min-width: 768px) { .play-circle { width: 6rem; height: 6rem; } }
.play-circle:hover { background: var(--primary); box-shadow: 0 0 60px hsla(145,55%,36%,0.4); }
.play-circle svg { width: 2rem; height: 2rem; color: white; margin-left: 4px; }
@media (min-width: 768px) { .play-circle svg { width: 2.5rem; height: 2.5rem; } }
.video-embed {
  position: absolute; inset: 0; background: black;
}
.video-embed iframe { width: 100%; height: 100%; border: none; }
.video-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; color: white; z-index: 20;
  transition: all 0.3s;
}
.video-close:hover { background: rgba(0,0,0,0.8); }
.video-close svg { width: 1.25rem; height: 1.25rem; }
.video-text {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 0.875rem; z-index: 10;
}

/* ---------- Investment Calculator ---------- */
.calculator-card {
  max-width: 36rem; margin: 0 auto;
  border-radius: 1.5rem; box-shadow: var(--shadow-elegant);
}
.calculator-card .card-body { padding: 2.5rem; }
.calc-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.calc-result {
  padding: 1.5rem; background: var(--accent); border-radius: 1rem;
  margin-top: 1rem;
}
.calc-row { display: flex; justify-content: space-between; align-items: center; }
.calc-row + .calc-row { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.calc-label { color: var(--muted-foreground); font-size: 1.125rem; }
.calc-value { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.calc-value-secondary { font-size: 1.25rem; font-weight: 600; color: var(--secondary); }
.calc-disclaimer { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-top: 1rem; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.map-frame {
  border-radius: 1rem; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.1);
  height: 20rem;
}
@media (min-width: 1024px) { .map-frame { height: 24rem; } }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-person {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); transition: all 0.3s;
}
.contact-person:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.contact-person .info { flex: 1; }
.contact-person .name { font-weight: 500; font-size: 1.125rem; }
.contact-person .phone { color: var(--muted-foreground); }

/* ---------- Gallery ---------- */
.gallery-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform 0.7s;
}
.card:hover .gallery-img { transform: scale(1.1); }
.gallery-category {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: hsla(0,0%,99%,0.9); backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500;
}

/* ---------- Projects ---------- */
.project-image-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.project-image-wrap img { transition: transform 0.7s; }
.card:hover .project-image-wrap img { transform: scale(1.1); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.project-status { position: absolute; top: 0.75rem; right: 0.75rem; }
.project-meta { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 0.75rem; }
.project-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.project-footer .plots { font-size: 0.875rem; font-weight: 500; color: var(--primary); }

/* ---------- Footer ---------- */
.site-footer { background: var(--secondary); color: white; padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { font-size: 1.875rem; font-weight: 700; font-family: 'Playfair Display', serif; margin-bottom: 1rem; }
.footer-brand .highlight { color: var(--primary); }
.footer-desc { color: rgba(255,255,255,0.7); }
.footer-heading { font-weight: 600; font-size: 1.125rem; font-family: 'Playfair Display', serif; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-link:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; color: rgba(255,255,255,0.7); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; transition: all 0.3s;
}
.social-icon:hover { background: var(--primary); }
.social-icon svg { width: 1.25rem; height: 1.25rem; color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem; padding-top: 2rem;
  text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.5);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--primary); color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px hsla(145,55%,36%,0.4);
  transition: transform 0.3s; animation: glow-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 2rem; height: 2rem; }

/* ---------- Scroll Reveal ---------- */
.scroll-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Animations ---------- */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px hsla(145,55%,36%,0.2); }
  50% { box-shadow: 0 0 40px hsla(145,55%,36%,0.4); }
}
.animate-fade-in-up { animation: fade-in-up 0.7s ease-out forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-white { color: white; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.leading-relaxed { line-height: 1.75; }
.tracking-widest { letter-spacing: 0.15em; }
.uppercase { text-transform: uppercase; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.inline-block { display: inline-block; }
.block { display: block; }
.rounded-xl { border-radius: var(--radius); }
.rounded-2xl { border-radius: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.group { position: relative; }
