/* ========================================
   MINDSETER - Premium Stylesheet
   Colors: Milk, Gold, Purple, Dark Purple, 
           White, Red, Pink
   ======================================== */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background-color: #fcf9f5;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ----- COLOR VARIABLES ----- */
:root {
    --gold: #FFD700;
    --gold-dark: #e6c200;
    --gold-gradient: linear-gradient(135deg, #FFD700, #f0a500);
    --milk: #fcf9f5;
    --white: #FFFFFF;
    --purple: #800080;
    --dark-purple: #4B0082;
    --red: #DC143C;
    --pink: #FF69B4;
    --dark: #1a1a2e;
    --gray: #666;
    --light-gray: #f0edf0;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(128, 0, 128, 0.15);
    --border-radius: 20px;
}

/* ----- UTILITY ----- */
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-red { color: var(--red); }

/* ----- HEADER ----- */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 40%, #1a0a2a 100%);
    border-bottom: 3px solid var(--gold);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ----- LOGO STYLES (Fixed) ----- */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}

.logo-img {
    height: 200px;      /* Changed from 32px to 48px */
    width: 150px;
    display: block;
    max-height: 200px;  /* Changed from 32px to 48px */
}

.logo-text {
    font-size: 2rem;   /* Changed from 1.6rem to 2rem */
    font-weight: 800;
    letter-spacing: 2px; /* Changed from 1.5px to 2px */
    background: linear-gradient(135deg, var(--gold), #fff3b0, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-text span {
    font-weight: 300;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
}
/* ----- NAVIGATION ----- */
nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0.4rem 0.9rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

nav a:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
}

nav a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.12);
}

nav a.donate-btn {
    background: var(--gold-gradient);
    color: #1a1a2e;
    font-weight: 700;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
    transition: all 0.3s ease;
}

nav a.donate-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.4);
    background: var(--gold-gradient);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.3rem;
}

/* ----- BUTTONS ----- */
.btn-primary {
    display: inline-block;
    background: var(--gold-gradient);
    color: #1a1a2e;
    font-weight: 700;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 45px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    padding: 0.7rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: #1a1a2e;
}

.btn-outline-small {
    display: inline-block;
    background: transparent;
    color: var(--purple);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--purple);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-outline-small:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ----- HERO SECTION ----- */
.hero {
    background: radial-gradient(ellipse at top right, #2d1b3d, #0a0a0a 70%);
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(128, 0, 128, 0.08), transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04), transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold), #fff3b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .sub-highlight {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.trust-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* ----- SECTION TITLES ----- */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0.5rem auto 0;
    border-radius: 4px;
}

/* ----- ABOUT PREVIEW ----- */
.about-preview {
    padding: 4rem 0;
    background: var(--milk);
}

.about-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(128, 0, 128, 0.05);
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: var(--shadow-hover);
}

.about-card h2 {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.about-card p {
    font-size: 1.15rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ----- FEATURES ----- */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--milk);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(128, 0, 128, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 215, 0, 0.2);
}

.feature-card .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--dark-purple);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ----- VALUES ----- */
.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
}

.values .section-title {
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values .section-title::after {
    background: linear-gradient(135deg, var(--gold), var(--pink));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.06);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.value-card h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
    padding: 5rem 0;
    background: var(--milk);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 6px solid var(--gold);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-card .quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: var(--gold);
    margin-right: 0.3rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--dark-purple);
    font-size: 1.1rem;
}

.testimonial-card .title {
    color: #888;
    font-size: 0.9rem;
}

/* ----- CTA BANNER ----- */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    text-align: center;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.cta-banner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----- PAGE HEADERS ----- */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-header .header-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ----- FORM STYLES (Premium) ----- */
.donate-section,
.volunteer-section,
.contact-section {
    padding: 4rem 0;
    background: var(--milk);
}

.donate-grid,
.volunteer-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.donate-form,
.volunteer-form,
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.donate-form h2,
.volunteer-form h2,
.contact-form h2 {
    font-size: 2rem;
    color: var(--dark-purple);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.donate-form h2::after,
.volunteer-form h2::after,
.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e8e5e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--milk);
    color: #1a1a2e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.amount-btn {
    padding: 0.7rem;
    border: 2px solid #e8e5e8;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #1a1a2e;
}

.amount-btn:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
}

.amount-btn.active {
    border-color: var(--gold);
    background: var(--gold-gradient);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #1a1a2e;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.secure-badge {
    background: rgba(255, 215, 0, 0.06);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: #444;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secure-badge strong {
    color: var(--gold);
}

/* ----- SIDEBARS ----- */
.donate-impact,
.volunteer-help,
.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.donate-impact h3,
.volunteer-help h3,
.contact-info h3 {
    font-size: 1.5rem;
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.donate-impact h3::after,
.volunteer-help h3::after,
.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.impact-item {
    background: var(--milk);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.impact-item:hover {
    border-color: var(--gold);
    transform: translateX(-5px);
}

.impact-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.impact-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.3rem 0 0;
}

.transparency-badge {
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
}

.transparency-badge span {
    color: var(--gold);
}

/* ----- HELP ITEMS ----- */
.help-item {
    display: flex;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.help-item:hover {
    background: var(--milk);
    transform: translateX(5px);
}

.help-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.help-item strong {
    color: var(--dark-purple);
    display: block;
    font-size: 0.95rem;
}

.help-item p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* ----- CONTACT INFO ----- */
.info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: center;
}

.info-item:hover {
    background: var(--milk);
    transform: translateX(5px);
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--dark-purple);
    display: block;
    font-size: 0.95rem;
}

.info-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.contact-badge,
.volunteer-badge {
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
}

.contact-badge span,
.volunteer-badge span {
    color: var(--gold);
}

/* ----- OTHER WAYS TO SUPPORT ----- */
.other-ways {
    margin-top: 3rem;
}

.other-ways h2 {
    font-size: 2rem;
    color: var(--dark-purple);
    text-align: center;
    margin-bottom: 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 215, 0, 0.2);
}

.support-card .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.support-card h4 {
    color: var(--dark-purple);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.support-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ----- PROGRAMS PAGE ----- */
.programs-section {
    padding: 4rem 0;
    background: var(--milk);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 6px solid;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.program-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.program-card h3 {
    color: var(--dark-purple);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.program-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card ul li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.95rem;
}

.pink-border { border-color: var(--pink); }
.purple-border { border-color: var(--purple); }
.gold-border { border-color: var(--gold); }
.red-border { border-color: var(--red); }

.programs-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark-purple), var(--purple));
    border-radius: var(--border-radius);
}

.programs-cta h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ----- FOOTER ----- */
footer {
    background: #0a0a0a;
    border-top: 2px solid rgba(255, 215, 0, 0.08);
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
    border-radius: 3px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.5rem;
}

/* ----- FOOTER LOGO (New) ----- */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    text-align: left;
    padding: 1rem 0 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-logo h3 span {
    color: var(--white);
    font-weight: 300;
}

.footer-logo p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .donate-grid,
    .volunteer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .donate-impact,
    .volunteer-help,
    .contact-info {
        position: static;
    }
    .programs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        gap: 0.3rem;
    }
    
    nav.open {
        display: flex;
    }
    
    nav a {
        width: 100%;
        text-align: center;
        padding: 0.7rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .donate-form,
    .volunteer-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    /* Logo size on tablet */
    .logo-img {
        height: 28px;
        max-height: 28px;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .logo a {
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Logo size on mobile */
    .logo-img {
        height: 24px;
        max-height: 24px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo a {
        gap: 0.3rem;
    }
}
/* ----- FOOTER - FIXED ----- */
footer {
    background: #0a0a0a;
    border-top: 2px solid rgba(255, 215, 0, 0.08);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    text-align: left;
    padding: 1rem 0 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    max-height: 60px;
    margin-bottom: 0.8rem;
}

.footer-logo h3 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-logo h3 span {
    color: #ffffff;
    font-weight: 300;
}

.footer-logo p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-top: 0.3rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #FFD700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFD700;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #f0a500);
    margin: 1.5rem auto;
    border-radius: 3px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .footer-logo-img {
        height: 50px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-logo-img {
        height: 40px;
        max-height: 40px;
    }
    .footer-logo h3 {
        font-size: 1.4rem;
    }
}