/* ==========================================================================
   TODA Foundation - Core Design System & Styles
   ========================================================================== */

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

:root {
  /* Colors */
  --primary: #005bb5;
  /* Trust Blue */
  --primary-light: #3388ff;
  --primary-dark: #004488;
  --secondary: #ff6b35;
  /* Action/Warm Orange */
  --secondary-hover: #e55a2b;
  --accent: #10B981;
  /* Success/Growth Green */
  --text-dark: #1e293b;
  --text-body: #475569;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 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-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   Typography & Utility Classes
   ========================================================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.text-white {
  color: var(--bg-white) !important;
}

.text-light {
  color: var(--text-light);
}

.text-dark {
  color: var(--text-dark);
}

.text-body {
  color: var(--text-body);
}

.text-gray {
  color: #64748b;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.bg-white {
  background-color: var(--bg-white);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

.bg-primary-dark {
  background-color: var(--primary-dark);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.w-100 {
  width: 100%;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.fs-lg {
  font-size: 1.25rem;
}

.fs-xl {
  font-size: 1.5rem;
}

.fs-2xl {
  font-size: 2rem;
}

.fs-sm {
  font-size: 0.9rem;
}

.fs-xs {
  font-size: 0.85rem;
}

.op-9 {
  opacity: 0.9;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-800 {
  max-width: 800px;
}

.pos-rel {
  position: relative;
}

.border-0 {
  border: 0 !important;
}

.gap-1 {
  gap: 1rem;
}

.bg-primary-soft {
  background-color: rgba(0, 91, 181, 0.05);
}

.bg-secondary-soft {
  background-color: rgba(255, 107, 53, 0.1);
}

.bg-accent-soft {
  background-color: rgba(16, 185, 129, 0.1);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.flex-gap-1 {
  display: flex;
  gap: 1rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: var(--radius-sm);
}

.section-title.left-align::after {
  left: 0;
  transform: none;
}

.section-title.no-border::after {
  display: none;
}

.border-bottom-divider {
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.title-divider {
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
}

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

.btn-secondary {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.btn-outline.outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline.outline-secondary {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline.outline-white {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 5px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a.btn {
  color: var(--bg-white);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary);
  transition: var(--transition);
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 40, 85, 0.7), rgba(0, 40, 85, 0.7)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
  animation: fadeUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 1s ease-out 0.4s backwards;
}

/* ==========================================================================
   Impact Section
   ========================================================================== */
.impact-section {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--bg-white);
}

.impact-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
  transition: var(--transition);
  text-align: center;
}

.impact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.impact-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--bg-white);
}

.impact-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ==========================================================================
   General Sections & Cards
   ========================================================================== */
.section {
  padding: 6rem 0;
}

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

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

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

.card-tag {
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background-color: var(--primary);
  color: var(--bg-white);
  text-align: center;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #e55a2b 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.page-title {
  font-size: 2.5rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Home & About Specifics
   ========================================================================== */
.about-intro-img-wrapper {
  position: relative;
}

.about-intro-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -22px;
  bottom: 122px;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.check-list li {
  margin-bottom: 0.5rem;
}

.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(0, 91, 181, 0.1);
  position: absolute;
  top: 20px;
  left: 30px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: bold;
  font-size: 1.2rem;
}

.registration-box {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.vision-card {
  background: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.vision-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.team-card {
  border: 2px solid transparent;
}

.team-card.featured {
  border-color: var(--primary-light);
}

.team-img-wrap {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 10px 10px;
}

/* ==========================================================================
   Programs & Sponsor Specifics
   ========================================================================== */
.sponsor-price-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

/* ==========================================================================
   Scholarship specific (Timeline & Forms)
   ========================================================================== */
.date-box {
  background-color: #fff3ed;
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
}

.timeline {
  position: relative;
  border-left: 2px solid var(--primary-light);
  padding-left: 30px;
  margin-left: 15px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--secondary);
}

.doc-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.doc-list i {
  color: var(--accent);
  margin-top: 5px;
}

.form-box {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 91, 181, 0.1);
}

/* ==========================================================================
   Gallery Specifics
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: var(--bg-white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   Donate Specifics
   ========================================================================== */
.payment-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  border-top: 4px solid var(--primary);
}

.payment-card.border-secondary {
  border-top-color: var(--secondary);
}

.payment-card.border-accent {
  border-top-color: var(--accent);
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  background: var(--bg-white);
}

.bank-details li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.bank-details li:last-child {
  border-bottom: none;
}

.bank-label {
  font-weight: 600;
  color: var(--text-dark);
}

.bank-value {
  color: var(--text-body);
  font-family: monospace;
  font-size: 1.1rem;
}

.donate-category {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.donate-category:hover,
.donate-category.active {
  border-color: var(--secondary);
  background: rgba(255, 107, 53, 0.05);
}

.donate-category input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.tax-box {
  margin-top: 4rem;
  background: var(--primary-dark);
  color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

/* ==========================================================================
   Transparency Specifics
   ========================================================================== */
.doc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.doc-card.border-accent {
  border-left-color: var(--accent);
}

.doc-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--secondary);
}

.doc-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.doc-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 91, 181, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.doc-icon.bg-accent {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.doc-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.doc-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   Contact Specifics
   ========================================================================== */
.contact-icon-box {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-icon.bg-primary {
  background: rgba(0, 91, 181, 0.1);
  color: var(--primary);
}

.contact-icon.bg-accent {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.contact-icon.bg-secondary {
  background: rgba(255, 107, 53, 0.1);
  color: var(--secondary);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 350px;
}

.forms-hub-card {
  text-align: center;
  display: block;
  border-top: 4px solid var(--primary);
}

.forms-hub-card.border-accent {
  border-top-color: var(--accent);
}

.forms-hub-card.border-secondary {
  border-top-color: var(--secondary);
}

.forms-hub-card.border-gray {
  border-top-color: #64748b;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 60px;
  border-radius: 5px;
  margin-bottom: 1rem;
  filter: grayscale(100%) brightness(200%);
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}

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

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-item i {
  margin-top: 5px;
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  color: var(--bg-white);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    left: 0;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}