/* ============================================
   MODERN, CLEAN & MINIMAL DESIGN
   Enhanced Performance & Mobile First
   ============================================ */

:root {
  --primary: #053f5c;
  --primary-dark: #022b3f;
  --primary-light: #429ebd;
  --accent: #f7ad19;
  --accent-dark: #e49f16;
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   MODERN HEADER WITH LEFT NAVIGATION - FIXED
   ============================================ */

header {
  width: 100%;
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 5%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ============================================
   LEFT SECTION: Logo + Navigation (Desktop)
   ============================================ */

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateX(2px);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.logo:hover .logo-title {
  color: var(--primary-dark);
}

/* ============================================
   NAVIGATION MENU (Desktop) - ON LEFT SIDE
   ============================================ */

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: var(--transition);
  padding: 8px 0;
  white-space: nowrap;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

nav a:active {
  transform: translateY(1px);
}

/* ============================================
   RIGHT SECTION: Donation Button
   ============================================ */

.header-right {
  display: flex;
  align-items: center;
}

.donate-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.donate-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(247, 173, 25, 0.3);
}

/* ============================================
   MODERN HAMBURGER MENU - REDESIGNED & VISIBLE
   ============================================ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: rgba(5, 63, 92, 0.08);
  border: 1.5px solid rgba(5, 63, 92, 0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1002;
  transition: all 0.3s ease;
}

.hamburger-inner {
  width: 24px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 3px;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger:hover {
  background: rgba(5, 63, 92, 0.1);
  border-color: rgba(5, 63, 92, 0.2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
  background-color: var(--primary-dark);
}

.hamburger.active {
  background: #053f5c;
  border-color: #053f5c;
}

.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #ffffff;
}

.hamburger.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

.hamburger.active:hover {
  background: #022b3f;
  border-color: #022b3f;
}

.hamburger:active {
  transform: scale(0.95);
}

.hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

nav a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* ============================================
   TABLET & MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  nav {
    gap: 24px;
  }
  
  nav a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  
  .donate-btn {
    display: none;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 340px;
    max-width: 90%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 80px;
    padding-bottom: 30px;
    gap: 0;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav a {
    width: 100%;
    padding: 18px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  }
  
  nav.active a {
    opacity: 1;
    transform: translateX(0);
  }
  
  nav a::after {
    display: none;
  }
  
  nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 63, 92, 0.05), rgba(5, 63, 92, 0.1));
    transition: width 0.3s ease;
  }
  
  nav a:hover {
    color: var(--primary);
    padding-left: 32px;
  }
  
  nav a:hover::before {
    width: 100%;
  }
  
  nav a:active {
    background: rgba(5, 63, 92, 0.08);
  }
  
  nav a.donate-mobile {
    background: var(--accent);
    color: white;
    margin: 20px 28px;
    border-radius: var(--radius-sm);
    border: none;
    text-align: center;
    justify-content: center;
    font-weight: 600;
  }
  
  nav a.donate-mobile:hover {
    background: var(--accent-dark);
    padding-left: 28px;
  }
  
  nav a.donate-mobile::before {
    display: none;
  }
  
  /* Staggered animation delays */
  nav a:nth-child(1) { transition-delay: 0.05s; }
  nav a:nth-child(2) { transition-delay: 0.1s; }
  nav a:nth-child(3) { transition-delay: 0.15s; }
  nav a:nth-child(4) { transition-delay: 0.2s; }
  nav a:nth-child(5) { transition-delay: 0.25s; }
  nav a:nth-child(6) { transition-delay: 0.3s; }
  nav a:nth-child(7) { transition-delay: 0.35s; }
  nav a.donate-mobile { transition-delay: 0.4s; }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
  }
  
  .nav-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .mobile-menu-header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 28px;
    background: var(--primary);
    color: white;
    z-index: 1001;
  }
  
  .mobile-menu-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .mobile-menu-subtitle {
    font-size: 12px;
    opacity: 0.8;
  }
  
  .menu-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 1003;
    transition: var(--transition);
  }
  
  .menu-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 4%;
  }
  
  .header-left {
    gap: 20px;
  }
  
  .logo img {
    width: 36px;
    height: 36px;
  }
  
  .logo-title {
    font-size: 15px;
  }
  
  .logo-subtitle {
    font-size: 10px;
  }
  
  .hamburger {
    width: 44px;
    height: 44px;
  }
  
  .hamburger-inner {
    width: 22px;
    height: 2px;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 22px;
    height: 2px;
  }
  
  .hamburger-inner::before {
    top: -7px;
  }
  
  .hamburger-inner::after {
    bottom: -7px;
  }
  
  nav {
    width: 320px;
    padding-top: 90px;
  }
  
  nav a {
    padding: 16px 24px;
    font-size: 14px;
  }
  
  nav a.donate-mobile {
    margin: 20px 24px;
  }
  
  .mobile-menu-header {
    padding: 18px 24px;
  }
}

@media (max-width: 430px) {
  header {
    padding: 10px 3.5%;
  }
  
  .header-left {
    gap: 15px;
  }
  
  .logo img {
    width: 34px;
    height: 34px;
  }
  
  .logo-title {
    font-size: 14px;
  }
  
  .logo-subtitle {
    font-size: 9.5px;
  }
  
  .hamburger {
    width: 42px;
    height: 42px;
    border-width: 1.5px;
  }
  
  .hamburger-inner {
    width: 20px;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 20px;
  }
  
  .hamburger-inner::before {
    top: -6px;
  }
  
  .hamburger-inner::after {
    bottom: -6px;
  }
  
  nav {
    width: 300px;
    padding-top: 85px;
  }
  
  nav a {
    padding: 14px 20px;
    font-size: 13.5px;
  }
  
  nav a.donate-mobile {
    margin: 18px 20px;
    padding: 14px 20px;
    font-size: 13px;
  }
  
  .mobile-menu-header {
    padding: 16px 20px;
  }
  
  .mobile-menu-title {
    font-size: 15px;
  }
  
  .mobile-menu-subtitle {
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  header {
    padding: 10px 3%;
  }
  
  .header-left {
    gap: 12px;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .logo-title {
    font-size: 13.5px;
  }
  
  .logo-subtitle {
    font-size: 9px;
  }
  
  .hamburger {
    width: 40px;
    height: 40px;
  }
  
  .hamburger-inner {
    width: 18px;
    height: 1.8px;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 18px;
    height: 1.8px;
  }
  
  .hamburger-inner::before {
    top: -5.5px;
  }
  
  .hamburger-inner::after {
    bottom: -5.5px;
  }
  
  nav {
    width: 290px;
    padding-top: 80px;
  }
  
  nav a {
    padding: 13px 18px;
    font-size: 13px;
  }
  
  nav a.donate-mobile {
    margin: 16px 18px;
    padding: 13px 18px;
  }
  
  .mobile-menu-header {
    padding: 15px 18px;
  }
  
  .mobile-menu-title {
    font-size: 14.5px;
  }
}

@media (max-width: 360px) {
  header {
    padding: 8px 2.5%;
  }
  
  .header-left {
    gap: 10px;
  }
  
  .logo img {
    width: 30px;
    height: 30px;
  }
  
  .logo-title {
    font-size: 13px;
  }
  
  .logo-subtitle {
    font-size: 8.5px;
  }
  
  .hamburger {
    width: 38px;
    height: 38px;
  }
  
  .hamburger-inner {
    width: 17px;
    height: 1.6px;
  }
  
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 17px;
    height: 1.6px;
  }
  
  .hamburger-inner::before {
    top: -5px;
  }
  
  .hamburger-inner::after {
    bottom: -5px;
  }
  
  nav {
    width: 270px;
    padding-top: 75px;
  }
  
  nav a {
    padding: 12px 16px;
    font-size: 12.5px;
  }
  
  nav a.donate-mobile {
    margin: 14px 16px;
    padding: 12px 16px;
    font-size: 12.5px;
  }
  
  .mobile-menu-header {
    padding: 14px 16px;
  }
  
  .mobile-menu-title {
    font-size: 14px;
  }
  
  .mobile-menu-subtitle {
    font-size: 10.5px;
  }
}

/* ============================================
   HERO SECTION - MODERN & CLEAN
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;

  background:
    linear-gradient(
      135deg,
      rgba(5, 63, 92, 0.7),
      rgba(66, 158, 189, 0.7)
    ),
    url("./image/166473.webp");

  background-size: cover;
  background-position: center;
  background-attachment: scroll;

  overflow: hidden;
  padding: 120px 20px 60px;
}



.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bismillah img {
  width: 220px;
  margin-bottom: 24px;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero p { font-size: clamp(18px, 2vw, 16px); margin-bottom: 32px; opacity: 0.95; font-weight: 300; }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cta-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.cta-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 173, 25, 0.3);
}

.cta-secondary {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}

.cta-secondary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.cta-btn:active {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE HERO BUTTONS
   ============================================ */

@media (max-width: 768px) {
  .hero-actions {
    gap: 14px;
    margin-top: 28px;
  }
  
  .cta-btn {
    padding: 13px 28px;
    font-size: 13.5px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    gap: 12px;
    margin-top: 24px;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-btn {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    gap: 10px;
    margin-top: 22px;
    max-width: 280px;
  }
  
  .cta-btn {
    padding: 11px 22px;
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    gap: 8px;
    margin-top: 20px;
    max-width: 260px;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: 100px 20px 50px;
  }
  
  .bismillah img {
    width: 180px;
    margin-bottom: 20px;
  }
  
  .hero h1 {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 14px;
  }
  
  .hero p {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 0 10px;
  }
  
  .cta-btn {
    padding: 13px 28px;
    font-size: 13.5px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 450px;
    padding: 90px 15px 40px;
  }
  
  .bismillah img {
    width: 160px;
    margin-bottom: 18px;
  }
  
  .hero h1 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  
  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 0 8px;
  }
  
  .cta-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 420px;
    padding: 85px 12px 35px;
  }
  
  .bismillah img {
    width: 150px;
    margin-bottom: 16px;
  }
  
  .hero h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 13.5px;
    margin-bottom: 22px;
  }
  
  .cta-btn {
    padding: 11px 22px;
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 400px;
    padding: 80px 10px 30px;
  }
  
  .bismillah img {
    width: 140px;
    margin-bottom: 14px;
  }
  
  .hero h1 {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ============================================
   ABOUT SECTION - MINIMAL & ELEGANT
   ============================================ */

.about {
  padding: 80px 5%;
  background: var(--bg-primary);
}

.about-row {
  display: flex;
  align-items: stretch;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.about-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-image {
  flex: 0 0 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-row.reverse .about-image {
  flex: 0 0 400px;
}

.about-row.reverse .about-image img {
  max-height: 295px;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-content {
  flex: 1;
}

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
  text-align: justify;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.about-content ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
  text-align: left;
}

.about-content ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .about {
    padding: 60px 5%;
  }
  
  .about-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 70px;
  }
  
  .about-row.reverse {
    flex-direction: column;
  }
  
  .about-image,
  .about-row.reverse .about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  
  .about-image img,
  .about-row.reverse .about-image img {
    max-height: 320px;
    width: 100%;
  }
  
  .about-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .about-content p {
    font-size: 14.5px;
    line-height: 1.7;
  }
  
  .about-content ul li {
    font-size: 14.5px;
  }
}

@media (max-width: 430px) {
  .about {
    padding: 50px 4%;
  }
  
  .about-row {
    gap: 25px;
    margin-bottom: 60px;
  }
  
  .about-image img,
  .about-row.reverse .about-image img {
    max-height: 280px;
  }
  
  .about-content h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  
  .about-content p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  
  .about-content h3 {
    font-size: 15px;
    margin: 20px 0 10px;
  }
  
  .about-content ul li {
    font-size: 14px;
    padding: 7px 0 7px 20px;
  }
  
  .label {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

@media (max-width: 390px) {
  .about {
    padding: 45px 3.5%;
  }
  
  .about-row {
    gap: 22px;
    margin-bottom: 55px;
  }
  
  .about-image img,
  .about-row.reverse .about-image img {
    max-height: 250px;
  }
  
  .about-content h2 {
    font-size: 21px;
  }
  
  .about-content p {
    font-size: 13.5px;
  }
  
  .about-content h3 {
    font-size: 14.5px;
  }
  
  .about-content ul li {
    font-size: 13.5px;
    padding-left: 18px;
  }
}

@media (max-width: 360px) {
  .about {
    padding: 40px 3%;
  }
  
  .about-row {
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .about-image img,
  .about-row.reverse .about-image img {
    max-height: 230px;
  }
  
  .about-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .about-content p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .about-content h3 {
    font-size: 14px;
    margin: 18px 0 9px;
  }
  
  .about-content ul li {
    font-size: 13px;
    padding: 6px 0 6px 16px;
  }
  
  .label {
    font-size: 10.5px;
  }
}

/* ============================================
   DONATION SLIDER SECTION - CLEAN & COMPACT
   ============================================ */

.donation-slider {
  padding: 80px 5%;
  background: var(--bg-secondary);
}

.donation-cards-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.donation-cards {
  display: flex;
  gap: 24px;
  padding: 8px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.donation-cards.has-slider {
  justify-content: flex-start;
}

.donation-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.donation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.donation-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.donation-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.donation-card:hover .donation-card-image img {
  transform: scale(1.05);
}

.donation-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.donation-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.donation-description {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.donation-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.progress-container {
  margin-bottom: 16px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-donate {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .donation-slider {
    padding: 60px 5%;
  }
  
  .donation-cards {
    gap: 16px;
    padding: 8px 4%;
  }
  
  .donation-card {
    flex: 0 0 85%;
    min-width: 85%;
  }
  
  .donation-card-image {
    height: 180px;
  }
  
  .donation-card-content {
    padding: 18px;
  }
  
  .donation-card-content h3 {
    font-size: 17px;
  }
  
  .donation-description {
    font-size: 12.5px;
  }
  
  .stat-value {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .donation-slider {
    padding: 50px 4%;
  }
  
  .donation-cards {
    gap: 14px;
    padding: 8px 3%;
  }
  
  .donation-card {
    flex: 0 0 88%;
    min-width: 88%;
  }
  
  .donation-card-image {
    height: 160px;
  }
  
  .donation-card-content {
    padding: 16px;
  }
  
  .donation-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .donation-description {
    font-size: 12px;
    margin-bottom: 14px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .donation-stats {
    padding: 10px;
    gap: 10px;
    margin-bottom: 14px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .stat-value {
    font-size: 13px;
  }
  
  .progress-bar {
    height: 6px;
    margin-bottom: 5px;
  }
  
  .progress-text {
    font-size: 11px;
  }
  
  .btn-donate {
    padding: 11px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .donation-slider {
    padding: 45px 3.5%;
  }
  
  .donation-cards {
    gap: 12px;
    padding: 6px 2%;
  }
  
  .donation-card {
    flex: 0 0 90%;
    min-width: 90%;
  }
  
  .donation-card-image {
    height: 150px;
  }
  
  .donation-card-content {
    padding: 15px;
  }
  
  .donation-card-content h3 {
    font-size: 15.5px;
  }
  
  .donation-description {
    font-size: 11.5px;
    line-height: 1.5;
  }
  
  .donation-stats {
    padding: 9px;
    gap: 8px;
  }
  
  .stat-label {
    font-size: 9.5px;
  }
  
  .stat-value {
    font-size: 12.5px;
  }
  
  .btn-donate {
    padding: 10px;
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .donation-slider {
    padding: 40px 3%;
  }
  
  .donation-cards {
    gap: 10px;
    padding: 5px 1%;
  }
  
  .donation-card {
    flex: 0 0 92%;
    min-width: 92%;
  }
  
  .donation-card-image {
    height: 140px;
  }
  
  .donation-card-content {
    padding: 14px;
  }
  
  .donation-card-content h3 {
    font-size: 15px;
  }
  
  .donation-description {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .donation-stats {
    padding: 8px;
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .stat-label {
    font-size: 9px;
  }
  
  .stat-value {
    font-size: 12px;
  }
  
  .progress-bar {
    height: 5px;
  }
  
  .progress-text {
    font-size: 10px;
  }
  
  .btn-donate {
    padding: 9px;
    font-size: 12px;
  }
}

/* ============================================
   VOLUNTEER SECTION - PERBAIKAN LAYOUT MOBILE
   ============================================ */

.volunteer {
  padding: 80px 5%;
  background: var(--bg-primary);
}

.volunteer-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.volunteer-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop: Gambar di kiri, konten di kanan */
.volunteer-image {
  flex: 0 0 420px;
  order: 1;
}

.volunteer-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  min-height: 650px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: block;
}

.volunteer-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.volunteer-content {
  flex: 1;
  order: 2;
  display: flex;
  flex-direction: column;
}

.volunteer-content h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.volunteer-content > p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
  text-align: justify;
}

.volunteer-benefits {
  margin: 24px 0 32px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}

.volunteer-benefits h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.volunteer-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.volunteer-benefits ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}

.volunteer-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.volunteer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
}

.volunteer-actions .btn {
  flex: 1;
  min-width: 200px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* MOBILE LAYOUT PERBAIKAN: Gambar di ATAS */
@media (max-width: 768px) {
  .volunteer {
    padding: 60px 5%;
  }
  
  .volunteer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  /* PERBAIKAN: Gambar di atas (order: 1) */
  .volunteer-image {
    flex: 0 0 auto;
    width: 100%;
    order: 1; /* Diubah dari 2 menjadi 1 */
  }
  
  .volunteer-image img {
    max-height: 350px;
    min-height: 300px;
    width: 100%;
  }
  
  /* PERBAIKAN: Konten di bawah (order: 2) */
  .volunteer-content {
    order: 2; /* Diubah dari 1 menjadi 2 */
  }
  
  .volunteer-content h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  .volunteer-content > p {
    font-size: 14.5px;
    line-height: 1.7;
  }
  
  .volunteer-benefits {
    margin: 20px 0 28px;
    padding: 18px;
  }
  
  .volunteer-benefits h3 {
    font-size: 15px;
  }
  
  .volunteer-benefits ul li {
    font-size: 13.5px;
    padding-left: 26px;
  }
  
  .volunteer-actions {
    gap: 14px;
  }
  
  .volunteer-actions .btn {
    min-width: 100%;
  }
}

@media (max-width: 430px) {
  .volunteer {
    padding: 50px 4%;
  }
  
  .volunteer-container {
    gap: 25px;
  }
  
  .volunteer-image img {
    max-height: 300px;
    min-height: 250px;
  }
  
  .volunteer-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .volunteer-content > p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  
  .volunteer-benefits {
    margin: 18px 0 24px;
    padding: 16px;
  }
  
  .volunteer-benefits h3 {
    font-size: 14.5px;
    margin-bottom: 10px;
  }
  
  .volunteer-benefits ul li {
    font-size: 13px;
    padding: 7px 0 7px 24px;
  }
  
  .volunteer-benefits ul li::before {
    font-size: 15px;
  }
  
  .volunteer-actions {
    gap: 12px;
  }
  
  .btn-whatsapp,
  .volunteer-actions .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .volunteer {
    padding: 45px 3.5%;
  }
  
  .volunteer-container {
    gap: 22px;
  }
  
  .volunteer-image img {
    max-height: 270px;
    min-height: 230px;
  }
  
  .volunteer-content h2 {
    font-size: 21px;
  }
  
  .volunteer-content > p {
    font-size: 13.5px;
  }
  
  .volunteer-benefits {
    padding: 15px;
    margin: 16px 0 22px;
  }
  
  .volunteer-benefits h3 {
    font-size: 14px;
  }
  
  .volunteer-benefits ul li {
    font-size: 12.5px;
    padding-left: 22px;
  }
  
  .volunteer-actions .btn {
    padding: 10px 18px;
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .volunteer {
    padding: 40px 3%;
  }
  
  .volunteer-container {
    gap: 20px;
  }
  
  .volunteer-image img {
    max-height: 250px;
    min-height: 210px;
  }
  
  .volunteer-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .volunteer-content > p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .volunteer-benefits {
    padding: 14px;
    margin: 14px 0 20px;
  }
  
  .volunteer-benefits h3 {
    font-size: 13.5px;
  }
  
  .volunteer-benefits ul li {
    font-size: 12px;
    padding: 6px 0 6px 20px;
  }
  
  .volunteer-benefits ul li::before {
    font-size: 14px;
    left: 6px;
  }
  
  .volunteer-actions .btn {
    padding: 9px 16px;
    font-size: 12px;
  }
}

/* ============================================
   NEWS & EVENTS - MODERN CARD DESIGN
   ============================================ */

.news-events {
  padding: 80px 5%;
  background: var(--bg-primary);
}

.news-events:nth-of-type(even) {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.slider-container .slider-btn {
  display: none;
}

.slider-container.has-slider .slider-btn {
  display: flex;
}

.cards-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.cards {
  display: flex;
  gap: 24px;
  padding: 8px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cards.has-slider {
  justify-content: flex-start;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 0 0 320px;
  min-width: 320px;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.event-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-content .date {
  display: inline-block;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
}

.card-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.card-content h3 a:hover {
  color: var(--primary);
}

.card-content > p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.read-more:hover {
  gap: 8px;
  color: var(--primary-dark);
}

.card.event .card-content {
  padding: 20px;
  gap: 12px;
}

.card.event .card-content h3 {
  font-size: 18px;
  margin: 0;
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 14px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.event-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
}

.event-info .location {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-all-container {
  text-align: center;
  margin-top: 48px;
}

.skeleton {
  pointer-events: none;
}

.img-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.card-image-skeleton {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-text {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 300px;
  width: 100%;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.empty-state.error p {
  color: #dc2626;
}

@media (max-width: 768px) {
  .news-events {
    padding: 60px 5%;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 14.5px;
    padding: 0 10px;
  }
  
  .slider-container {
    padding: 0 45px 35px;
  }
  
  .cards {
    gap: 16px;
    padding: 8px 4%;
  }
  
  .card {
    flex: 0 0 85%;
    min-width: 85%;
  }
  
  .card-image {
    height: 180px;
  }
  
  .card-content {
    padding: 18px;
    gap: 8px;
  }
  
  .card-content h3 {
    font-size: 16px;
  }
  
  .card-content > p {
    font-size: 12.5px;
  }
  
  .read-more {
    font-size: 12.5px;
  }
  
  .event-info {
    padding: 12px;
    gap: 5px;
  }
  
  .event-info .location {
    font-size: 13px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .slider-btn.prev {
    left: 8px;
  }
  
  .slider-btn.next {
    right: 8px;
  }
}

@media (max-width: 430px) {
  .news-events {
    padding: 50px 4%;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .section-header p {
    font-size: 14px;
    padding: 0 8px;
  }
  
  .slider-container {
    padding: 0 40px 30px;
  }
  
  .cards {
    gap: 14px;
    padding: 8px 3%;
  }
  
  .card {
    flex: 0 0 88%;
    min-width: 88%;
  }
  
  .card-image {
    height: 160px;
  }
  
  .card-content {
    padding: 16px;
    gap: 6px;
  }
  
  .card-content h3 {
    font-size: 15.5px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .card-content > p {
    font-size: 12px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .event-badge {
    padding: 5px 10px;
    font-size: 10px;
  }
  
  .card.event .card-content h3 {
    font-size: 16px;
  }
  
  .event-info {
    padding: 10px;
  }
  
  .event-info p {
    font-size: 12px;
  }
  
  .event-info .location {
    font-size: 12.5px;
  }
  
  .read-more {
    font-size: 12px;
  }
  
  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  
  .slider-btn.prev {
    left: 3px;
  }
  
  .slider-btn.next {
    right: 3px;
  }
}

@media (max-width: 390px) {
  .news-events {
    padding: 45px 3.5%;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .section-header p {
    font-size: 13.5px;
  }
  
  .slider-container {
    padding: 0 38px 28px;
  }
  
  .cards {
    gap: 12px;
    padding: 6px 2%;
  }
  
  .card {
    flex: 0 0 90%;
    min-width: 90%;
  }
  
  .card-image {
    height: 150px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-content h3 {
    font-size: 15px;
  }
  
  .card-content > p {
    font-size: 11.5px;
  }
  
  .event-badge {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 9.5px;
  }
  
  .card.event .card-content h3 {
    font-size: 15.5px;
  }
  
  .event-info {
    padding: 9px;
  }
  
  .event-info p {
    font-size: 11.5px;
  }
  
  .event-info .location {
    font-size: 12px;
  }
  
  .read-more {
    font-size: 11.5px;
  }
  
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .news-events {
    padding: 40px 3%;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 21px;
  }
  
  .section-header p {
    font-size: 13px;
  }
  
  .slider-container {
    padding: 0 36px 25px;
  }
  
  .cards {
    gap: 10px;
    padding: 5px 1%;
  }
  
  .card {
    flex: 0 0 92%;
    min-width: 92%;
  }
  
  .card-image {
    height: 140px;
  }
  
  .card-content {
    padding: 14px;
  }
  
  .card-content h3 {
    font-size: 14.5px;
  }
  
  .card-content > p {
    font-size: 11px;
  }
  
  .card.event .card-content h3 {
    font-size: 15px;
  }
  
  .event-info {
    padding: 8px;
  }
  
  .event-info p {
    font-size: 11px;
  }
  
  .event-info .location {
    font-size: 11.5px;
  }
  
  .read-more {
    font-size: 11px;
  }
  
  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  
  .slider-btn.prev {
    left: 2px;
  }
  
  .slider-btn.next {
    right: 2px;
  }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--text-primary);
  color: white;
  padding: 60px 5% 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-about h3,
.contact-form h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-about p {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.social-icons img {
  width: 18px;
  height: 18px;
}

.login-link {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.login-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 13px;
}

@media (max-width: 768px) {
  footer {
    padding: 50px 5% 0;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-about h3,
  .contact-form h3 {
    font-size: 19px;
  }
  
  .footer-about p {
    font-size: 13.5px;
  }
  
  .social-icons a {
    width: 38px;
    height: 38px;
  }
  
  .social-icons img {
    width: 17px;
    height: 17px;
  }
  
  .login-link {
    padding: 9px 18px;
    font-size: 12.5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 11px 15px;
    font-size: 13.5px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom p {
    font-size: 12.5px;
  }
}

@media (max-width: 430px) {
  footer {
    padding: 45px 4% 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-about h3,
  .contact-form h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .footer-about p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.65;
  }
  
  .social-icons {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
  }
  
  .social-icons img {
    width: 16px;
    height: 16px;
  }
  
  .login-link {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .contact-form textarea {
    min-height: 90px;
  }
  
  .footer-bottom {
    padding: 18px 0;
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  footer {
    padding: 40px 3.5% 0;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-about h3,
  .contact-form h3 {
    font-size: 17px;
  }
  
  .footer-about p {
    font-size: 12.5px;
  }
  
  .social-icons a {
    width: 34px;
    height: 34px;
  }
  
  .social-icons img {
    width: 15px;
    height: 15px;
  }
  
  .login-link {
    padding: 7px 14px;
    font-size: 11.5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 9px 13px;
    font-size: 12.5px;
  }
  
  .contact-form textarea {
    min-height: 80px;
  }
  
  .footer-bottom {
    padding: 16px 0;
  }
  
  .footer-bottom p {
    font-size: 11.5px;
  }
}

@media (max-width: 360px) {
  footer {
    padding: 35px 3% 0;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-about h3,
  .contact-form h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer-about p {
    font-size: 12px;
    margin-bottom: 18px;
  }
  
  .social-icons {
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }
  
  .social-icons img {
    width: 14px;
    height: 14px;
  }
  
  .login-link {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .contact-form textarea {
    min-height: 70px;
  }
  
  .footer-bottom {
    padding: 14px 0;
  }
  
  .footer-bottom p {
    font-size: 11px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: white;
  border-color: var(--text-primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .btn {
    padding: 11px 24px;
    font-size: 13.5px;
  }
  
  .btn-sm {
    padding: 9px 18px;
    font-size: 12.5px;
  }
}

@media (max-width: 430px) {
  .btn {
    padding: 10px 22px;
    font-size: 13px;
  }
  
  .btn-sm {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .btn {
    padding: 9px 20px;
    font-size: 12.5px;
  }
}

@media (max-width: 360px) {
  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/* ============================================
   MOBILE SWIPE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
  .slider-container .slider-btn {
    display: flex !important;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }

  .donation-cards,
  .cards {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
  }

  .donation-cards:active,
  .cards:active {
    cursor: grabbing;
  }

  .donation-card,
  .card {
    user-select: none;
    -webkit-user-select: none;
  }

  .slider-container::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--text-light);
    animation: swipeHint 2s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes swipeHint {
    0%,
    100% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
  }

  .slider-container.interacted::after {
    display: none;
  }

  .donation-cards-wrapper,
  .cards-wrapper {
    -webkit-overflow-scrolling: touch;
  }

  .slider-container {
    padding: 0 40px 35px;
    position: relative;
  }
}

@media (max-width: 430px) {
  .slider-container::after {
    font-size: 11px;
    bottom: -25px;
  }
  
  .slider-container {
    padding: 0 36px 30px;
  }
}

@media (max-width: 390px) {
  .slider-container::after {
    font-size: 10.5px;
    bottom: -22px;
  }
  
  .slider-container {
    padding: 0 34px 28px;
  }
}

@media (max-width: 360px) {
  .slider-container::after {
    font-size: 10px;
    bottom: -20px;
  }
  
  .slider-container {
    padding: 0 32px 25px;
  }
}

.donation-cards-wrapper::-webkit-scrollbar,
.cards-wrapper::-webkit-scrollbar {
  display: none;
}

.donation-cards-wrapper,
.cards-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}