/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1E4A;
    --green: #265B1E;
    --gold: #B77D1D;
    --terracotta: #804B15;
    --parchment: #E4D4B4;
    --white: #FFFFFF;
    --font-heading: 'Lora', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-soft: 0 20px 50px -12px rgba(10, 30, 74, 0.20);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.07);
    --shadow-card: 0 12px 40px rgba(10, 30, 74, 0.10);
    --shadow-hover: 0 24px 60px rgba(10, 30, 74, 0.16);
    --radius-card: 28px;
    --radius-pill: 60px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #1a1a1a;
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    display: inline-block;
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--parchment);
}
.section-label.gold {
    color: var(--gold);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 14px;
}
h2 .highlight {
    color: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.section-header p {
    color: #555;
    font-size: 1.1rem;
    font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(38, 91, 30, 0.30);
}
.btn-primary:hover {
    background: #1d4617;
    transform: translateY(-3px);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    padding: 16px 44px;
    border-radius: var(--radius-pill);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(183, 125, 29, 0.35);
}
.btn-gold:hover {
    background: #a06e1a;
    transform: translateY(-3px);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 13px 34px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
}
.btn-outline-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    padding: 13px 34px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--navy);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
}
.btn-outline-dark:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.btn-link {
    font-weight: 600;
    color: var(--green);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-link:hover {
    color: var(--gold);
}
.btn-link:hover i {
    transform: translateX(6px);
}
.btn-link-gold {
    color: var(--gold);
}
.btn-link-gold:hover {
    color: var(--navy);
}

/* ===== NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--white);
}
.logo-badge {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.logo-text .name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}
.logo-text .tagline {
    font-size: 0.55rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-list>li>a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.nav-dropdown {
    position: relative;
}
.dropdown-toggle i {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: var(--transition);
}
.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-mega {
    position: absolute;
    top: 42px;
    left: -100px;
    background: var(--white);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    width: 620px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
    pointer-events: none;
}
.nav-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}
.dropdown-col a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #1e1e1e;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}
.dropdown-col a i {
    width: 22px;
    color: var(--green);
    font-size: 0.9rem;
    text-align: center;
}
.dropdown-col a:hover {
    background: var(--parchment);
    color: var(--navy);
    transform: translateX(4px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.search-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.05rem;
    cursor: pointer;
    padding: 6px;
    opacity: 0.8;
}
.search-toggle:hover {
    opacity: 1;
    color: var(--gold);
}
.btn-donate-nav {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(183, 125, 29, 0.25);
}
.btn-donate-nav:hover {
    background: #a06e1a;
    transform: scale(1.03);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger .bar {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 30, 74, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-container {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 28px;
    width: 90%;
    max-width: 580px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: var(--font-body);
    padding: 18px 0;
    background: transparent;
    color: #1a1a1a;
}
.search-close {
    background: var(--navy);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-close:hover {
    background: var(--gold);
}

/* ===== HERO & SLIDESHOW ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: none !important;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    animation: heroFade 18s infinite;
}
.hero-slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}
.hero-slideshow .slide:nth-child(2) {
    animation-delay: 6s;
}
.hero-slideshow .slide:nth-child(3) {
    animation-delay: 12s;
}

@keyframes heroFade {
    0% { opacity: 0; }
    8% { opacity: 1; }
    30% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(145deg, rgba(10, 30, 74, 0.88) 0%, rgba(10, 30, 74, 0.55) 50%, rgba(10, 30, 74, 0.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: var(--white);
}

.hero-tag {
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
    padding-left: 18px;
}
.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.08;
    margin-bottom: 16px;
}
.hero-title .hero-sub {
    display: block;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-top: 4px;
}
.hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 580px;
    margin-bottom: 38px;
    line-height: 1.8;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: bounceDown 2.4s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== MOBILE HERO IMAGES (≤ 768px) ===== */
@media (max-width: 768px) {
    .hero-slideshow .slide:nth-child(1) {
        background-image: url('http://sankorelocal.local/wp-content/uploads/2026/08/website-hero-section-bgA.png') !important;
    }
    .hero-slideshow .slide:nth-child(2) {
        background-image: url('http://sankorelocal.local/wp-content/uploads/2026/08/website-hero-section-bgB.png') !important;
    }
    .hero-slideshow .slide:nth-child(3) {
        background-image: url('http://sankorelocal.local/wp-content/uploads/2026/08/website-hero-section-bgC.png') !important;
    }
}

/* ===== FEATURES ===== */
.features {
    margin-top: -56px;
    position: relative;
    z-index: 10;
    padding-bottom: 64px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-card);
    padding: 30px 22px 26px;
    text-align: center;
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 60px rgba(10, 30, 74, 0.12);
    border-color: var(--gold);
}
.feature-icon {
    font-size: 2.2rem;
    color: var(--green);
    margin-bottom: 14px;
    display: inline-block;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 0.88rem;
    color: #3a3a3a;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0 90px;
    background: var(--parchment);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 420px;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border: 4px solid var(--gold);
    border-radius: 20px;
    opacity: 0.25;
    z-index: -1;
}
.about-image {
    position: relative;
}
.about-text>p {
    font-size: 1.02rem;
    color: #2d2d2d;
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 300;
}
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.about-card-mini {
    background: var(--white);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}
.about-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.about-card-mini h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 2px;
}
.about-card-mini p {
    font-size: 0.82rem;
    color: #555;
    font-weight: 300;
}

/* ===== MEDIA SECTION (formerly Khutbahs) ===== */
.media-section {
    padding: 90px 0 80px;
    background: var(--navy);
    color: var(--white);
}
.media-section .section-header h2 {
    color: var(--white);
}
.media-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 44px;
}
.video-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}
.video-card:hover {
    transform: translateY(-8px);
}
.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #0a0a0a;
}
.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info {
    padding: 20px 24px 24px;
}
.video-badge {
    background: var(--gold);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 10px;
}
.video-info h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.8rem;
    color: #666;
}
.video-meta i {
    color: var(--green);
    width: 16px;
}
.media-cta {
    text-align: center;
}

/* ===== ACTIVITIES ===== */
.activities {
    padding: 80px 0;
    background: var(--parchment);
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}
.activity-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.activity-card:hover {
    transform: translateY(-8px);
}
.activity-card .card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}
.activity-card:hover .card-image {
    transform: scale(1.03);
}
.activity-card .card-image-wrap {
    overflow: hidden;
}
.activity-content {
    padding: 22px 24px 26px;
}
.activity-tag {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 4px;
}
.activity-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.activity-content p {
    color: #444;
    margin-bottom: 14px;
    font-weight: 300;
}

/* ===== NEWS ===== */
.news {
    padding: 80px 0;
    background: var(--white);
}
.news-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.news-header-row .section-header {
    text-align: left;
    margin: 0;
    max-width: none;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.news-card:hover {
    transform: translateY(-6px);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}
/* Remove image zoom on hover */
.news-card:hover img {
    transform: none;
}
.news-body {
    padding: 20px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-body p {
    flex: 1;
}
.news-body .btn-link {
    margin-top: auto;
}
.news-date {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 6px 0 10px;
}
.news-body p {
    color: #4a4a4a;
    margin-bottom: 14px;
    font-weight: 300;
}

.news-cta-card {
    background: var(--navy);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.news-cta-card:hover {
    transform: translateY(-6px);
}
.news-cta-card .cta-icon {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.news-cta-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.news-cta-card p {
    opacity: 0.7;
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ===== DONATION ===== */
.donation {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.donation::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 125, 29, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.donation-text h2 {
    color: var(--white);
}
.donation-text>p {
    opacity: 0.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
    font-weight: 300;
}
.donation-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 34px;
}
.donation-stat .stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    font-size: 2.6rem;
    display: block;
    line-height: 1.1;
}
.donation-stat .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.85rem;
}
.donation-image img {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    height: 380px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand p {
    margin: 14px 0 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
    opacity: 0.6;
    font-weight: 300;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    font-size: 0.88rem;
    opacity: 0.6;
    transition: var(--transition);
    font-weight: 300;
}
.footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 4px;
}
.footer-contact {
    margin-top: 14px;
}
.footer-contact p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}
.footer-contact i {
    color: var(--gold);
    width: 18px;
}
.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    opacity: 0.5;
    font-weight: 300;
}
.footer-bottom-inner nav {
    display: flex;
    gap: 28px;
}
.footer-bottom-inner nav a:hover {
    opacity: 1;
    color: var(--gold);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(183, 125, 29, 0.35);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--navy);
    transform: translateY(-4px);
}

/* ===== FADE-IN UTILITY ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
    .dropdown-mega {
        left: -140px;
        width: 540px;
    }
    .about-grid,
    .donation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image img,
    .donation-image img {
        height: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .about-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 20px 24px 28px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav.active .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
    }
    .main-nav.active .nav-list>li>a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1rem;
    }
    .dropdown-mega {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 16px;
        padding: 14px 16px;
        margin-top: 4px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        display: none;
        pointer-events: auto;
    }
    .nav-dropdown:hover .dropdown-mega {
        display: none;
    }
    .nav-dropdown.active .dropdown-mega {
        display: block;
    }
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .dropdown-col a {
        color: rgba(255, 255, 255, 0.8);
        padding: 8px 6px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    .dropdown-col a i {
        color: var(--gold);
    }
    .dropdown-col a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
        transform: none;
    }
    .hamburger {
        display: flex;
    }
    .btn-donate-nav {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    .nav-actions .search-toggle {
        display: none;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .donation-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .about-cards {
        grid-template-columns: 1fr;
    }
    .news-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn-gold,
    .hero-buttons .btn-outline-light {
        justify-content: center;
        text-align: center;
    }
    .media-grid,
    .activities-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    .about-image img,
    .donation-image img {
        height: 220px;
    }
    .hero {
        min-height: 90vh;
        padding: 120px 0 60px;
    }
    .logo-text .name {
        font-size: 1rem;
    }
    .logo-text .tagline {
        font-size: 0.45rem;
    }
    .logo-badge {
        width: 40px;
        height: 40px;
    }
    .donation-stats {
        flex-direction: column;
        gap: 12px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
}