/* GowLife — Homepage Styles */

/* ========== HERO ========== */
.hero {
  padding: 120px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}
.hero .container {
  display: grid;
  gap: 50px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content .lead { margin-bottom: 32px; }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.img-frame {
  border: 1px solid var(--border);
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}
.img-frame:hover { transform: rotate(0deg); }
.img-frame img { border-radius: calc(var(--radius) - 4px); }

@media (min-width: 768px) {
  .hero .container { grid-template-columns: 1.2fr 1fr; }
}

/* ========== MISSION TEASER ========== */
.mission-teaser { padding: 100px 0; }
.mission-teaser .align-center { align-items: center; }

.impact-quote {
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
  border-right: 4px solid var(--brand);
}
.quote-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: serif;
  color: var(--brand);
  opacity: 0.15;
  line-height: 1;
}
.impact-quote p {
  font-size: 1.3rem;
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--ink);
}

@media (max-width: 767px) {
  .mission-teaser .grid-2 { gap: 40px; }
  .impact-quote { padding: 30px; }
  .impact-quote p { font-size: 1.15rem; }
}

/* ========== STEPS (Plan de bataille) ========== */
.steps-section { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.step-card {
  position: relative;
  padding: 32px;
}
.step-num {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 {
  color: var(--brand);
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== MAP ========== */
.map-section {
  margin-top: 3rem;
  text-align: center;
}
.map-section h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.map-intro {
  color: var(--muted);
  margin-bottom: 2rem;
}
.map-container {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: grab;
}
.map-wrapper:active { cursor: grabbing; }
.map-canvas {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius);
}
.map-controls {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.map-btn {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.map-btn:hover {
  background: var(--brand);
  color: #000;
}

@media (max-width: 768px) {
  .map-wrapper { height: 350px; }
}

/* ========== STATS STRIP ========== */
.stats-strip {
  padding: 60px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip .grid-3 { text-align: center; }
.strip-stat {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
}
.strip-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ========== CTA BAND ========== */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(91, 168, 160, 0.08) 0%, rgba(232, 152, 75, 0.05) 100%);
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  margin-bottom: 12px;
}
.cta-band p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ========== PARTNERS SECTION (homepage) ========== */
.partners-home {
  padding: 60px 0;
}
.partners-home .section-title { margin-bottom: 2rem; }
