/* Global Styles */
:root {
    --primary-blue: #1a73e8;
    --dark-blue: #0d47a1;
    --light-blue: #e8f0fe;
    --accent-blue: #4285f4;
    --text-dark: #202124;
    --text-light: #5f6368;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 5000; /* pastikan header di atas semua */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-left: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

.logo i {
    font-size: 28px;
    color: var(--primary-blue);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-blue);
}

.donate-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s;
}

.donate-btn:hover {
    background-color: var(--dark-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 60px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  pointer-events: none;  /* nonaktifkan klik untuk slide non-aktif */
}

.slide.active {
  opacity: 1;
  pointer-events: auto; /* hanya slide aktif bisa di-klik */
}


.slide-content {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius);
    margin-left: 10%;
    box-shadow: var(--box-shadow);
}

.slide-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.slide-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.slider-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: var(--dark-blue);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: var(--white);
}

/* Main Content Styles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

@media (min-width: 1200px) {
    .features { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .features { grid-template-columns: 1fr; }
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-blue);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Page Content Styles */
.page-content {
    flex: 1;
    padding: 40px 0;
}

.content-section {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.content-section h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue);
}



/* Footer Styles */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--box-shadow);
        z-index: 3000; /* <<< tambahkan ini supaya selalu di atas konten */
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .slide-content {
        margin-left: 5%;
        padding: 30px;
    }
    .slide-content h2 {
        font-size: 28px;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .slider-container {
        height: 400px;
    }
    .slide-content {
        margin: 0 5%;
        text-align: center;
    }
    .slide-content h2 {
        font-size: 24px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .content-section {
        padding: 25px;
    }
    .team-member-image {
        height: 200px;
    }
}


/* ================================
   SERVICES PAGE STYLES
   ================================ */

/* Section spacing */
.services-section,
.process-section,
.faq-section {
  padding: 30px 0;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 20px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark, #222);
}
.section-title p {
  color: var(--text-light, #666);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

/* ================
   OUR SERVICES
   ================ */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* semua item di center kalau baris tidak penuh */
    gap: 30px;
}

.feature-card {
    flex: 0 0 300px; /* lebar minimum tiap kotak */
    max-width: 300px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary-blue, #0056b3);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark, #222);
}

.feature-card p {
  color: var(--text-light, #666);
  font-size: 15px;
  line-height: 1.6;
}

.feature-card ul {
  margin: 15px 0;
  padding-left: 18px;
}
.feature-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-light, #555);
  list-style: none;
  position: relative;
}
.feature-card ul li::before {
  content: "✔";
  color: var(--primary-blue, #0056b3);
  font-weight: bold;
  margin-right: 8px;
}

.feature-card .slider-btn {
  display: inline-block;
  padding: 10px 18px;
  background: var(--primary-blue, #0056b3);
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.feature-card .slider-btn:hover {
  background: #003f7f;
}

/* ================
   OUR PROCESS
   ================ */
.process-section {
  background: #f9f9f9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.process-step .step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px auto;
  background: var(--primary-blue, #0056b3);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  line-height: 50px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark, #222);
}

.process-step p {
  color: var(--text-light, #666);
  font-size: 14px;
  line-height: 1.5;
}

/* ================
   FAQ
   ================ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark, #222);
  cursor: pointer;
  padding: 6px 0;
  position: relative;
}
.faq-question .faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-blue, #0056b3);
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: var(--text-light, #666);
  font-size: 15px;
  line-height: 1.6;
}
.faq-answer.show {
  display: block;
}

/* === Process Step Number Bulat === */
.process-step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background-color: var(--primary-blue, #0056b3);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
/* === Hover Effect untuk Process Step === */
.process-step:hover .step-number {
  background-color: #003f7f; /* biru lebih gelap */
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ===== News Page Layout ===== */
.news-container {
    display: flex;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}

/* Main Content (Articles) */
.news-content {
    flex: 0 0 70%;
}

/* Sidebar */
.sidebar {
    flex: 0 0 30%;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Post Meta (Date, Author, Category) */
.post-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.post-meta i {
    margin-right: 5px;
    color: #007bff;
}

/* Post Title */
.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-card h3 a:hover {
    color: #007bff;
}

/* Read More */
.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Search Box */
.sidebar-widget form {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.sidebar-widget form input {
    border: none;
    padding: 8px 10px;
    flex: 1;
    font-size: 14px;
}

.sidebar-widget form button {
    border: none;
    background: #007bff;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
}

/* Categories */
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 8px;
}

.sidebar-widget ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
    color: #007bff;
}

/* Recent Posts */
.recent-post {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.recent-post img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

.recent-post h6 {
    font-size: 14px;
    margin: 0;
}

.recent-post h6 a {
    color: #333;
    text-decoration: none;
}

.recent-post h6 a:hover {
    color: #007bff;
}

.recent-post small {
    font-size: 12px;
    color: #777;
}

/* Tags */
.tags a {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 10px;
    margin: 5px 5px 0 0;
    border-radius: 6px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.tags a:hover {
    background: #007bff;
    color: #fff;
}

/* News Page */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.news-item:hover {
  transform: translateY(-3px);
}

.news-item img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
}

.news-item .card-body {
  padding: 20px;
}

.news-item .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-meta {
  font-size: 0.9rem;
  color: #666;
}

.news-meta span {
  margin-right: 15px;
}

.news-item .card-text {
  margin: 10px 0 15px;
  color: #444;
}

.read-more {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-bottom: 40px;
}

/* Social Media */
.social-media {
  text-align: center;
  margin-top: 30px;
}

.social-media h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.social-media p {
  color: #666;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #0066ff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #0066ff;
  color: #fff;
}


/* Donate Section */
.donate-section {
  padding: 60px 0;
}

.donate-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.donate-section p.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.donate-section .row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.donate-section .card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.donate-section .card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.donate-section .form-label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
}

.donate-section .form-control {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.donate-section textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.donate-section .btn-primary {
  background: #0066ff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.donate-section .btn-primary:hover {
  background: #004ecc;
}

.bank-info {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bank-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.bank-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #444;
}

/* ================================
   Consolidated Contact CSS
   (replaces prior duplicate blocks)
   ================================ */

/* Top-level section */
.contact-section { padding: 40px 0 60px; background: #f8fafc; }

/* wrapper: left = form, right = narrow column */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px; /* right column fixed to keep cards compact */
  gap: 28px;
  align-items: start;
}

/* Generic card styling used by contact area (keeps consistent look with site) */
.card {
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

/* Form area specifics */
.contact-form .card h4 { margin-top: 0; margin-bottom: 12px; font-size: 15px; }
.contact-form label { display:block; font-size:12px; color:#374151; margin:10px 0 6px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
  width:100%; padding:9px 10px; border:1px solid #e6e9ef; border-radius:6px; font-size:13px; color:#0f172a;
}
.btn-submit {
  display:inline-block; width:100%; padding:8px 12px; background:#1f6fff; color:#fff; border:none; border-radius:6px; cursor:pointer; margin-top:8px;
}

/* Contact info column */
.contact-info-column,
.contact-info { /* support both class names if used in markup */
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* each information card */
.contact-info-item {
  padding:12px 14px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* header row (icon + title) aligned center vertically */
.ci-header {
  display:flex;
  align-items:center;   /* ensures icon and title are vertically centered (sejajar) */
  gap:10px;
}

/* icon style */
.ci-header i {
  font-size:18px;
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#1f6fff;
  flex:0 0 auto;
}

/* title (text placed right of icon and aligned) */
.ci-title, .ci-header h4 {
  margin:0;
  font-size:14px;
  font-weight:600;
  color:#0f172a;
  line-height:1;
  text-align:left;
}

/* information text under title: left aligned and compact */
.ci-text {
  margin:0;
  text-align:left;
  color:#475569;
  font-size:13px;
  line-height:1.5;
  word-wrap:break-word;
  max-width:320px; /* keeps card compact; adjust as needed */
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .contact-wrapper { grid-template-columns: 1fr 320px; gap:22px; }
  .contact-info-column { gap:10px; }
}

@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info-column { order:2; width:100%; }
  .map-container iframe { height:280px; }
}

/* Ensure long headings/text don't overflow */
.ci-text, .ci-header h4 { word-wrap: break-word; }

/* End of consolidated contact block */

/* ================================
   SERVICES/PROCESS/FAQ and rest of file retained unchanged
   (everything above remains as in original)
   ================================ */

/* ===== Contact layout & visual fixes ===== (Note: replaced by consolidated block) */

/* Footer bottom etc remain unchanged (definitions above) */

/* ============================
   Contact heading + subtitle
   Ensure subtitle sits exactly under the H2 and is centered
   Paste THIS at the very end of style.css
   ============================ */

/* If your markup is:
   <h2 class="section-title">Get In Touch</h2>
   <p class="section-sub">We'd love to hear...</p>
   — the rules below will force the subtitle right under the H2 and centered. */

.contact-section .container .section-title {
  display: block;               /* ensure block-level */
  text-align: center !important;
  margin: 0 0 6px 0 !important; /* small gap below the H2 */
  font-size: 20px;              /* keep existing size or adjust */
  line-height: 1.2;
}

/* specifically style the subtitle and force it to sit directly under the H2 */
.contact-section .container .section-sub,
.contact-section .container .section-title + .section-sub {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 20px auto !important; /* 0 top, centered horizontally, 20px bottom */
  max-width: 700px !important;          /* limit width so text centers nicely */
  color: #6b7280 !important;            /* muted color; adjust if needed */
  font-size: 13px !important;
  line-height: 1.45 !important;
  padding: 0 10px !important;           /* small horizontal padding on very small screens */
}

/* Small-screen adjustment */
@media (max-width: 480px) {
  .contact-section .container .section-title { font-size: 18px !important; }
  .contact-section .container .section-sub { font-size: 13px !important; max-width: 92% !important; }
}

/* Social icons centered and circular */
.social-section { text-align: center; margin-top: 18px; }
.social-icons { display:inline-flex; gap:12px; align-items:center; justify-content:center; flex-wrap:wrap; }
.social-icons a {
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:#1f6fff; /* icon color */
  box-shadow:0 3px 12px rgba(16,24,40,0.06);
  text-decoration:none;
  font-size:14px;
}
.social-icons a i { font-size:14px; line-height:1; }


/* ====== OVERRIDE: pastikan alamat dan teks info tidak terpotong ======
   Paste this at the VERY END of style.css
*/
.contact-section .container .contact-wrapper .contact-info-item .ci-text {
  max-width: none !important;       /* jangan batasi lebar teks */
  width: 100% !important;           /* pakai lebar card */
  white-space: normal !important;   /* izinkan wrapping (baris baru) */
  word-wrap: break-word !important; /* pecah kata panjang bila perlu */
  overflow: visible !important;     /* jangan sembunyikan isi */
  text-overflow: clip !important;   /* non-ellipsis */
  display: block !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

/* Pastikan parent card tidak memotong konten */
.contact-section .container .contact-wrapper .contact-info-item {
  overflow: visible !important;
}

/* Jika kanan terlampau sempit, naikkan lebarnya (sesuaikan angka jika perlu) */
.contact-section .container .contact-wrapper {
  grid-template-columns: 1fr 430px !important; /* naikkan dari 360px ke 430px */
  gap: 28px !important;
}

/* Responsive: kembalikan 1 kolom di layar kecil */
@media (max-width: 768px) {
  .contact-section .container .contact-wrapper {
    grid-template-columns: 1fr !important;
  }
  .contact-section .container .contact-wrapper .contact-info-item .ci-text {
    max-width: 100% !important;
  }
}

/* ===== About Section ===== */
.about-section {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  text-align: justify;
}
.about-image {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 12px;
}
.about-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
.about-desc {
  color: #444;
  line-height: 1.7;
  white-space: pre-line;
}

/* ===== Visi Misi Aksi ===== */
.visi-misi-container {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.visi-misi-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.visi-misi-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.aksi-card {
  grid-column: 1 / -1;
}
.aksi-card ul {
  list-style: none;
  padding: 0;
}
.aksi-card li {
  margin: 6px 0;
  text-align: center;
  font-weight: 500;
}

/* ===== Tim Pelayanan ===== */
.about-team {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  text-align: center;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 15px;
  color: #777;
  font-style: italic;
  margin-bottom: 40px;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  max-width: 200px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.team-photo {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.team-name {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
.team-position {
  color: #666;
  font-size: 14px;
  font-style: italic;
}


nav ul li a.active[href*="donate.php"] {
    color: #fff !important;
    background-color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 6px;
}
