:root {
    --primary: #0ea5e9;
    --primary-hover: #0284c7;
    --primary-light: #e0f2fe;
    --secondary: #f59e0b;
    --accent: #10b981;
    --background: #f0f9ff;
    --surface: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e0f2fe;
    --radius: 2rem;
    --shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.1), 0 8px 10px -6px rgba(14, 165, 233, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(14, 165, 233, 0.15);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button,
.btn {
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    padding: 0.875rem 2rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(14, 165, 233, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(14, 165, 233, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: var(--primary);
    color: white;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #0f172a;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider-wrapper {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8));
}

.slide .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.3s;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #93c5fd;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--background);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: #f8fafc;
}

.mission-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1 1 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #e0f2fe;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-history {
    padding: 7rem 0;
    background: white;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.history-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

.section-title-teal {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.history-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-cards {
    padding: 4rem 0;
    background: var(--background);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.info-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #334155;
    font-weight: 800;
}

.teal-border {
    border-top: 6px solid var(--primary);
}

.orange-border {
    border-top: 6px solid var(--secondary);
}

.about-gallery {
    padding: 7rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.full-width {
    grid-column: span 3;
    height: 500px;
}

.about-location {
    padding: 7rem 0;
    background: var(--background);
}

.location-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.map-placeholder {
    margin-top: 3rem;
    height: 450px;
    background: white;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-light);
    box-shadow: var(--shadow);
}

.map-content {
    text-align: center;
    color: var(--text-muted);
}

.map-content .material-symbols-outlined {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Contact Page Styles */
.contact-header {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form-container {
    background: white;
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-input {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    outline: none;
    transition: all 0.3s;
    background: var(--background);
}

.form-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Donate Page Styles */
.donate-header {
    padding: 6rem 0;
    background: #0f172a;
    color: white;
    text-align: center;
}

.donation-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -4rem;
}

.tier-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.tier-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    position: relative;
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 2rem 0 1rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.tier-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.tier-amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.bank-info-container {
    max-width: 800px;
    margin: 7rem auto 0;
    background: white;
    border-radius: 2rem;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bank-info-header {
    background: var(--background);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bank-item-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.bank-item-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 10rem 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.cta-slide.active {
    opacity: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.8), rgba(30, 64, 175, 0.9));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary-white {
    background: white;
    color: var(--primary);
}

.btn-primary-white:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.partners .section-header h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.partners-slider {
    display: flex;
    width: calc(250px * 8);
    animation: scroll 30s linear infinite;
}

.partners-slider:hover {
    animation-play-state: paused;
}

.partner-slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    flex-shrink: 0;
}

.partner-logo {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }
}

/* Team Section */
.team {
    padding: 7rem 0;
    background: var(--background);
}

.team .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #334155;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    background: transparent;
}

.team-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    border-radius: 2rem;
    background: #f1f5f9;
    box-shadow: var(--shadow);
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    justify-content: center;
    border-radius: 1rem 1rem 0 0;
}

.team-social-overlay a {
    color: var(--secondary);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.team-social-overlay a:hover {
    transform: translateY(-3px);
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-underline {
    width: 40px;
}

.cta-slide.active {
    opacity: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.8), rgba(30, 64, 175, 0.9));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary-white {
    background: white;
    color: var(--primary);
}

.btn-primary-white:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.partners .section-header h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.partners-slider {
    display: flex;
    width: calc(250px * 8);
    animation: scroll 30s linear infinite;
}

.partners-slider:hover {
    animation-play-state: paused;
}

.partner-slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    flex-shrink: 0;
}

.partner-logo {
    width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }
}

/* Team Section */
.team {
    padding: 7rem 0;
    background: var(--background);
}

.team .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #334155;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    background: transparent;
}

.team-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    border-radius: 2rem;
    background: #f1f5f9;
    box-shadow: var(--shadow);
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.75rem 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 80%;
    justify-content: center;
    border-radius: 1rem 1rem 0 0;
}

.team-social-overlay a {
    color: var(--secondary);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.team-social-overlay a:hover {
    transform: translateY(-3px);
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-underline {
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin: 0.5rem auto;
}

.team-info p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Refactored Contact Styles */
.contact-section {
    padding: 7rem 0;
    background: var(--background);
}

.section-title-small {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    height: 300px;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.2);
}

.map-badge {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: block;
}

.form-select {
    background: white;
}

.form-textarea {
    resize: none;
}

.form-submit-btn {
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
}

/* Refactored Donate Styles */
.donate-section {
    padding: 0 0 7rem;
    background: var(--background);
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tier-period {
    color: var(--text-muted);
    font-weight: 500;
}

.tier-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-full {
    width: 100%;
}

.bank-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
}

.bank-body {
    padding: 3rem;
}

.bank-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.bank-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.bank-footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bank-email-link {
    color: var(--primary);
    font-weight: 700;
}

/* Missing Service Styles */
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer Styles */
.footer {
    background: #0f172a;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-contact-item .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}/* Mission Section Override */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
}

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-width: none;
    /* Reset max-width */
    flex: none;
    /* Reset flex */
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.15);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1.5rem;
    background: #e0f2fe;
    border-radius: 50%;
    transition: all 0.4s ease;
    width: auto;
    height: auto;
}

.mission-card:hover .mission-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.mission-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive for Mission Override */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}
/* Fix for Mission Grid Centering (3 and 4 items) */
.mission-grid {
    display: flex !important;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.mission-card {
    flex: 1 1 250px;
    max-width: 350px;
    width: 100%;
    margin: 0;
    /* Reset margins */
}
/* Navbar Centering Fix */
.navbar .container {
    justify-content: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 1.5rem;
}

/* Responsive Navbar Adjustments */
@media (max-width: 992px) {
    .navbar .container {
        justify-content: space-between;
    }

    .logo {
        position: static;
    }

    .mobile-toggle {
        display: flex;
    }
}
/* Stacked Navbar Styles */
.navbar {
    height: auto !important;
    padding: 1.5rem 0;
}

.navbar .container {
    flex-direction: column !important;
    gap: 1.5rem;
}

.navbar-top {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.navbar-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.logo {
    position: static !important;
    /* Override previous fix */
}

.nav-links {
    margin: 0 auto;
    /* Center the links */
}

.nav-actions {
    position: absolute;
    right: 0;
}

/* Mobile Adjustments for Stacked Navbar */
@media (max-width: 992px) {
    .navbar .container {
        flex-direction: column !important;
        gap: 0;
    }

    .navbar-top {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-bottom {
        display: none;
        /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        border-top: none;
        padding-top: 1rem;
    }

    /* When active, show the menu */
    .navbar-bottom.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .nav-actions {
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 60px !important;
        /* Smaller logo on mobile */
    }
}
/* Revert to Side-by-Side Navbar */
.navbar {
    height: 100px !important;
    /* Increased height for larger logo */
    padding: 0;
}

.navbar .container {
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 0 !important;
}

.logo {
    position: static !important;
}

.nav-links {
    margin: 0 !important;
    flex-direction: row !important;
    width: auto !important;
    gap: 2rem !important;
}

.nav-actions {
    display: none;
    /* Hide the separate actions container as button is back in nav-links */
}

/* Mobile Adjustments for Side-by-Side */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 100px;
        /* Match navbar height */
        left: 0;
        width: 100% !important;
        background: white;
        flex-direction: column !important;
        padding: 2rem;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex !important;
    }

    .logo img {
        height: 70px !important;
        /* Slightly smaller on mobile but still prominent */
    }
}
