/* ============================================
   GLORY WORSHIP CENTRE - MODERN BOLD DESIGN
   ============================================ */

/* CSS Variables */
:root {
  /* Modern Color Palette */
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --primary-light: #4D94FF;
  --secondary: #6366F1;
  --accent: #EC4899;

  /* Neutrals */
  --dark: #0F172A;
  --dark-light: #1E293B;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --light: #F1F5F9;
  --white: #FFFFFF;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066FF 0%, #6366F1 100%);
  --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.3);

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip to Content Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.nav-logo {
  width: 50px;
  height: auto;
}

.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

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

.nav-link.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

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

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider,
.hero-slider .splide__track,
.hero-slider .splide__list {
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(0, 102, 255, 0.75) 50%, rgba(99, 102, 241, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ffffff;
  opacity: 0.98;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.info-item i {
  font-size: 1.2rem;
  color: #ffffff;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 20% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: var(--gradient-primary);
  padding: 60px 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 25px;
  color: var(--dark);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.mission-box {
  background: var(--gradient-primary);
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-xl);
}

.mission-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.mission-box h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.mission-box p {
  opacity: 0.95;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--dark);
}

.feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
}

.image-badge span {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.image-badge strong {
  display: block;
  color: var(--dark);
  font-size: 1.2rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: var(--section-padding);
  background: var(--light);
}

.services-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.services-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  padding-bottom: 60px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.timeline-marker i {
  font-size: 1.8rem;
  color: var(--primary);
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
}

.timeline-day {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.timeline-time {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--gray);
  line-height: 1.7;
}

.service-highlights {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.highlight {
  display: inline-block;
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   EVENTS SECTION
   ============================================ */

.events {
  padding: var(--section-padding);
  background: white;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.event-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.event-card:hover .event-overlay {
  opacity: 0.9;
}

.event-overlay i {
  font-size: 3rem;
  color: white;
}

.event-content {
  padding: 25px;
}

.event-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.event-verse {
  font-style: italic;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.event-desc {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   GIVE SECTION
   ============================================ */

.give {
  padding: var(--section-padding);
  background: var(--gradient-dark);
  color: white;
}

.give-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.give-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.give-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 20px;
}

.give-text p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.8;
}

.give-text blockquote {
  border-left: 4px solid var(--primary-light);
  padding-left: 25px;
  font-style: italic;
  opacity: 0.95;
  font-size: 1.05rem;
  line-height: 1.8;
}

.give-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.give-info h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.detail-value {
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: var(--section-padding);
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.3rem;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--gray);
  line-height: 1.6;
}

.contact-text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-text a:hover {
  text-decoration: underline;
}

#map {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

.form-help {
  display: block;
  margin-top: 8px;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.5;
}

label span[aria-label="required"] {
  color: #DC2626;
}

.spinner {
  display: none;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  border: 4px solid var(--light);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-status,
.form-success,
.form-error {
  display: none;
  padding: 15px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.form-status {
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
}

.form-success {
  background: #D1FAE5;
  color: #065F46;
}

.form-error {
  background: #FEE2E2;
  color: #991B1B;
}

.form-error a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  margin-top: auto;
}

/* Footer Top Section (Light) */
.footer-top {
  background: var(--light);
  padding: 80px 0 60px;
  border-top: 1px solid #E2E8F0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Footer About Column */
.footer-about {
  max-width: 300px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 55px;
  height: auto;
}

.footer-brand h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
}

.footer-about > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-address {
  display: flex;
  gap: 12px;
  color: var(--text-medium);
  line-height: 1.6;
}

.footer-address i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '\2192';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links i {
  color: var(--primary);
  font-size: 0.9rem;
  width: 16px;
}

/* Newsletter Section */
.footer-newsletter p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.newsletter-form {
  margin-bottom: 25px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.newsletter-input-group input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: transparent;
}

.newsletter-input-group input:focus {
  outline: none;
}

.newsletter-input-group button {
  background: var(--gradient-primary);
  border: none;
  padding: 15px 25px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-input-group button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.newsletter-input-group button i {
  font-size: 1.1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  color: var(--text-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.footer-contact i {
  color: var(--primary);
  font-size: 1rem;
}

/* Footer Bottom Section (Dark) */
.footer-bottom {
  background: var(--gradient-dark);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: var(--primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

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

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: var(--section-padding);
  background: var(--light);
  overflow: hidden;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  margin: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-image.placeholder {
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-role {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #F59E0B;
  font-size: 1.2rem;
  margin: 0 2px;
}

/* Splide customization for testimonials */
.testimonials-slider .splide__arrow {
  background: var(--primary);
  opacity: 1;
}

.testimonials-slider .splide__arrow:hover {
  background: var(--primary-dark);
}

.testimonials-slider .splide__arrow svg {
  fill: white;
}

.testimonials-slider .splide__pagination__page {
  background: var(--gray-light);
}

.testimonials-slider .splide__pagination__page.is-active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .give-content {
    grid-template-columns: 1.2fr 1fr;
  }

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

  .services-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 60px;
  }

  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 60px;
  }

  .timeline-marker {
    left: auto;
    right: -40px;
  }

  .timeline-item:nth-child(even) .timeline-marker {
    right: auto;
    left: -40px;
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
  }

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

  .nav-menu li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--light);
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-link.nav-cta {
    margin-top: 20px;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-info {
    flex-direction: column;
    gap: 15px;
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card:nth-child(3) {
    grid-column: 1 / 2;
  }

  .event-card:nth-child(4) {
    grid-column: 2 / 3;
  }
}