@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;
  --primary: 150 85% 22%;
  --primary-foreground: 0 0% 100%;
  --secondary: 210 20% 96%;
  --secondary-foreground: 0 0% 10%;
  --muted: 210 20% 95%;
  --muted-foreground: 0 0% 45%;
  --accent: 45 85% 52%;
  --accent-foreground: 0 0% 10%;
  --destructive: 0 84% 60%;
  --border: 210 15% 85%;
  --input: 210 15% 90%;
  --ring: 150 85% 22%;
  --radius: 0.5rem;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

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

body {
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 80% 32%) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 101, 51, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 101, 51, 0.4);
}

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

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

.btn-dark {
  background: hsl(0 0% 8%);
  color: white;
}

.btn-dark:hover {
  background: hsl(0 0% 15%);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(var(--border));
  z-index: 100;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

.navbar-logo svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: hsl(var(--primary));
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Coming Soon Badge — navbar */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, rgba(13, 92, 46, 0.08) 0%, rgba(26, 138, 80, 0.12) 100%);
  border: 1.5px solid rgba(13, 92, 46, 0.25);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13, 92, 46, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(13, 92, 46, 0); }
}

/* Coming Soon Pill — CTA section ve kart içi */
.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.type-card .coming-soon-pill {
  background: rgba(13, 92, 46, 0.08);
  border-color: rgba(13, 92, 46, 0.25);
  color: hsl(var(--primary));
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg { width: 24px; height: 24px; }

/* Hero */
.hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 90% 15%) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  transform: rotate(-12deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: hsl(var(--background));
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, #f5a623 0%, #f7b733 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Features */
.features {
  padding: 2rem 0 5rem;
  margin-top: -4rem;
  position: relative;
  z-index: 20;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: hsl(var(--primary), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: hsl(var(--primary));
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: hsl(var(--secondary));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: hsl(var(--primary));
  border-radius: 20px;
  opacity: 0.1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

/* CTA */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 90% 15%) 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: hsl(0 0% 8%);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-brand svg {
  width: 36px;
  height: 36px;
  color: hsl(150 80% 32%);
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-title {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  margin-bottom: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: hsl(150 80% 32%);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Page Header */
.page-header {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 90% 15%) 100%);
}

.page-header h1 {
  font-size: 3rem;
  color: white;
}

.page-header .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.page-content {
  padding: 4rem 0;
  max-width: 900px;
  margin: 0 auto;
}

/* Mission Cards */
.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.mission-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(var(--border));
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

/* Leadership */
.leadership { text-align: center; margin-top: 4rem; }
.leadership h3 { font-size: 2rem; margin-bottom: 2.5rem; }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.leader-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-name { font-size: 1.125rem; font-weight: 600; }
.leader-role { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active { display: flex; }
.mobile-nav a { font-size: 1.0625rem; font-weight: 500; padding: 0.75rem 0; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active { display: flex; }

.modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  background: none;
  border: none;
}

.modal-close:hover { color: hsl(var(--foreground)); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid hsl(var(--border));
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary), 0.1);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.contact-card { display: flex; gap: 1rem; margin-bottom: 1.75rem; }

.contact-icon {
  width: 52px;
  height: 52px;
  background: hsl(var(--primary), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 24px; height: 24px; color: hsl(var(--primary)); }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-card p { color: hsl(var(--muted-foreground)); font-size: 0.9375rem; }

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 { margin-bottom: 1.5rem; color: hsl(var(--primary)); }

.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--muted)) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Events */
.events-section { margin-bottom: 3rem; }
.events-grid { display: grid; gap: 1.5rem; }

.event-card {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.event-card.past { opacity: 0.65; }

.event-date {
  width: 85px;
  text-align: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 80% 32%) 100%);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  color: white;
}

.event-day { display: block; font-size: 1.75rem; font-weight: 700; line-height: 1; }
.event-month { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; opacity: 0.9; }

.event-details { flex: 1; }

.event-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.event-details h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.event-details p { color: hsl(var(--muted-foreground)); font-size: 0.9375rem; margin-bottom: 1rem; }

.event-meta { display: flex; gap: 1.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.event-meta span { display: flex; align-items: center; gap: 0.5rem; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 5rem; }

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--border));
}

.benefit-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.benefit-icon {
  width: 64px;
  height: 64px;
  background: hsl(var(--primary), 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.benefit-icon svg { width: 30px; height: 30px; color: hsl(var(--primary)); }
.benefit-card h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.benefit-card p { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); }

/* Membership Types */
.membership-types { margin-top: 4rem; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.type-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.type-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.type-card.featured { border: 2px solid hsl(var(--primary)); transform: scale(1.05); }

.type-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 80% 32%) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.type-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }

.type-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  margin-bottom: 1.25rem;
}

.type-price span { font-size: 1rem; font-weight: 500; color: hsl(var(--muted-foreground)); }

.type-card ul { text-align: left; margin-bottom: 1.5rem; }
.type-card li { padding: 0.625rem 0; border-bottom: 1px solid hsl(var(--border)); font-size: 0.9375rem; }
.type-card li::before { content: '✓'; color: hsl(var(--primary)); margin-right: 0.625rem; font-weight: 700; }

/* FAQ */
.faq-section { margin-top: 5rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.faq-item {
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 { font-size: 1rem; margin-bottom: 0.625rem; }
.faq-item p { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); }

/* Responsive */
@media (max-width: 1024px) {
  .features-grid, .benefits-grid, .types-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission-cards { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .event-card { flex-direction: column; }
  .event-date { width: 100%; display: flex; align-items: center; gap: 0.75rem; padding: 1rem; }
  .event-day { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dash-card {
  background: white;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid hsl(var(--border));
}

.dash-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dash-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.dash-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.dash-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.dash-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 12px;
}

.user-info {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  background: hsl(var(--secondary));
  border-radius: 8px;
}

/* Announcements */
.announcement-list {
  display: grid;
  gap: 1rem;
}

.announcement-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  border: 1px solid hsl(var(--border));
}

.announcement-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  white-space: nowrap;
}

.announcement-content h3 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.announcement-content p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Event List Mini */
.event-list-mini {
  display: grid;
  gap: 1rem;
}

.event-mini {
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

.event-mini-date {
  width: 56px;
  height: 56px;
  background: hsl(var(--primary));
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.event-mini-date span {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

.event-mini-date small {
  font-size: 0.6875rem;
  text-transform: uppercase;
}

.event-mini-info {
  flex: 1;
}

.event-mini-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.event-mini-info p {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: hsl(var(--primary));
}

.stat-label {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 1024px) {
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .announcement-item { flex-direction: column; gap: 0.5rem; }
  .event-mini { flex-direction: column; text-align: center; }
}

/* --- Interaction Helpers --- */
[contenteditable=true]:empty:before {
  content: attr(data-placeholder);
  color: #8a8d91;
  pointer-events: none;
  display: block;
}

.btn-text {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.2s;
}

.btn-text:hover {
  background: rgba(0,0,0,0.05);
}

.comment-actions {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

.comment-actions span:hover {
  text-decoration: underline;
  cursor: pointer;
}


/* --- Facebook-Style Profile Components --- */

.profile-container {
  max-width: 1100px;
  margin: 0 auto;
  background: hsl(var(--background));
}

.profile-header {
  background: white;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}

.profile-cover {
  height: 350px;
  width: 100%;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(150 90% 15%) 100%);
  position: relative;
  cursor: pointer;
}

.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-cover-edit {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.profile-avatar-bar {
  padding: 0 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.profile-avatar-wrapper {
  width: 168px;
  height: 168px;
  background: white;
  border-radius: 50%;
  padding: 4px;
  position: relative;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid hsl(var(--border));
}

.profile-avatar-edit {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: hsl(var(--secondary));
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 1px solid hsl(var(--border));
}

.profile-info {
  flex: 1;
  padding-bottom: 0.5rem;
}

.profile-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.profile-headline {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  font-weight: 500;
}

.profile-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.profile-nav {
  display: flex;
  padding: 0.25rem 1.5rem;
  gap: 0.5rem;
}

.profile-nav-item {
  padding: 1rem 1rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.profile-nav-item:hover {
  background: hsl(var(--secondary));
}

.profile-nav-item.active {
  color: hsl(var(--primary));
}

.profile-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 3px 3px 0 0;
}

/* Profile Layout */
.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.intro-icon {
  font-size: 1.25rem;
  width: 24px;
}

/* Feed */
.create-post {
  margin-bottom: 1.5rem;
}

.post-input-area {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.post-input-trigger {
  flex: 1;
  background: hsl(var(--secondary));
  padding: 0.75rem 1.25rem;
  border-radius: 24px;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: background 0.2s;
}

.post-input-trigger:hover {
  background: hsl(var(--muted));
}

.feed-item {
  margin-bottom: 1.5rem;
}

.post-header {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.post-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.post-time {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.post-content {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.post-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-height: 500px;
  object-fit: cover;
}

.post-stats {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.post-actions {
  display: flex;
  padding-top: 0.25rem;
}

.post-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  transition: background 0.2s;
}

.post-action-btn:hover {
  background: hsl(var(--secondary));
}

/* Friend Grid */
.friend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.friend-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.friend-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.friend-name {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Profile */
@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-cover {
    height: 250px;
  }
  .profile-avatar-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -60px;
  }
  .profile-actions {
    justify-content: center;
  }
}

/* --- Production & Mobile Enhancements --- */
@media (max-width: 992px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-cover { height: 200px !important; }
  .profile-avatar-bar { 
    flex-direction: column !important; 
    align-items: center !important; 
    text-align: center !important; 
    margin-top: -60px !important;
    padding: 0 1rem 1.5rem !important;
  }
  .profile-actions { width: 100% !important; justify-content: center !important; margin-top: 1rem !important; }
  .profile-nav { overflow-x: auto; white-space: nowrap; padding: 0 1rem; }
}

@media (max-width: 640px) {
  .card { border-radius: 0 !important; margin-left: -1rem; margin-right: -1rem; border-left: none; border-right: none; }
  .profile-name { font-size: 1.5rem !important; }
  .navbar-logo span { display: none; }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden; /* Hidden by default */
}

.mobile-nav.active { 
  right: 0; 
  visibility: visible;
}

@media (max-width: 1024px) {
  .mobile-menu-btn { display: block; }
  .nav-links { display: none; }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
/* Enhanced Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px -10px rgba(0, 101, 51, 0.15);
  border: 1px solid rgba(0, 101, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(150 80% 32%) 100%);
}

.contact-form-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.contact-form-wrapper > p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-input-group {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  color: hsl(var(--foreground));
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: hsl(var(--secondary));
  border: 1px solid transparent;
  padding: 0.875rem 1.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: white;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 4px rgba(0, 101, 51, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aab2;
}

.contact-info-enhanced {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.contact-card-enhanced {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.contact-card-enhanced:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 101, 51, 0.2);
}

.contact-card-enhanced .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 101, 51, 0.1) 0%, rgba(0, 150, 80, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.contact-card-enhanced .content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
}

.contact-card-enhanced .content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-card-enhanced .content a {
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-card-enhanced .content a:hover {
  opacity: 0.8;
}


@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  .contact-info-enhanced {
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .contact-card-enhanced {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
