﻿/* ============================================
   SHINE CHURCH - Clean HTML Rewrite
   Pixel-perfect recreation of creedy.wpenginepowered.com/home-3/
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bilbo+Swash+Caps&family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Roboto', sans-serif;
  color: #202020;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === TOP BAR === */
.top-bar {
  background: #f2f2f2;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span { margin-right: 25px; }
.top-bar-right a { color: #666; margin-left: 15px; transition: color 0.3s; }
.top-bar-right a:hover { color: #202020; }

/* === HEADER / NAVIGATION === */
.header {
  background: rgba(255,255,255,0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img { height: 50px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 18px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  padding: 28px 18px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #333;
  display: block;
  transition: color 0.3s;
}
.nav-menu > li > a:hover { color: #c9a227; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}
.nav-menu > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li a {
  padding: 10px 20px;
  font-size: 13px;
  color: #555;
  display: block;
  transition: all 0.2s;
}
.nav-dropdown li a:hover { background: #f8f8f8; color: #c9a227; padding-left: 24px; }
.donate-btn-header {
  background: #c9a227 !important;
  color: #fff !important;
  padding: 11px 26px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: background 0.3s !important;
}
.donate-btn-header:hover { background: #b89120 !important; color: #fff !important; }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: #333; z-index: 1100; }

/* === MOBILE SIDE NAV === */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.mobile-nav-header img { height: 36px; width: auto; }
.mobile-nav-close {
  font-size: 28px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: #333; }
.mobile-nav-links {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}
.mobile-nav-links li a {
  display: block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  color: #c9a227;
  background: #fdf8ed;
  border-left-color: #c9a227;
}
.mobile-nav-links li a.donate-btn-header {
  margin: 20px 24px;
  text-align: center;
  border-radius: 30px;
  border-left: none;
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 850px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  width: 90%;
  max-width: 800px;
}
.hero-pretitle {
  font-family: 'Bilbo Swash Caps', cursive;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: -10px;
  opacity: 0.85;
}
.hero-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 66px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 38px;
  opacity: 0.9;
  line-height: 1.6;
}
.hero-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 42px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 4px;
  transition: all 0.3s;
}
.hero-btn:hover {
  background: #c9a227;
  border-color: #c9a227;
  color: #fff;
}
.slider-nav {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active { background: #c9a227; transform: scale(1.2); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: rgba(201,162,39,0.85); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* === SERVICE CAROUSEL (Bible Reading / Cross Prayers / Church Community) === */
.service-carousel { padding: 60px 0; background: #fff; }
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}
.service-tab {
  padding: 12px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #e0e0e0;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
  border-radius: 4px;
}
.service-tab.active,
.service-tab:hover {
  background: #202020;
  color: #fff;
  border-color: #202020;
}
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  color: #fff;
}
.service-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === TT BIBLE APP DOWNLOAD === */
.app-section { padding: 80px 0; background: #fff; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
.app-text h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #202020;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.app-text { display: flex; flex-direction: column; justify-content: center; }
.app-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.app-features li {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #f0ebe5;
}
.app-features li:last-child { border-bottom: none; }
.app-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  background: #C4B28C;
  border-radius: 50%;
}
.app-features li strong {
  color: #202020;
  font-weight: 600;
}
.app-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  min-width: 180px;
}
.btn-app svg { flex-shrink: 0; }
.btn-app-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-app-text small { font-size: 10px; opacity: 0.85; font-weight: 400; }
.btn-app-text span { font-size: 16px; font-weight: 600; }
.btn-ios {
  background: #000;
  color: #fff;
}
.btn-ios:hover { background: #333; color: #fff; }
.btn-android {
  background: #000;
  color: #fff;
}
.btn-android:hover { background: #333; color: #fff; }
.app-image { border-radius: 8px; overflow: hidden; }
.app-image img { width: 100%; height: auto; object-fit: cover; }

/* === ONLINE & MOBILE APP CHURCH COMMUNITY === */
.community-section { padding: 80px 0 60px; background: #fff; text-align: center; }
.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #202020;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-desc {
  color: #777;
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.service-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
.service-item-5 {
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-item-5:hover { transform: translateY(-5px); }
.service-item-5 img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
}
.service-item-5 h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 15px;
  color: #333;
}
.service-item-5 .donate-link {
  display: inline-block;
  margin-top: 12px;
  color: #c9a227;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.service-item-5 .donate-link:hover { color: #b89120; }

/* === DONATION SECTION (Join Hand To Help Needy) === */
.donation-section {
  padding: 80px 0 90px;
  background: #f8f6f3;
  position: relative;
}
.donation-section > .container { position: relative; z-index: 2; }

/* Donation Header - matching original exactly */
.donation-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #c9b99a;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-align: center;
  margin-bottom: 12px;
}
.donation-desc {
  color: #999;
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.75;
}

/* Donation Cards Grid */
.donation-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual Donation Card */
.donation-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Card Image Area (top portion of card) */
.donation-card-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Card Body (content below image) */
.donation-card-body {
  padding: 20px 18px 28px;
  text-align: center;
  position: relative;
}

/* Circular Progress Ring - dark circle overlapping image bottom like original */
.progress-ring-wrap {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
}
.progress-ring {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}
.progress-ring-base {
  fill: #3d3d3d;
  stroke: none;
}
.progress-ring-bg {
  fill: none;
  stroke: #555;
  stroke-width: 5;
}
.progress-ring-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 263.89;
  transition: stroke-dashoffset 1.2s ease-out;
}
.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Card Title */
.donation-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  line-height: 1.35;
  margin-bottom: 16px;
  margin-top: 30px; /* space for overlapping ring */
  padding: 0 5px;
}

/* Donated / Goal Amounts */
.donation-amounts {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.donation-amounts small {
  display: block;
  font-size: 11px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 2px;
  font-weight: 400;
}
.donation-amounts strong {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #222;
}

/* Donate Now Button - rounded pill style matching original */
.btn-donate {
  display: inline-block;
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  padding: 12px 36px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 30px;
  transition: all 0.3s;
}
.btn-donate:hover {
  background: #7F9392;
  color: #fff;
  border-color: #7F9392;
}

/* === JESUS AND THE POWER OF PRAYERS === */
.prayer-section {
  padding: 80px 0;
  background: url('../images/bg-prayer-section.webp') center/cover no-repeat fixed;
  position: relative;
}
.prayer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
}
.prayer-section > .container { position: relative; z-index: 2; }
.prayer-section .section-heading { text-align: center; margin-bottom: 40px; }
.prayer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.prayer-card {
  background: #fff;
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.prayer-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,0.1); }
.prayer-card-icon {
  font-size: 36px;
  margin-bottom: 15px;
}
.prayer-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 10px;
}
.prayer-card p { font-size: 13px; color: #888; line-height: 1.6; }

/* === UPCOMING EVENTS === */
.events-section { padding: 80px 0; background: #fff; }
.events-layout { display: flex; gap: 40px; align-items: flex-start; }
.events-content { flex: 1; }
.events-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 400;
  color: #202020;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.events-content p { color: #666; font-size: 15px; line-height: 1.8; margin-bottom: 25px; }

/* === SUNDAY WORKSHOP === */
.workshop-section {
  padding: 0;
  background: url('../images/bg-workshop-section.webp') center/cover no-repeat;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
}
.workshop-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(127,147,146,0.92) 0%, rgba(127,147,146,0.75) 60%, transparent 100%);
}
.workshop-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: #fff;
  padding: 60px 0;
}
.workshop-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.workshop-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  opacity: 0.85;
  margin-bottom: 20px;
}
.workshop-content p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}
.workshop-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: #7F9392;
  padding: 13px 34px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { background: #e8e8e8; color: #7F9392; }
.btn-transparent-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 11px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-transparent-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* === SHOP PRODUCTS === */
.shop-section { padding: 80px 0; background: #fff; text-align: center; }
.shop-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.product-card {
  text-align: center;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-5px); }
.product-card-img {
  background: #f8f6f1;
  border-radius: 8px;
  padding: 35px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.product-card-img img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}
.product-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 8px;
}
.product-card .price {
  font-size: 18px;
  font-weight: 600;
  color: #c9a227;
}

/* === BOTTOM FEATURES (Praise & Worship etc) === */
.features-strip {
  padding: 60px 0;
  background: url('../images/bottom-feature-bg.webp') center/cover no-repeat;
  position: relative;
}
.features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232,221,213,0.93);
}
.features-strip > .container { position: relative; z-index: 2; }
.features-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item { text-align: center; }
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  background: #7F9392;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}
.feature-item h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #333;
  margin-bottom: 8px;
}
.feature-item p { font-size: 13px; color: #777; line-height: 1.6; }

/* === LATEST NEWS & BLOGS === */
.news-section { padding: 80px 0; background: #fff; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.news-left {
  background: url('../images/news-bg-left.webp') center/cover no-repeat;
  border-radius: 8px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 45px;
  position: relative;
}
.news-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(127,147,146,0.78);
  border-radius: 8px;
}
.news-left-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.news-left h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.news-left p { font-size: 15px; opacity: 0.9; line-height: 1.7; }
.news-right { display: flex; flex-direction: column; gap: 25px; }
.news-article {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}
.news-article:last-child { border-bottom: none; }
.news-article-thumb {
  width: 130px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-article-info { flex: 1; }
.news-date {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.news-article h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #7F9392;
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color 0.3s;
  cursor: pointer;
}
.news-article h4:hover { color: #c9a227; }
.news-article p { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.read-more {
  font-size: 12px;
  font-weight: 600;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}
.read-more:hover { color: #b89120; }
.view-all-btn {
  display: inline-block;
  margin-top: 10px;
  background: #c9a227;
  color: #fff;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.view-all-btn:hover { background: #b89120; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 80px 0; background: #fafafa; }
.testimonials-section .section-heading { text-align: center; margin-bottom: 50px; }
.testimonial-slider { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide {
  min-width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}
.testimonial-img {
  width: 280px;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-text { flex: 1; }
.testimonial-quote {
  font-size: 72px;
  font-family: Georgia, serif;
  color: #e8ddd5;
  line-height: 1;
  margin-bottom: -15px;
}
.testimonial-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}
.testimonial-author-role {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}
.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.tdot.active { background: #c9a227; transform: scale(1.2); }

/* === FOOTER === */
.footer { background: #1a1a1a; color: #aaa; padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-col p { font-size: 13px; line-height: 1.7; color: #999; margin-bottom: 8px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: #999;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: #c9a227; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 38px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  transition: all 0.3s;
}
.social-link:hover { background: #c9a227; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .service-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .donation-cards { grid-template-columns: repeat(2, 1fr); }
  .prayer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 48px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-toggle { display: block; }
  .app-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .service-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slide { flex-direction: column; text-align: center; }
  .testimonial-img { width: 200px; height: 250px; margin: 0 auto; }
  .hero-title { font-size: 36px; }
  .hero-slider { height: 600px; }
  .section-heading { font-size: 28px; }
  .events-layout { flex-direction: column; }
  .workshop-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* === LANGUAGE SWITCHER === */
.lang-switch { position: relative; }
.lang-switch-btn {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.lang-switch-btn:hover { border-color: #c9a227; color: #333; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 1px solid #eee;
  z-index: 2000;
  max-height: 360px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.25s ease;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: #555;
  transition: all 0.2s;
  border-bottom: 1px solid #f5f5f5;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: #f8f6f3; color: #c9a227; padding-left: 22px; }
.lang-option.active { background: #c9a227; color: #fff; font-weight: 600; }
.lang-switch-item { position: relative; }
.mobile-lang-switch { padding: 10px 28px; }
.mobile-lang-switch select {
  width: 100%; padding: 12px 16px;
  border: 2px solid #eee; border-radius: 6px;
  font-size: 15px; color: #333; background: #f8f8f8;
  cursor: pointer; appearance: auto;
}
@media (max-width: 768px) {
  .lang-switch-item { display: none; }
}
