/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --gold-primary: #FFD700;
    --orange-accent: #FF8C00;
    --deep-gold: #CC7A00;
    --dark-text: #2D241E;
    --footer-black: #000000;
    --off-white: #e0e0e0;
    --soft-gold: rgba(255, 215, 0, 0.1);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --glass-white: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Common Section Components */
.section-title {
    font-weight: 800;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--orange-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 50px;
}

/* =========================================
   2. NAVBAR
   ========================================= */
.custom-navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-primary);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar-brand span {
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.nav-link {
    font-weight: 600;
    color: #444 !important;
    position: relative;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.donate-btn {
    background: var(--gold-gradient);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border: none;
    transition: transform 0.3s ease;
}

.donate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #fff;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 60%; height: 120%;
    background: var(--gold-gradient);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--gold-primary);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: #2d241e;
    margin-bottom: 25px;
}

.hero-title span {
    display: block;
    color: var(--orange-accent);
}

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    border-left: 4px solid var(--gold-primary);
    padding-left: 20px;
    max-width: 600px;
}

.btn-gold-outline {
    border: 2px solid var(--gold-primary);
    color: var(--deep-gold);
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: white;
    border-color: transparent;
}

.hero-img-box {
    position: relative;
    padding: 20px;
}

.hero-img-box img {
    width: 100%;
    border-radius: 30px 100px 30px 30px;
    box-shadow: 25px 25px 0px var(--gold-primary);
}

/* =========================================
   4. IDENTITY (ABOUT) SECTION
   ========================================= */
.identity-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.identity-img-container {
    position: relative;
    padding: 30px;
    z-index: 1;
}

.identity-img-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 80%;
    border: 10px solid var(--gold-primary);
    z-index: -1;
    border-radius: 20px;
}

.identity-img-container::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 80%; height: 80%;
    background: var(--gold-gradient);
    opacity: 0.1;
    z-index: -1;
    border-radius: 20px;
}

.identity-img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.identity-img:hover { transform: scale(1.02); }

.identity-badge {
    font-weight: 700;
    color: var(--orange-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.identity-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 25px;
}

.founding-card {
    background: #fff;
    border-left: 5px solid var(--orange-accent);
    padding: 20px 30px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
    margin-top: 30px;
    border-radius: 0 15px 15px 0;
}

.date-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.date-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    display: block;
}

.identity-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.decoration-circle {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -100px; right: -100px;
    z-index: 0;
}

/* =========================================
   5. MISSION & ACTIVITIES
   ========================================= */
.mission-section {
    background: #fafafa;
    position: relative;
}

.mission-card {
    background: var(--glass-white);
    border-radius: 25px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--gold-gradient);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(255, 140, 0, 0.1);
}

.icon-box {
    width: 80px; height: 80px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transform: rotate(45deg);
}

.icon-box i { transform: rotate(-45deg); }

.activity-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: border 0.3s ease;
    height: 100%;
}

.activity-item:hover { border-color: var(--orange-accent); }

.activity-bullet {
    min-width: 45px; height: 45px;
    background: rgba(255, 140, 0, 0.1);
    color: var(--orange-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

/* =========================================
   6. TEAM SECTION
   ========================================= */
.team-section {
    background-color: #fffdfa;
    padding-bottom: 80px !important;
}

.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 10px 25px rgba(45, 36, 30, 0.05);
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
    border-color: var(--gold-primary);
}

.avatar-wrapper {
    position: relative;
    width: 140px; height: 140px;
    margin: 0 auto 30px;
    padding: 5px;
    border-radius: 50%;
    background: #eee;
    transition: background 0.4s ease;
}

.team-card:hover .avatar-wrapper { background: var(--gold-gradient); }

.team-avatar {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

.team-role {
    display: inline-block;
    padding: 4px 15px;
    background: var(--soft-gold);
    color: #CC7A00;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
}

.card-accent-bar {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 4px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
    border-radius: 4px 4px 0 0;
}

.team-card:hover .card-accent-bar { width: 60%; }

/* =========================================
   7. FOOTER SECTION
   ========================================= */
.footer-section {
    background-color: var(--footer-black);
    color: #ffffff;
    border-top: 3px solid var(--gold-primary);
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.footer-title::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--gold-gradient);
    display: inline-block;
    margin-right: 12px;
    border-radius: 50%;
}

.footer-section p, .footer-link {
    color: var(--off-white);
    font-size: 0.95rem;
    line-height: 1.7;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.contact-item { display: flex; margin-bottom: 15px; }

.contact-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-right: 15px;
}

.trust-info-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
}

.reg-number {
    display: block;
    color: var(--gold-primary);
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-footer-donate {
    background: var(--gold-gradient);
    color: #000 !important;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-footer-donate:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

/* Social Media */
.social-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: var(--gold-primary);
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--gold-gradient);
    color: #000 !important;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

.footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #777;
}

/* =========================================
   8. RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-section::before { display: none; }
    .identity-title { font-size: 2.2rem; }
}