/* ========================================
   WAY TO SUCCESS FZC LLC
   waytosuccess.ae — Main Stylesheet
   ======================================== */

:root {
  --navy: #0a2240;
  --navy-light: #1a3a5c;
  --navy-dark: #061529;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #fdf6e3;
  --green: #2e7d52;
  --green-light: #4caf80;
  --green-pale: #edf7f2;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-200: #e4e8ef;
  --gray-400: #9aa3b2;
  --gray-600: #5a6475;
  --gray-800: #2d3440;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,34,64,0.07);
  --shadow-md: 0 6px 24px rgba(10,34,64,0.11);
  --shadow-lg: 0 16px 48px rgba(10,34,64,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { color: var(--gray-600); font-size: 1rem; }

.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--gray-600); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; }
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  border: 1px solid #e8d89a;
}
.nepali-text { font-family: 'Noto Sans Devanagari', var(--font-main); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-gold { background: var(--gold-pale); }
.section-green { background: var(--green-pale); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-2px); }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1fb855; border-color: #1fb855; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-group-center { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* needed so .mobile-menu (position:absolute) anchors to navbar */
  overflow: visible;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 48px; width: 48px; border-radius: 10px; object-fit: contain; background: #fff; padding: 2px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.nav-logo-text .tagline { font-size: 0.68rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: var(--transition);
}
.nav-links a:hover { background: var(--gray-100); color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-shrink: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* Mobile menu — hidden by default on ALL screen sizes, shown only when .open is added via JS */
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.7rem 0.5rem; border-bottom: 1px solid var(--gray-100); color: var(--navy); font-weight: 500; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #0f3060 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-light); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 560px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 1.75rem;
}
.hero-trust .sep { color: rgba(255,255,255,0.25); }
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.hero-card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.hero-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.83rem; }
.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero-stat {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.hero-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero-stat .label { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gold);
  padding: 0.85rem 0;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
}
.trust-item .icon { font-size: 1rem; }
.trust-sep { color: rgba(10,34,64,0.3); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.card-icon-navy { background: rgba(10,34,64,0.08); }
.card-icon-gold { background: rgba(201,168,76,0.15); }
.card-icon-green { background: rgba(46,125,82,0.12); }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}
.card .card-link:hover { color: var(--gold); gap: 0.6rem; }

/* ---- PATH CARDS ---- */
.path-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.path-card-individual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.path-card-company {
  background: linear-gradient(135deg, var(--green) 0%, #1a5e3a 100%);
  color: var(--white);
}
.path-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.path-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 20px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.path-card .big-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.path-card h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.75rem; }
.path-card p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 1.75rem; }
.path-card ul { margin-bottom: 2rem; }
.path-card ul li {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.path-card ul li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }

/* ---- IMPACT STATS ---- */
.impact-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.impact-item { text-align: center; }
.impact-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.35rem; }
.impact-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

/* ---- PROGRAMS ---- */
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.program-card-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.program-card-header .prog-icon { font-size: 2rem; }
.program-card-header .prog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  display: inline-block;
}
.tag-gold { background: var(--gold-pale); color: var(--gold); }
.tag-navy { background: rgba(10,34,64,0.08); color: var(--navy); }
.tag-green { background: var(--green-pale); color: var(--green); }
.program-card-body { padding: 0 1.5rem 1.5rem; }
.program-card-body p { font-size: 0.88rem; margin-bottom: 1rem; }

/* ---- NETWORK ---- */
.network-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.network-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-2px); }
.network-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.network-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.network-card p { font-size: 0.8rem; }
.network-card a.visit-link { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* ---- SOCIAL MEDIA ---- */
.social-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.social-card .s-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.social-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.social-card p { font-size: 0.82rem; }
.s-yt { background: linear-gradient(135deg, #ff0000, #cc0000); }
.s-yt h4, .s-yt p { color: var(--white); }
.s-fb { background: linear-gradient(135deg, #1877f2, #0d5bbf); }
.s-fb h4, .s-fb p { color: var(--white); }
.s-tt { background: linear-gradient(135deg, #000000, #333); }
.s-tt h4, .s-tt p { color: var(--white); }
.s-li { background: linear-gradient(135deg, #0077b5, #005a8b); }
.s-li h4, .s-li p { color: var(--white); }
.s-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.s-ig h4, .s-ig p { color: var(--white); }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--gray-600); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-card blockquote::before { content: '\201C'; font-size: 2rem; color: var(--gold); line-height: 0; vertical-align: -0.5em; margin-right: 0.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info .name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.author-info .role { font-size: 0.78rem; color: var(--gray-400); }

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #0f3060 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.final-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 1rem auto 0; font-size: 1.1rem; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--gold-light); }

/* ---- SERVICE DETAIL CARDS ---- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.service-detail-card .s-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.service-detail-card h3 { margin-bottom: 0.6rem; }
.service-detail-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-detail-card .tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-detail-card .tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 600;
}

/* ---- ABOUT ---- */
.about-stat { text-align: center; padding: 1.5rem; }
.about-stat .num { font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.about-stat .label { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.25rem; }
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.founder-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 2.5rem;
  text-align: center;
}
.founder-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
}
.founder-header h3 { color: var(--white); margin-bottom: 0.25rem; }
.founder-header .role-tag { color: var(--gold-light); font-size: 0.85rem; }
.founder-body { padding: 2rem; }
.founder-body p { font-size: 0.9rem; margin-bottom: 0.75rem; }

/* ---- EVENTS ---- */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  gap: 0;
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-date-block {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  text-align: center;
}
.event-date-block .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); }
.event-date-block .day { font-size: 2rem; font-weight: 800; line-height: 1; }
.event-date-block .year { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.event-info { padding: 1.5rem; flex: 1; }
.event-info .event-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green);
  background: var(--green-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.event-info h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.event-info .event-meta { font-size: 0.82rem; color: var(--gray-400); display: flex; gap: 1rem; }

/* ---- CONTACT ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,34,64,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item .ci-text label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.07em; display: block; margin-bottom: 0.2rem; }
.contact-info-item .ci-text span { color: var(--white); font-size: 0.95rem; font-weight: 500; }

/* ---- NEWSLETTER ---- */
.newsletter-bar {
  background: var(--gold-pale);
  border-top: 1px solid #e8d89a;
  border-bottom: 1px solid #e8d89a;
  padding: 2.5rem 0;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h3 { color: var(--navy); margin-bottom: 0.35rem; }
.newsletter-inner p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1.25rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4c170;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
}
.newsletter-form input:focus { border-color: var(--navy); }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.footer-brand .sub { font-size: 0.78rem; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-tooltip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- ANIMATIONS ---- */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---- ETHICAL NOTE ---- */
.ethical-note {
  background: var(--green-pale);
  border: 1.5px solid #b3dfc5;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ethical-note .en-icon { font-size: 1.6rem; flex-shrink: 0; }
.ethical-note p { font-size: 0.9rem; color: var(--green); }
.ethical-note strong { color: var(--green); }

/* ---- DIVIDER ---- */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 3rem 0; }
.gold-line { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1rem auto 2rem; }
.gold-line-left { margin-left: 0; }

/* ---- PILL BADGE ---- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pill-navy { background: rgba(10,34,64,0.08); color: var(--navy); }
.pill-gold { background: var(--gold-pale); color: #8a6a0a; border: 1px solid #e8d89a; }
.pill-green { background: var(--green-pale); color: var(--green); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .path-card { padding: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  /* mobile-menu positioning already set globally above */
  .newsletter-form { flex-direction: column; }
  .trust-bar-inner { gap: 0.75rem; }
  .trust-sep { display: none; }
  .event-card { flex-direction: column; }
  .event-date-block { flex-direction: row; gap: 0.5rem; min-width: unset; justify-content: flex-start; padding: 1rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .btn-group, .btn-group-center { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
