/* =====================================================
   Hope For Tomorrow - Main Stylesheet
   Purple Brand Identity | Modern & Clean Design
   ===================================================== */

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

:root {
  --purple-deep:    #3B1A6E;
  --purple-primary: #5B2D9E;
  --purple-mid:     #7B4BC0;
  --purple-light:   #A47FD8;
  --purple-pale:    #EDE6F8;
  --purple-tint:    #F7F3FD;
  --gold:           #E8A83E;
  --gold-light:     #FDF4E3;
  --white:          #FFFFFF;
  --off-white:      #FAFAF9;
  --gray-100:       #F5F5F5;
  --gray-200:       #E8E8E8;
  --gray-400:       #AAAAAA;
  --gray-600:       #666666;
  --gray-800:       #333333;
  --dark:           #1A0A30;
  --text-main:      #2A1A4A;
  --text-body:      #4A4060;
  --text-muted:     #8070A0;
  --shadow-sm:  0 2px 8px rgba(91,45,158,0.08);
  --shadow-md:  0 6px 24px rgba(91,45,158,0.14);
  --shadow-lg:  0 16px 48px rgba(91,45,158,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--purple-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--purple-mid); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-main);
  line-height: 1.25;
}

/* ---- Utility Classes ---- */
.text-purple { color: var(--purple-primary) !important; }
.bg-purple   { background: var(--purple-primary) !important; }
.text-gold   { color: var(--gold) !important; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-mid);
  background: var(--purple-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-primary), var(--purple-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ---- Buttons ---- */
.btn-hft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-hft-primary {
  background: var(--purple-primary);
  color: var(--white);
  border-color: var(--purple-primary);
}
.btn-hft-primary:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,45,158,0.35);
}

.btn-hft-outline {
  background: transparent;
  color: var(--purple-primary);
  border-color: var(--purple-primary);
}
.btn-hft-outline:hover {
  background: var(--purple-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hft-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-hft-gold:hover {
  background: #c9891a;
  border-color: #c9891a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,62,0.35);
}

.btn-hft-white {
  background: var(--white);
  color: var(--purple-primary);
  border-color: var(--white);
}
.btn-hft-white:hover {
  background: var(--purple-pale);
  color: var(--purple-deep);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.navbar-hft {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar-hft.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-hft .nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-hft .brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255,255,255,0.3));
}

.navbar-hft .brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.navbar-hft.scrolled .brand-name {
  color: var(--purple-deep);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.navbar-hft.scrolled .nav-links a {
  color: var(--text-body);
}

.navbar-hft.scrolled .nav-links a:hover,
.navbar-hft.scrolled .nav-links a.active {
  color: var(--purple-primary);
  background: var(--purple-tint);
}

.nav-donate-btn {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-donate-btn:hover {
  background: #c9891a !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-hft.scrolled .nav-toggle span { background: var(--purple-deep); }

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 50%, var(--purple-mid) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="80" r="30" fill="rgba(255,255,255,0.03)"/></svg>') center/cover;
  pointer-events: none;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator i { font-size: 1.2rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Impact Stats Bar ---- */
.stats-bar {
  background: var(--purple-deep);
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---- Section Padding ---- */
.section-lg { padding: 100px 0; }
.section-md { padding: 70px 0; }
.section-sm { padding: 48px 0; }

/* ---- About Preview ---- */
.about-preview {
  background: var(--off-white);
}

.about-image-stack {
  position: relative;
  padding: 20px 20px 20px 0;
}

.about-image-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ---- Programs ---- */
.programs-section { background: var(--white); }

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  height: 100%;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.program-icon {
  width: 64px;
  height: 64px;
  background: var(--purple-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--purple-primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.program-card:hover .program-icon {
  background: var(--purple-primary);
  color: var(--white);
}

.program-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

.program-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Videos ---- */
.videos-section { background: var(--purple-tint); }

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

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

.video-thumbnail {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumbnail img { transform: scale(1.05); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--purple-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.video-card:hover .video-play-btn {
  background: var(--purple-primary);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.video-info { padding: 20px; }

.video-info h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- News Cards ---- */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-light); }

.news-card-image {
  height: 220px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.news-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.news-card-body a.read-more {
  color: var(--purple-primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-body a.read-more:hover { gap: 10px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
}

/* ---- Team Cards ---- */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.team-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--purple-pale);
  transition: var(--transition);
}

.team-card:hover .team-photo-wrap { border-color: var(--purple-primary); }

.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.team-card .team-role {
  font-size: 0.85rem;
  color: var(--purple-mid);
  font-weight: 600;
}

/* ---- Page Hero ---- */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="160" cy="40" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="160" r="60" fill="rgba(255,255,255,0.04)"/></svg>') center/cover;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Forms ---- */
.form-hft .form-control,
.form-hft .form-select {
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-body);
  transition: var(--transition);
  background: var(--white);
}

.form-hft .form-control:focus,
.form-hft .form-select:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px rgba(91,45,158,0.12);
  outline: none;
}

.form-hft label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 6px;
  display: block;
}

/* ---- Donate Section ---- */
.donate-option-btn {
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: var(--transition);
  width: 100%;
}

.donate-option-btn.active,
.donate-option-btn:hover {
  border-color: var(--purple-primary);
  background: var(--purple-pale);
  color: var(--purple-primary);
}

/* ---- Footer ---- */
footer.site-footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-brand .brand-name-footer {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 340px; }

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--purple-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--purple-light);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--purple-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.newsletter-input-group {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 11px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { outline: none; border-color: var(--purple-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Video Modal ---- */
.video-modal .modal-content {
  background: #000;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-modal .modal-body { padding: 0; }

.video-modal .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 8px;
  opacity: 1;
}

.video-embed {
  position: relative;
  padding-top: 56.25%;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  columns: 3;
  gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: var(--transition);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(91,45,158,0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* ---- Page Breadcrumb ---- */
.breadcrumb-hft {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  justify-content: center;
  margin-top: 16px;
}

.breadcrumb-hft a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-hft a:hover { color: var(--white); }
.breadcrumb-hft .sep { opacity: 0.4; }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--purple-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--purple-deep); transform: translateY(-3px); }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--purple-deep); padding: 80px 24px 40px; gap: 4px; overflow-y: auto; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 12px 16px; color: rgba(255,255,255,0.9) !important; border-radius: 10px; }
  .nav-links a:hover { background: rgba(255,255,255,0.1) !important; color: var(--white) !important; }
  .nav-toggle { display: flex; z-index: 1001; }
  .gallery-grid { columns: 2; }
  .about-badge { display: none; }
}

@media (max-width: 768px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .section-lg { padding: 70px 0; }
  .gallery-grid { columns: 1; }
  .footer-bottom { justify-content: center; text-align: center; }
  .newsletter-input-group { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn-hft { padding: 11px 22px; font-size: 0.9rem; }
}

/* ---- Utility Helpers ---- */
.no-select { user-select: none; }
.overflow-hidden { overflow: hidden; }
.rounded-xl { border-radius: var(--radius-lg) !important; }
.bg-tint { background: var(--purple-tint) !important; }
