/**
 * Amsakah Rescue - Simple & Clean Stylesheet
 */

/* ===== CSS Variables ===== */
:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #888;
    --bg: #fafafa;
    --white: #fff;
    --border: #e5e5e5;
    --footer-bg: #1a1a1a;
    --overlay: rgba(0, 0, 0, 0.85);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --radius: 8px;
    --font: 'Open Sans', sans-serif;
    --container: 1100px;
}

/* ===== Skip Link (Accessibility) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 70px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* ===== Layout ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
}

/* ===== Typography ===== */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
}

.logo-name {
    font-weight: 700;
    font-size: 18px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

.nav-donate {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius);
}

.nav-donate:hover {
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.2s;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url('../images/gallery/hero-image.webp') center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(46,125,50,0.75), rgba(27,94,32,0.65));
}

.hero-content {
    max-width: 600px;
    padding: 40px 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(26px, 4.5vw, 42px);
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-actions .btn {
    min-width: 150px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* ===== Trust Banner ===== */
.trust-banner {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-banner .trust-item {
    color: var(--text);
    flex-direction: column;
    gap: 4px;
}

.trust-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.trust-text {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== About ===== */
.about {
    background: var(--primary);
    padding: 90px 0;
    position: relative;
}

.section-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.03;
}

.section-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-content .section-label {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 8px;
}

.about-content .section-title {
    color: white;
    font-size: 32px;
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 15px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.values-cards {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.value-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: default;
    transition: all 0.25s;
}

.value-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.value-icon {
    color: var(--primary);
    transition: color 0.25s;
}

.value-card:hover .value-icon {
    color: white;
}

/* ===== Programs ===== */
.programs {
    background: var(--bg);
    padding: 90px 0;
}

.programs-header {
    text-align: center;
    margin-bottom: 45px;
}

.programs-header p {
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.program-image {
    height: 160px;
    position: relative;
}

.program-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95));
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.program-card:hover .program-image img {
    transform: scale(1.03);
}

.program-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

/* ===== Gallery ===== */
.gallery {
    background: white;
    padding: 90px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: zoom-in;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(46,125,50,0);
    transition: background 0.3s;
}

.gallery-item:hover::after {
    background: rgba(46,125,50,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-footer {
    text-align: center;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
}

.gallery-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: white;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* ===== Donation ===== */
.donate {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
}

.donate-main {
    margin-bottom: 50px;
}

.donate-main .section-label {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 10px;
}

.donate-main .section-title {
    color: white;
    font-size: 32px;
    margin-bottom: 14px;
}

.donate-desc {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}

.donate-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.qris-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    max-width: 320px;
    margin: 0 auto;
}

.qris-popup {
    cursor: pointer;
}

.qris-header {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qris-logo {
    height: 65px;
}

.qris-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.qris-frame {
    background: var(--bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    position: relative;
}

.qris-frame img {
    max-width: 180px;
}

.qris-info {
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--border);
}

.qris-recipient {
    font-size: 13px;
    color: var(--text-light);
}

.qris-recipient .qris-id {
    font-family: monospace;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.qris-expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-left: 6px;
    vertical-align: middle;
}

.qris-hint {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.qris-popup {
    cursor: pointer;
}

/* QRIS Modal */
.qris-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
}

.qris-modal.active {
    opacity: 1;
    visibility: visible;
}

.qris-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
}

.qris-modal-close:hover {
    background: rgba(255,255,255,0.25);
}

.qris-modal-content {
    text-align: center;
    max-width: 400px;
}

.qris-modal-content img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.qris-modal-hint {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 20px;
}

.bank-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bank-card {
    background: white;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.bank-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.bank-logo {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-initial {
    font-size: 10px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.bank-name {
    font-weight: 600;
    font-size: 15px;
}

.bank-label {
    font-size: 12px;
    color: var(--text-muted);
}

.bank-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.bank-number {
    font-family: monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.copy-btn:active {
    transform: scale(0.98);
}

/* ===== Contact ===== */
.contact {
    background: var(--bg);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-main {
    padding-right: 20px;
}

.contact-main .section-label {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.contact-main .section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-desc {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.25s;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(46,125,50,0.1);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.25s;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
}

.contact-arrow {
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s;
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.contact-map {
    height: 420px;
    border-radius: 16px;
    border: 2px solid #d0d0d0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    font-size: 13px;
    font-weight: 500;
}

.contact-map-wrapper {
    position: relative;
}

/* ===== Footer ===== */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 35px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand .logo-name {
    color: white;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-style: italic;
    font-size: 14px;
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    box-shadow: var(--shadow-md);
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .donate-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px;
    }

    .qris-card { order: -1; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
        text-align: left;
    }

    .about-content .section-title {
        text-align: left;
    }

    .about-stats { justify-content: flex-start; }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .values-cards {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .programs-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 28px; }

    .section, .about, .gallery, .contact, .donate { padding: 60px 0; }

    .about-content .section-title,
    .contact-main .section-title,
    .donate-main .section-title { font-size: 26px; }

    .about-image img { height: 280px; }

    .values-cards {
        flex-wrap: wrap;
        padding: 10px;
    }

    .value-card {
        flex: 1;
        min-width: calc(33% - 8px);
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
    }

    .program-image { height: 180px; }

    .gallery-header { margin-bottom: 30px; }
    .gallery-header .section-title { font-size: 24px; }

    .contact-map { height: 350px; }
    .contact-card { padding: 16px; }
    .contact-icon { width: 44px; height: 44px; }

    .map-badge {
        bottom: 16px;
        left: 16px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .mobile-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hero {
        min-height: 480px;
        padding-top: 70px;
    }

    .hero-content { padding: 30px 20px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: 12px; }

    .hero-trust .trust-item {
        background: rgba(255,255,255,0.1);
        padding: 10px 14px;
        border-radius: 6px;
    }

    .trust-items { flex-wrap: wrap; gap: 24px 30px; }
    .trust-item { min-width: 100px; }

    .donate-main { margin-bottom: 35px; }
    .qris-card { padding: 20px; }
    .bank-card { padding: 18px 20px; }
    .bank-header { gap: 12px; margin-bottom: 14px; }
    .bank-logo { width: 42px; height: 42px; }
    .bank-number { font-size: 15px; }
    .copy-btn { padding: 8px 14px; font-size: 12px; }

    .footer {
        padding: 30px 0;
    }

    .footer-inner {
        gap: 12px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header { height: 60px; }
    .logo img { height: 34px; width: auto; }
    .logo-name { font-size: 16px; }
    .nav { top: 60px; }

    .skip-link:focus { top: 60px; }

    .hero { padding-top: 60px; min-height: 440px; }

    .section { padding: 50px 0; }
    .section-title { font-size: 24px; }

    .program-image { height: 180px; }
    .program-content { padding: 20px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }

    .contact { padding: 50px 0; }
    .contact-map { height: 280px; border-radius: 12px; }
    .contact-main .section-title { font-size: 24px; }
    .contact-card { padding: 14px; gap: 12px; }
    .contact-icon { width: 40px; height: 40px; }
    .contact-icon svg { width: 20px; height: 20px; }
    .contact-value { font-size: 13px; }
    .contact-arrow { display: none; }

    .map-badge {
        bottom: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .donate-main .section-title { font-size: 24px; }
    .bank-number { font-size: 13px; letter-spacing: 0.5px; }
    .bank-account { flex-direction: column; gap: 12px; text-align: center; }
    .copy-btn { width: 100%; justify-content: center; }
    .qris-card { padding: 18px; }
    .qris-frame { padding: 12px; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand .logo { justify-content: center; }
    .footer-brand .logo img {
        height: 40px;
        width: auto;
    }
    .social-links { justify-content: center; }
}
