/* =====================================================
   Apostle Anton Mkane Ministry - Main Stylesheet
   Colors: Deep Navy #0a1628, Gold #c8a55a, Warm White #faf8f5, Dark #0d1b2a
   Fonts: Playfair Display (headings), Inter (body)
   ===================================================== */

:root {
  --navy: #0a1628;
  --navy-light: #132238;
  --gold: #c8a55a;
  --gold-light: #e2c97e;
  --gold-dark: #a88a3a;
  --white: #ffffff;
  --warm-white: #faf8f5;
  --cream: #f5f0e8;
  --dark: #0d1b2a;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --red: #ef4444;
  --green: #22c55e;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}



.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;

    background-image:
        linear-gradient(
            rgba(10, 15, 25, 0.65),
            rgba(10, 15, 25, 0.75)
        ),
        url("../images/hero-bg.jpg");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 165, 90, 0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left span a {
  color: inherit;
  text-decoration: none;
}

.top-bar-right {
  display: flex;
  gap: 12px;
}

.top-bar-right a {
  color: var(--gray-300);
  font-size: 0.85rem;
}
.top-bar-right a:hover {
  color: var(--gold);
}

/* ---- Main Header ---- */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.footer-logo .logo-avatar {
  width: 40px;
  height: 40px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Phone number in header (mobile) */
.header-phone-mobile {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(200, 165, 90, 0.1);
  border-radius: 50px;
  white-space: nowrap;
}
.header-phone-mobile i {
  color: var(--gold);
}
.header-phone-mobile:hover {
  background: rgba(200, 165, 90, 0.2);
  color: var(--gold-dark);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
}

.logo-title {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
  background: rgba(200, 165, 90, 0.08);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  text-align: center;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-link {
  display: block;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  padding: 12px 0;
  transition: var(--transition);
}
.mobile-nav-link:hover {
  color: var(--gold);
  transform: translateX(10px);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.6)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 165, 90, 0.15);
  border: 1px solid rgba(200, 165, 90, 0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---- Announcement Ticker ---- */
.announcement-ticker {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-wrap {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-weight: 500;
  font-size: 0.9rem;
}

.ticker-item i {
  font-size: 0.8rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Section Styles ---- */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--navy);
}

.about-feature-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---- Attend CTA Section ---- */
.attend-section {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.7)),
              url('../images/church-service.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 0;
}

.attend-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.attend-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.attend-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .bible-quote {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-style: italic;
  padding: 12px;
  background: rgba(200, 165, 90, 0.08);
  border-radius: var(--radius);
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- Partners Section ---- */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.partner-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--gold-dark);
}

.partner-item i {
  font-size: 1.5rem;
  color: var(--gold);
}

/* ---- Registration Form Modal ---- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
  backdrop-filter: blur(5px);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  transition: var(--transition);
  font-size: 1rem;
}
.modal-close:hover {
  background: var(--red);
  color: var(--white);
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal-content .modal-subtitle {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ---- Form Styles ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--red);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 165, 90, 0.15);
}

.form-control::placeholder {
  color: var(--gray-300);
}

select.form-control {
  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='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.phone-input-group {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ---- Bible Quote Modal ---- */
.bible-modal {
  text-align: center;
  max-width: 450px;
}

.bible-modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(200, 165, 90, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.bible-modal h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.bible-modal blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  margin-bottom: 12px;
}

.bible-ref {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.bible-message {
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.7)),
              url('../images/banner-prayer.jpg') center/cover no-repeat;
  padding: 100px 0 60px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.service-day {
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.service-time {
  color: var(--gray-500);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- Business Ventures ---- */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.venture-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.venture-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.venture-card-icon {
  height: 200px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 4rem;
}

.venture-card-body {
  padding: 24px;
}

.venture-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.venture-card-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- Hotels Grid ---- */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hotel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hotel-image {
  height: 200px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  position: relative;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hotel-body {
  padding: 20px;
}

.hotel-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hotel-location {
  color: var(--gray-500);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.hotel-amenities {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hotel-amenity {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--gray-700);
  border-radius: 50px;
}

.hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.hotel-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.hotel-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* ---- Donation Section ---- */
.donation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.donation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.donation-card:hover,
.donation-card.selected {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.donation-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.donation-label {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ---- YouTube Section ---- */
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.youtube-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
}

.youtube-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

/* ---- News Grid ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card-image {
  height: 200px;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-placeholder {
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

.news-card-body {
  padding: 24px;
}

.news-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.news-card-date i {
  color: var(--gold);
}

.news-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-body h3 a {
  color: var(--navy);
}
.news-card-body h3 a:hover {
  color: var(--gold-dark);
}

.news-card-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

.news-share-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  transition: var(--transition);
}
.news-share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
  color: var(--white);
}

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(200, 165, 90, 0.1);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.contact-info-text p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 0;
  position: relative;
}

.footer-wave {
  color: var(--navy);
  margin-top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  background: var(--gold);
  color: var(--navy);
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-title {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-heading {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-schedule {
  list-style: none;
}

.footer-schedule li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

/* Footer Partners Horizontal Row */
.footer-partners-row {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}

.footer-partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.footer-partner-logo-item:hover {
  transform: translateY(-4px);
}

.partner-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--white);
  border: 2px solid rgba(200, 165, 90, 0.25);
  transition: var(--transition);
}
.footer-partner-logo-item:hover .partner-logo-img {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200, 165, 90, 0.3);
}

.footer-partner-logo-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-align: center;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact-item i {
  color: var(--gold);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 600;
}
.footer-credit a:hover {
  text-decoration: underline;
}

/* ---- Translate Float Button ---- */
iframe[src*="translate.google.com"],
iframe#gt-nvframe,
iframe[title*="Google Translate"],
iframe[title*="Uelekezaji wa Google Tafsiri"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.goog-te-banner-frame, .goog-te-ftab-frame {
  display: none !important;
}

body { top: 0 !important; }

.skiptranslate {
  display: none !important;
}

#translate-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: none;
  text-align: center;
}

#translate-icon {
  background: var(--gold);
  color: var(--navy);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 15px rgba(200, 165, 90, 0.4);
  transition: var(--transition);
  font-size: 1.2rem;
  margin-left: auto;
}
#translate-icon:hover {
  transform: scale(1.1);
  background: var(--gold-dark);
}

#translate-dropdown {
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  max-height: 240px;
  overflow-y: auto;
  width: 190px;
  position: absolute;
  bottom: 58px;
  right: 0;
}

#translate-dropdown button {
  border: none;
  background: none;
  padding: 10px 14px;
  text-align: left;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
}

#translate-dropdown button img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

#translate-dropdown button:hover {
  background: var(--cream);
  color: var(--navy);
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Admin Styles ---- */
.admin-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--navy);
  color: var(--white);
  padding: 24px;
}

.admin-sidebar .logo {
  margin-bottom: 32px;
}

.admin-sidebar .logo .logo-name {
  color: var(--white);
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 4px;
  transition: var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(200, 165, 90, 0.15);
  color: var(--gold);
}

.admin-main {
  padding: 32px;
  background: var(--gray-100);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-header h1 {
  font-size: 1.8rem;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: rgba(200, 165, 90, 0.1);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Data Table ---- */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background: var(--cream);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  text-align: left;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-700);
}

.data-table tr:hover td {
  background: var(--gray-100);
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-danger {
  background: #fecaca;
  color: #991b1b;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }

  .header-phone-mobile { display: flex; }

  .top-bar-left .top-bar-email { display: none; }
  .top-bar-left span:first-child { display: none; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-image img { height: 350px; }
  .about-image-badge { bottom: -10px; right: -10px; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .ventures-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .donation-cards { grid-template-columns: 1fr; }
  .youtube-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 1.8rem; }
  .page-hero h1 { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-partners-logos { gap: 20px; }
  .partner-logo-img { width: 56px; height: 56px; border-radius: 10px; }
  .footer-partner-logo-item span { font-size: 0.7rem; }

  .modal-content { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .phone-input-group { grid-template-columns: 120px 1fr; }

  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    z-index: 9999;
    transition: var(--transition);
  }
  .admin-sidebar.active { left: 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .attend-section h2 { font-size: 1.8rem; }
  .container { padding: 0 16px; }
}

/* Header logo */
.main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.main-header .logo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200,165,90,0.5);
}

.main-header .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.main-header .logo-name {
    font-size: 16px;
    font-weight: 600;
}

.main-header .logo-title {
    font-size: 13px;
    opacity: 0.85;
}

/* ---- Styled Notification / Confirmation Modals ---- */
.notification-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
  backdrop-filter: blur(5px);
}

.notification-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.notification-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: modalSlideIn 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.notification-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.notification-modal-icon.warning {
  background: #fef3c7;
  color: #d97706;
}

.notification-modal-icon.success {
  background: rgba(200, 165, 90, 0.12);
  color: var(--gold-dark);
}

.notification-modal-icon.error {
  background: #fef2f2;
  color: #dc2626;
}

.notification-modal h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.notification-modal p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.notification-modal p strong {
  color: var(--navy);
}

.notification-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification-modal-buttons .btn {
  width: 100%;
  justify-content: center;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-outline-navy:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

@media (max-width: 480px) {
  .notification-modal {
    padding: 28px 20px;
  }
  .notification-modal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .notification-modal h3 {
    font-size: 1.2rem;
  }
}
