/* ==========================================================================
   JOTHUR FOUNDATION (مؤسسة جذور للتنمية والتمكين) - FULL PREMIUM STYLES
   ========================================================================== */

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

:root {
  /* Brand Palette from Identity & Logo */
  --primary-green: #1F4B3A;
  --primary-green-light: #2C6851;
  --primary-green-dark: #123126;
  --accent-gold: #CBA45E;
  --accent-gold-light: #E0BE7D;
  --accent-gold-dark: #9E7B3B;
  
  /* Neutral Palette */
  --bg-cream: #FAF8F5;
  --bg-cream-alt: #F3EFEA;
  --card-bg: #FFFFFF;
  --card-border: rgba(31, 75, 58, 0.1);
  --text-dark: #1A2421;
  --text-muted: #53625C;
  --text-light: #F4F6F5;

  /* Fonts */
  --font-heading: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-body: 'Tajawal', system-ui, -apple-system, sans-serif;

  /* Shadows & Effects */
  --shadow-sm: 0 4px 12px rgba(31, 75, 58, 0.04);
  --shadow-md: 0 10px 30px rgba(31, 75, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 75, 58, 0.14);
  --shadow-gold: 0 10px 25px rgba(203, 164, 94, 0.25);
  
  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(31, 75, 58, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(203, 164, 94, 0.04) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-green-dark);
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31, 75, 58, 0.08);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-brand img {
  height: 68px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.site-header.scrolled .logo-brand img {
  height: 56px;
}

.logo-brand:hover img {
  transform: scale(1.03);
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.1;
}

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

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: #FFFFFF;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(203, 164, 94, 0.35);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background-color: rgba(203, 164, 94, 0.4);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-green);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-cream);
  z-index: 2000;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transition: right 0.4s ease;
}

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

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(31, 75, 58, 0.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding: 9.5rem 0 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape-leaf-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31, 75, 58, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.shape-gold-glow {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(203, 164, 94, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(31, 75, 58, 0.07);
  border: 1px solid rgba(31, 75, 58, 0.15);
  color: var(--primary-green);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-green-dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.hero-slogan {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 50%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

/* Countdown Clock */
.countdown-box {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 620px;
  margin-bottom: 2.2rem;
  position: relative;
  overflow: hidden;
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.countdown-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.countdown-item {
  background: var(--bg-cream);
  border: 1px solid rgba(31, 75, 58, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.5rem;
  transition: var(--transition);
}

.countdown-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.countdown-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Email Form */
.subscribe-form {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 580px;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.form-input {
  width: 100%;
  padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid rgba(31, 75, 58, 0.18);
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(31, 75, 58, 0.1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--primary-green);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #FFFFFF;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: var(--shadow-gold);
}

/* Hero Image Card Showcase */
.hero-visual-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-card-frame {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(31, 75, 58, 0.12);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transition: var(--transition);
  width: 100%;
  max-width: 440px;
}

.logo-card-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-lg) + 10px);
  border: 1.5px dashed rgba(203, 164, 94, 0.4);
  pointer-events: none;
  z-index: -1;
}

.hero-logo-img {
  max-width: 250px;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.06));
  border-radius: var(--radius-md);
}

.visual-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.visual-pill {
  background: var(--bg-cream);
  border: 1px solid rgba(31, 75, 58, 0.08);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-cream-alt);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-green) 0%, var(--accent-gold) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-dark);
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-green);
  border-right: 4px solid var(--accent-gold);
  padding-right: 1.2rem;
  margin: 1.8rem 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.stat-box {
  background: var(--bg-cream);
  border: 1px solid rgba(31, 75, 58, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(31, 75, 58, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--primary-green);
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 0.3rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FIELDS OF WORK (مجالات العمل)
   ========================================================================== */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.field-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.field-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3.5px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.field-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 75, 58, 0.2);
}

.field-card:hover::before {
  transform: scaleX(1);
}

.field-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  border: 1.5px solid rgba(31, 75, 58, 0.1);
  transition: var(--transition);
}

.field-card:hover .field-icon {
  background: var(--primary-green);
  color: var(--accent-gold);
  border-color: var(--primary-green);
}

.field-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

/* ==========================================================================
   OUR VALUES (قيمنا - DISTINCT MODERN FEATURE CARDS UI)
   ========================================================================== */
.our-values-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}

@media (max-width: 1100px) {
  .our-values-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .our-values-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .our-values-wrapper {
    grid-template-columns: 1fr;
  }
}

.our-value-item {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.4rem;
  text-align: right;
  border: 1px solid rgba(31, 75, 58, 0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.our-value-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-green) 100%);
  opacity: 0.6;
  transition: var(--transition);
}

.our-value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(203, 164, 94, 0.35);
}

.our-value-item:hover::after {
  opacity: 1;
  height: 5px;
}

.our-value-badge-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(31, 75, 58, 0.08) 0%, rgba(203, 164, 94, 0.12) 100%);
  color: var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.our-value-item:hover .our-value-badge-icon {
  background: var(--primary-green);
  color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.our-value-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  margin-bottom: 0.6rem;
}

.our-value-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  padding-right: 0.8rem;
  border-right: 2px solid var(--accent-gold);
}

/* ==========================================================================
   STRATEGIC GOALS & VISION/MISSION
   ========================================================================== */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vm-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 2.8rem 2.2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(203, 164, 94, 0.4);
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.vm-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--accent-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.vm-card.mission .vm-icon-box {
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
  color: #FFFFFF;
}

.vm-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-green-dark);
}

.vm-body {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.goals-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.goal-item {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.goal-item:hover {
  transform: translateX(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.goal-number {
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goal-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  padding-top: 0.3rem;
}

/* ==========================================================================
   FOOTER (EMAIL MENTIONED HERE ONLY)
   ========================================================================== */
.site-footer {
  background: var(--primary-green-dark);
  color: var(--text-light);
  padding: 4.5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-brand-slogan {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.8;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-email-box {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(203, 164, 94, 0.3);
  color: var(--accent-gold-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 0.8rem;
  transition: var(--transition);
}

.footer-email-box:hover {
  background: var(--accent-gold);
  color: var(--primary-green-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-right: 4px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--primary-green-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--primary-green-dark);
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: translateY(120%);
  opacity: 0;
  transition: var(--transition);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

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

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links, .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-slogan {
    font-size: 1.4rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subscribe-form {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
