/* =====================================================
   SYED ATIF HUSSAIN SHAH — Online Istikhara & Rohani Ilaj
   Style Sheet
   ===================================================== */

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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f9f7f2;
  color: #1a1a1a;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; }
input, textarea { font-family: 'Inter', sans-serif; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== SECTION SPACING ===== */
.section-pad { padding: 5rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 0.375rem;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 0.95rem; transition: all 0.3s ease;
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.btn-gold { background: #d4af37; color: #0f3d2e; }
.btn-gold:hover { background: #c9a42e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-primary { background: #0f3d2e; color: white; font-weight: 600; }
.btn-primary:hover { background: #1a5c44; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,61,46,0.3); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

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

/* ===== BADGES ===== */
.badge {
  display: inline-block; padding: 0.4rem 1.25rem; border-radius: 9999px;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
  background: rgba(212,175,55,0.15); color: #0f3d2e;
  border: 1px solid rgba(212,175,55,0.3); margin-bottom: 1rem;
}
.badge-light { background: rgba(212,175,55,0.2); color: rgba(255,255,255,0.9); border-color: rgba(212,175,55,0.4); }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 4rem; height: 3px;
  background: linear-gradient(90deg, #d4af37, #e8c96c);
  border-radius: 9999px; margin: 1rem auto;
}
.gold-divider-left { margin: 1rem 0; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #0f3d2e;
  box-shadow: 0 2px 20px rgba(15,61,46,0.3);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.navbar-logo {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #d4af37, #e8c96c);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: #0f3d2e;
}
.navbar-brand-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: #d4af37; line-height: 1.1; }
.navbar-brand-sub { font-size: 0.68rem; color: rgba(255,255,255,0.7); }
.navbar-links { display: flex; align-items: center; gap: 0.25rem; }
.navbar-links a {
  padding: 0.5rem 0.75rem; font-weight: 500; font-size: 0.95rem;
  color: white; transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
}
.navbar-links a:hover, .navbar-links a.active { color: #d4af37; border-bottom-color: #d4af37; }

/* Dropdown */
.dropdown-wrapper { position: relative; }
.dropdown-btn {
  background: none; border: none; padding: 0.5rem 0.75rem;
  display: flex; align-items: center; gap: 0.35rem;
  color: white; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: color 0.2s;
}
.dropdown-btn:hover { color: #d4af37; }
.dropdown-arrow { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  background: #0f3d2e; min-width: 220px; border-radius: 0.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3); border: 1px solid rgba(212,175,55,0.3);
  overflow: hidden; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.25s ease; z-index: 200;
}
.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 0.65rem 1.25rem; color: white !important;
  font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover { background: rgba(212,175,55,0.15); color: #d4af37 !important; }

/* Mobile menu */
.hamburger { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; background: #0a2e22; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 1rem; }
.mobile-menu a {
  display: block; padding: 0.75rem 0; color: white;
  font-family: 'Poppins', sans-serif; font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-label {
  padding: 0.75rem 0 0.25rem; color: #d4af37;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 0.5rem;
}
.mobile-menu-sub a { padding: 0.6rem 1rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.mobile-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; padding: 1rem 0; }
.navbar-cta { display: flex; align-items: center; gap: 0.75rem; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0f3d2e 0%, #1a5c44 60%, #0f3d2e 100%);
  padding: 5rem 0; min-height: 90vh; display: flex; align-items: center;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(212,175,55,0.2); color: #d4af37;
  padding: 0.4rem 1.25rem; border-radius: 9999px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid rgba(212,175,55,0.4); margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.hero h1 { color: white; font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-text { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.hero-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 0.75rem; }

/* Hero Slider */
.hero-slider-wrap { position: relative; }
.slider-bg-dec {
  position: absolute; top: -1rem; right: -1rem; width: 100%; height: 100%;
  background: rgba(212,175,55,0.08); border-radius: 1rem;
  border: 1px solid rgba(212,175,55,0.3); z-index: 0;
}
.hero-slider {
  position: relative; z-index: 1; border-radius: 1rem; overflow: hidden;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 20px 60px rgba(15,61,46,0.4);
}
.hero-slide { display: none; padding: 3rem 2rem; text-align: center; min-height: 380px; align-items: center; justify-content: center; flex-direction: column; animation: fadeSlide 0.6s ease; }
.hero-slide.active { display: flex; }
@keyframes fadeSlide { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
.slide-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.slide-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: #d4af37; font-size: 1.5rem; margin-bottom: 0.75rem; }
.slide-desc { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.slider-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 1rem; }
.slider-dot { width: 0.75rem; height: 0.5rem; border-radius: 9999px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.3s; }
.slider-dot.active { background: #d4af37; width: 1.5rem; }

/* ===== COUNTERS ===== */
.counters { background: #0f3d2e; padding: 4rem 0; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.counter-item { text-align: center; padding: 1rem; }
.counter-num { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: #d4af37; line-height: 1; }
.counter-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 0.5rem; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, #0f3d2e, #1a5c44); border-radius: 1rem;
  padding: 3rem 2rem; text-align: center;
  box-shadow: 0 20px 60px rgba(15,61,46,0.3);
  min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-visual-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.about-visual-name { font-family: 'Poppins', sans-serif; color: #d4af37; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.about-visual-title { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.about-tag {
  background: rgba(212,175,55,0.2); border: 1px solid rgba(212,175,55,0.4);
  color: #d4af37; padding: 0.3rem 0.9rem; border-radius: 9999px;
  font-size: 0.78rem; font-family: 'Poppins', sans-serif;
}
.about-exp-box {
  background: #f9f7f2; border-radius: 0.75rem; padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem; border: 1px solid rgba(212,175,55,0.2);
}
.about-exp-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0f3d2e; font-size: 0.9rem; margin-bottom: 0.75rem; }
.check-list { display: flex; flex-direction: column; gap: 0.5rem; }
.check-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.93rem; color: #4a7c6b; }
.check-icon { color: #d4af37; font-weight: 700; flex-shrink: 0; }
.check-icon-red { color: #c00; font-weight: 700; flex-shrink: 0; }
.about-body { color: #4a7c6b; line-height: 1.85; font-size: 0.97rem; }
.about-body p { margin-bottom: 1.25rem; }
.about-quote {
  border-left: 4px solid #d4af37; padding-left: 1.25rem;
  margin: 1.25rem 0; font-style: italic; color: #0f3d2e; font-size: 0.97rem; line-height: 1.75;
}
.about-divider { width: 4rem; height: 3px; background: #d4af37; border-radius: 9999px; margin: 1rem 0 1.5rem; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: white; border-radius: 1rem; padding: 2rem;
  box-shadow: 0 4px 20px rgba(15,61,46,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15,61,46,0.18); border-color: rgba(212,175,55,0.4); }
.service-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; color: #0f3d2e; margin-bottom: 0.85rem; line-height: 1.35; }
.service-card p { color: #5a8a78; font-size: 0.9rem; line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.service-card-footer { border-top: 1px solid rgba(212,175,55,0.15); padding-top: 1rem; }

/* ===== ARTICLE ===== */
.article-body { color: #4a7c6b; line-height: 1.85; font-size: 0.97rem; }
.article-body h2 { font-family: 'Poppins', sans-serif; color: #0f3d2e; font-size: 1.4rem; font-weight: 800; margin-bottom: 1rem; margin-top: 2.5rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body p { margin-bottom: 1.25rem; }
.article-img { border-radius: 1rem; overflow: hidden; margin: 1.5rem 0 2.5rem; box-shadow: 0 8px 30px rgba(15,61,46,0.12); }
.article-img img { width: 100%; height: auto; display: block; }
.article-quote {
  border-left: 4px solid #d4af37; padding-left: 1.25rem; margin: 1.5rem 0;
  font-style: italic; color: #0f3d2e; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; line-height: 1.8;
}
.step-item {
  display: flex; gap: 0.75rem; margin-bottom: 0.85rem; align-items: flex-start;
  background: #f9f7f2; border-radius: 0.5rem; padding: 0.75rem 1rem;
  border: 1px solid rgba(212,175,55,0.15);
}
.step-icon { color: #d4af37; font-weight: 800; flex-shrink: 0; }
.bullet-item { display: flex; gap: 0.75rem; margin-bottom: 0.5rem; align-items: flex-start; }
.bullet-gold { color: #d4af37; font-weight: 700; flex-shrink: 0; }
.bullet-red { color: #c00; font-weight: 700; flex-shrink: 0; }

.two-col-box { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.green-box { background: #f0f9f5; border-radius: 0.75rem; padding: 1.25rem; border: 1px solid rgba(15,61,46,0.1); }
.red-box { background: #fff5f5; border-radius: 0.75rem; padding: 1.25rem; border: 1px solid rgba(200,50,50,0.1); }
.box-title-green { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0f3d2e; margin-bottom: 0.75rem; font-size: 0.9rem; }
.box-title-red { font-family: 'Poppins', sans-serif; font-weight: 700; color: #c00; margin-bottom: 0.75rem; font-size: 0.9rem; }
.box-item { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.88rem; }

.tags-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.6rem; margin-bottom: 1.25rem; }
.tag-item {
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.88rem;
  color: #0f3d2e; font-family: 'Poppins', sans-serif;
}
.warning-box {
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 0.75rem; padding: 1.25rem; margin: 1.5rem 0;
  font-family: 'Poppins', sans-serif; font-weight: 600; color: #0f3d2e; font-size: 0.95rem;
}

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.why-item {
  background: white; border-radius: 0.75rem; padding: 1.5rem;
  border: 1px solid rgba(212,175,55,0.2); box-shadow: 0 2px 12px rgba(15,61,46,0.06);
  display: flex; gap: 1rem; align-items: flex-start;
}
.why-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.why-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0f3d2e; font-size: 0.95rem; margin-bottom: 0.4rem; }
.why-desc { color: #5a8a78; font-size: 0.88rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(212,175,55,0.3); border-radius: 0.5rem;
  overflow: hidden; margin-bottom: 1rem; background: white;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(15,61,46,0.1); }
.faq-question {
  padding: 1.25rem 1.5rem; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: 'Poppins', sans-serif; font-weight: 600; color: #0f3d2e;
  background: white; user-select: none; width: 100%; text-align: left;
  border: none; font-size: 1rem;
}
.faq-icon { color: #d4af37; font-size: 1.2rem; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 1.5rem; color: #4a7c6b; font-size: 0.95rem; line-height: 1.7;
}
.faq-answer.open { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0f3d2e, #1a5c44);
  padding: 5rem 0; text-align: center;
}
.cta-section h2, .cta-section h3 { color: white; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 1.25rem; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.cta-section .cta-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 1.25rem; }
.cta-section .cta-group { justify-content: center; }
.cta-section blockquote {
  border-left: 4px solid #d4af37; padding-left: 1.5rem;
  margin: 0 auto 2rem; text-align: left; max-width: 540px;
}
.cta-section blockquote p { color: #d4af37; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; font-style: italic; margin: 0; }
.cta-section-light { background: #f9f7f2; padding: 5rem 0; text-align: center; border-top: 1px solid rgba(212,175,55,0.2); }
.cta-section-light h2, .cta-section-light h3 { color: #0f3d2e; }
.cta-section-light p { color: #4a7c6b; }
.cta-section-light .cta-group { justify-content: center; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, #0f3d2e, #1a5c44); padding: 5rem 0; text-align: center; }
.page-hero-icon { font-size: 3rem; margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.2; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.7; }
.page-hero .cta-group { justify-content: center; margin-top: 2rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #0f3d2e; }
.section-header p { color: #4a7c6b; font-size: 1.05rem; margin-top: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.contact-info-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: white; border-radius: 0.75rem; border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 2px 10px rgba(15,61,46,0.06); text-decoration: none; margin-bottom: 1.25rem;
  transition: all 0.2s;
}
.contact-info-item:hover { box-shadow: 0 8px 24px rgba(15,61,46,0.12); transform: translateY(-2px); }
.contact-icon {
  width: 3rem; height: 3rem; background: linear-gradient(135deg, #0f3d2e, #1a5c44);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-label { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0f3d2e; font-size: 0.9rem; }
.contact-value { color: #d4af37; font-size: 1rem; font-weight: 600; font-family: 'Poppins', sans-serif; }
.contact-sub { color: #8aab9e; font-size: 0.8rem; }
.contact-form-box {
  background: white; border-radius: 1rem; padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(15,61,46,0.1); border: 1px solid rgba(212,175,55,0.15);
}
.contact-form-box h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0f3d2e; font-size: 1.3rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: 'Poppins', sans-serif; font-weight: 600; color: #0f3d2e; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-input {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(15,61,46,0.2);
  border-radius: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #0f3d2e; outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: #d4af37; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: 'Poppins', sans-serif; color: #0f3d2e; font-weight: 700; margin-bottom: 0.75rem; font-size: 1.2rem; }
.form-success p { color: #5a8a78; }

/* ===== FOOTER ===== */
footer { background: #0a2b1e; color: rgba(255,255,255,0.85); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; padding: 4rem 0 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: #d4af37; }
.footer-brand-sub { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.footer-about { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none; transition: opacity 0.2s;
}
.footer-social:hover { opacity: 0.8; }
.footer-social-wa { background: #25d366; color: white; }
.footer-social-ph { background: #d4af37; color: #0f3d2e; }
.footer-heading { font-family: 'Poppins', sans-serif; font-weight: 700; color: #d4af37; margin-bottom: 1.25rem; font-size: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #d4af37; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
.footer-contact-val { font-size: 0.95rem; color: #d4af37; font-weight: 600; font-family: 'Poppins', sans-serif; text-decoration: none; }
.footer-contact-val-green { font-size: 0.9rem; color: #25d366; text-decoration: none; }
.footer-contact-note { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(212,175,55,0.2); padding: 1.5rem 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; line-height: 1.7; }

/* ===== DISCLAIMER ===== */
.disclaimer { background: #1a2e24; padding: 2rem 0; }
.disclaimer-inner {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.2);
  border-radius: 0.75rem; padding: 1.5rem;
}
.disclaimer-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.disclaimer h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: #d4af37; margin-bottom: 0.5rem; font-size: 0.95rem; }
.disclaimer p { color: rgba(255,255,255,0.65); font-size: 0.82rem; line-height: 1.7; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 3.5rem 0; }
  .hero h1 { font-size: 1.75rem; }
  .section-pad { padding: 3.5rem 0; }
  .navbar-links, .navbar-cta .btn-gold { display: none; }
  .hamburger { display: block; }
  .two-col-box { grid-template-columns: 1fr; }
  .counter-num { font-size: 2.25rem; }
}
@media (max-width: 480px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

.marquee-wrapper {
  width: 100%;
  background: #d4af37; /* GOLD */
  color: #0f3d2e;
  overflow: hidden;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.marquee-wrapper marquee {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
}
