/*
Theme Name: Twenty Twenty-Four Child
...
Template: twentytwentyfour
...
*/


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

:root {
    --gold: #E9A93B;
    --gold-light: #F5C96A;
    --dark: #1A1A2E;
    --dark2: #16213E;
    --teal: #2E7D8C;
    --teal-light: #4AABB8;
    --cream: #FAF7F2;
    --text: #333344;
    --muted: #777788;
    --white: #ffffff;
    --card-bg: #f0ede8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color .2s;
}

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

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

/* ── NAV DROPDOWNS ── */
nav ul.nav-links li.nav-item {
    position: relative;
    list-style: none;
}

nav ul.nav-links li.nav-item.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

nav ul.nav-links li.nav-item.has-dropdown:hover>a {
    color: var(--gold);
}

nav .nav-chevron {
    display: inline-block;
    font-style: normal;
    font-size: 0.7rem;
    margin-left: 3px;
    opacity: 0.5;
    transform: rotate(90deg);
    transition: transform .2s, opacity .2s;
    vertical-align: middle;
    line-height: 1;
}

nav ul.nav-links li.nav-item.has-dropdown:hover .nav-chevron {
    transform: rotate(270deg);
    opacity: 1;
    color: var(--gold);
}

/* Dropdown panel */
nav ul.nav-links li.nav-item .nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 8px;
    min-width: 250px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 9999;
    /* Critical: override any inherited overflow/clip */
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
}

/* Bridge gap between link and panel */
nav ul.nav-links li.nav-item .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

/* Arrow notch */
nav ul.nav-links li.nav-item .nav-dropdown::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    z-index: 1;
}

/* Show on hover */
nav ul.nav-links li.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
nav ul.nav-links li.nav-item .nav-dropdown a.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background .15s;
    border-top: none;
    margin: 0;
}

nav ul.nav-links li.nav-item .nav-dropdown a.nav-dropdown-item:hover {
    background: var(--cream);
}

nav ul.nav-links li.nav-item .nav-dropdown a.nav-dropdown-item+a.nav-dropdown-item {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

nav ul.nav-links li.nav-item .nav-dropdown .nav-dropdown-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background .15s;
}

nav ul.nav-links li.nav-item .nav-dropdown a.nav-dropdown-item:hover .nav-dropdown-icon {
    background: rgba(233, 169, 59, 0.15);
}

nav ul.nav-links li.nav-item .nav-dropdown .nav-dropdown-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    display: block;
    transition: color .15s;
}

nav ul.nav-links li.nav-item .nav-dropdown a.nav-dropdown-item:hover .nav-dropdown-label {
    color: var(--gold);
}

nav ul.nav-links li.nav-item .nav-dropdown .nav-dropdown-sub {
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.3;
    display: block;
}

/* Fix nav itself to not clip children */
nav {
    overflow: visible !important;
}

nav ul.nav-links {
    overflow: visible !important;
}

.btn-outline {
    padding: 8px 20px;
    border: 1.5px solid var(--text);
    border-radius: 50px;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold {
    padding: 9px 22px;
    border: none;
    border-radius: 50px;
    background: var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    color: #fff;
}

.btn-gold:hover {
    background: #d4922a;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("https://test.iccharlotte.org/wp-content/uploads/2026/05/masjidhero.webp") center/cover no-repeat;
    padding-top: 72px;
}

.hero-bg-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 60%, rgba(46, 125, 140, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(233, 169, 59, 0.12) 0%, transparent 60%);
}

.hero-mosque {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 62%;
    object-fit: contain;
}

/* SVG mosque illustration */
.mosque-svg-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 0 48px 80px;
    animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 169, 59, 0.15);
    border: 1px solid rgba(233, 169, 59, 0.4);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #b07d1a;
    margin-bottom: 24px;
    letter-spacing: .04em;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 400px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 30px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #d4922a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 169, 59, 0.4);
}

.btn-secondary {
    padding: 14px 30px;
    background: transparent;
    color: var(--dark);
    border: 2px solid rgba(26, 26, 46, 0.25);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--dark);
}

/* Mosque SVG */
.hero-illustration {
    display: none !important;
}

.HERO_ILLUS_HIDDEN {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 90%;
}

/* ── PRAYER TIMES ── */
.prayer-section {
    background: var(--cream);
    padding: 80px 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.section-desc {
    max-width: 360px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

.prayer-card {
    background: var(--dark2);
    border-radius: 20px;
    padding: 36px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.prayer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cellipse cx='200' cy='150' rx='180' ry='120' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='40'/%3E%3Cellipse cx='200' cy='150' rx='120' ry='80' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='30'/%3E%3C/svg%3E") center/cover;
}

.prayer-mosque-bg {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 260px;
    opacity: 0.08;
    pointer-events: none;
}

.prayer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.jumah-box,
.chouruk-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 24px;
    min-width: 140px;
}

.prayer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.prayer-time-small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.prayer-time-small span {
    display: block;
}

.prayer-center {
    text-align: center;
}

.prayer-center .mosque-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.clock {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1;
}

.prayer-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
}

.prayer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.prayer-item {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .2s;
}

.prayer-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.prayer-item .p-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.prayer-item .p-time {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.prayer-item .p-time span {
    display: block;
}

/* ── WHAT WE DO ── */
.what-section {
    padding: 90px 48px;
    text-align: center;
}

.section-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-center .section-title {
    margin-bottom: 16px;
}

.section-center .section-desc {
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
}

/* ── CAROUSEL ── */
.carousel-outer {
    position: relative;
    overflow: hidden;
    /* extra vertical padding so hover lift isn't clipped */
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.cards-row {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.activity-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 340px;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    /* 3 visible cards with 2 gaps between them */
    flex: 0 0 calc((100% - 2 * 24px) / 3);
    min-width: 0;
}

.activity-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.activity-card:hover {
    transform: translateY(-6px);
}

.activity-card img,
.activity-card .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.activity-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.activity-card .overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.activity-card .overlay-content p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.carousel-btns {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    right: -20px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    pointer-events: all;
    transition: background .2s, transform .15s;
}

.carousel-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.08);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .25s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ── MAGAZINE / FEATURES ── */
.features-section {
    padding: 0 48px 90px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.feature-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-img {
    border-radius: 14px;
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.img-box {
    border-radius: 14px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    background: var(--cream);
    transition: background .2s;
}

.feature-item:hover {
    background: #ede8e0;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── DONATION ── */
.donation-section {
    padding: 90px 48px;
    background: var(--cream);
}

/* ── DONATION SECTION — REDESIGNED ── */
.donation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── LEFT CONTEXT PANEL ── */
.donation-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.donation-title {
    line-height: 1.1;
    margin-bottom: 20px;
}

.donation-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 36px;
}

.donation-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}

.dstat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.dstat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 2px;
}

.dstat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

.donation-progress-wrap {
    margin-bottom: 32px;
}

.donation-progress-bar {
    height: 8px;
    border-radius: 50px;
    background: #e2ddd6;
    overflow: hidden;
    margin-bottom: 8px;
}

.donation-progress-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width .8s ease;
}

.donation-progress-pct {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
}

.donation-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-item {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 50px;
    padding: 6px 14px;
}

/* ── RIGHT FORM CARD ── */
.donation-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

/* Frequency toggle */
.dform-freq-toggle {
    display: flex;
    gap: 6px;
    background: #f3f0ea;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 24px;
}

.dfreq-btn {
    flex: 1;
    padding: 8px 10px;
    border: none;
    border-radius: 7px;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
}

.dfreq-btn.active {
    background: #fff;
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

/* Label */
.dform-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: .03em;
}

/* Amount chips */
.dform-chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.dchip {
    padding: 12px 6px;
    border-radius: 10px;
    border: 1.5px solid #e0ddd8;
    background: #faf8f5;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all .18s;
}

.dchip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.dchip.active {
    background: rgba(233, 169, 59, 0.12);
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

/* Custom amount input */
.dform-custom-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0ddd8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s;
}

.dform-custom-wrap:focus-within {
    border-color: var(--gold);
}

.dform-currency {
    padding: 0 10px 0 14px;
    font-size: 1rem;
    color: var(--muted);
    pointer-events: none;
}

.dform-currency-label {
    padding: 0 14px;
    font-size: 0.82rem;
    color: var(--muted);
    border-left: 1px solid #e0ddd8;
}

.dform-custom-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    padding: 10px 0;
    background: transparent;
}

.dform-custom-input::-webkit-inner-spin-button,
.dform-custom-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Fund select */
.dform-select-wrap {
    position: relative;
}

.dform-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding: 11px 40px 11px 14px;
    border: 1.5px solid #e0ddd8;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: #faf8f5;
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
}

.dform-select:focus {
    border-color: var(--gold);
}

.dform-select-chevron {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

/* Name + email row */
.dform-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dform-inp {
    padding: 11px 14px;
    border: 1.5px solid #e0ddd8;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
    background: #faf8f5;
}

.dform-inp:focus {
    border-color: var(--gold);
}

.dform-inp::placeholder {
    color: #aaa;
}

/* Fine print */
.dform-fine {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .donation-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dform-chips {
        grid-template-columns: repeat(2, 1fr);
    }

    .dform-two-col {
        grid-template-columns: 1fr;
    }
}

/* ── ACTIVITIES / SCHEDULE ── */
.activities-section {
    padding: 90px 48px;
    background: var(--dark);
}

.schedule-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.schedule-intro .section-title {
    color: #fff;
    margin-top: 8px;
}

.schedule-intro .section-desc {
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
    text-align: left;
}

.schedule-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

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

/* Friday spans 2 cols to feel prominent */
.day-card--friday {
    grid-column: span 1;
}

.day-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 20px;
    transition: background .25s, border-color .25s;
}

.day-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.day-card--friday {
    background: linear-gradient(135deg, rgba(233, 169, 59, 0.1), rgba(233, 169, 59, 0.04));
    border-color: rgba(233, 169, 59, 0.28);
}

.day-card--friday:hover {
    background: linear-gradient(135deg, rgba(233, 169, 59, 0.16), rgba(233, 169, 59, 0.07));
    border-color: rgba(233, 169, 59, 0.45);
}

.day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.day-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.day-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(233, 169, 59, 0.14);
    border: 1px solid rgba(233, 169, 59, 0.32);
    border-radius: 50px;
    padding: 3px 9px;
}

.day-programs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.program-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background .2s;
}

.program-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.program-time {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
}

.program-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.program-meta {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 90px 48px;
    background: var(--cream);
    text-align: center;
}

.testimonials-section .section-title {
    margin-bottom: 12px;
}

.testimonials-section .section-desc {
    max-width: 480px;
    margin: 0 auto 48px;
    text-align: center;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.t-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    transition: box-shadow .2s;
}

.t-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.t-card.featured {
    background: var(--dark2);
    color: #fff;
}

.t-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.t-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 20px;
}

.t-card.featured .t-text {
    color: rgba(255, 255, 255, 0.65);
}

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

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.t-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.t-role {
    font-size: 0.78rem;
    color: var(--muted);
}

.t-card.featured .t-role {
    color: rgba(255, 255, 255, 0.5);
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 48px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
}

footer h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: .04em;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer ul a {
    text-decoration: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color .2s;
}

footer ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 12px;
}

/* ── UTILITIES ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Color placeholders for images */
.ph-blue {
    background: linear-gradient(135deg, #b8d8e8, #7ab0c8);
}

.ph-warm {
    background: linear-gradient(135deg, #e8c89a, #c89060);
}

.ph-green {
    background: linear-gradient(135deg, #a8c8a0, #688860);
}

.ph-dark {
    background: linear-gradient(135deg, #4a5a70, #2a3a50);
}

.ph-teal {
    background: linear-gradient(135deg, #7accc8, #3a9898);
}

.ph-gold {
    background: linear-gradient(135deg, #e8c860, #c89830);
}

/* Responsive */
@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 60px 24px 60px;
    }

    .hero-illustration {
        display: none !important;
    }

    .HERO_ILLUS_HIDDEN {
        display: none;
    }

    .prayer-section,
    .what-section,
    .features-section,
    .donation-section,
    .activities-section,
    .testimonials-section {
        padding: 60px 24px;
    }

    .prayer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-row,
    .features-grid,
    .donation-inner,
    .activities-inner,
    .testimonials-track,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .photo-tile.wide {
        grid-column: span 1;
    }

    footer {
        padding: 40px 24px 20px;
    }
}