/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fde021;
    --primary-dark: #000000;
    --accent-color: #e95d13;
    --white: #ffffff;
    --gray: #706f6f;
    --light-blue: #88cbc4;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #f4d400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #d14a0f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    overflow: visible;
}

.nav-logo {
    position: relative;
    z-index: 1001;
}

.nav-logo img {
    height: 65px;
    width: auto;
    margin: 0;
    position: relative;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-color);
}

/* User Menu Dropdown */
.user-menu-dropdown {
    position: relative;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.user-menu-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.user-menu-btn i.fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.user-menu-dropdown.active .user-menu-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--accent-color);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.dropdown-item-danger:hover {
    background-color: #fee;
    color: #dc3545;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-light);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--primary-dark);
    border-color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    margin-bottom: -50px; /* Allow banner to overlay next section */
    z-index: 1;
}

.hero-banner {
    width: 100%;
    max-width: 100%;
    overflow: visible; /* Allow overflow for overlay effect */
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 700px; /* Increased from 600px */
    object-fit: contain;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Quick Actions Section */
.quick-actions-section {
    padding: 4rem 0 3rem 0; /* Extra top padding for banner overlay */
    background-color: #ffffff;
    position: relative;
    z-index: 0;
}

.quick-actions-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-actions-section .btn {
    background-color: #fde021;
    color: #000000;
    border: 2px solid #fde021;
}

.quick-actions-section .btn:hover {
    background-color: #e95d13;
    color: #ffffff;
    border-color: #e95d13;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
}

.btn-accent:hover {
    background-color: #d14d0b;
    transform: translateY(-2px);
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}


.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 3rem;
}

.timeline-item {
    text-align: center;
    color: var(--text-dark);
    position: relative;
    flex: 1;
    background-color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.timeline-item:not(:last-child)::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -2rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item.active {
    background-color: #fde021;
    color: var(--text-dark);
}

.timeline-item.active .timeline-date {
    color: var(--text-dark);
}

.timeline-date {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.timeline-item.active .timeline-date {
    color: var(--white);
}

.timeline-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Donation Meter */
.donation-meter {
    background-color: var(--light-blue);
    padding: 60px 0;
    margin-top: -1px;
}

.meter-content {
    text-align: center;
    color: var(--white);
}

.meter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.meter-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.progress-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 20px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: width 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.highlight-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-images {
    display: flex;
    justify-content: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 600px;
    width: 100%;
}

.about-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background-color: #fde021;
    color: #000000;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.mission-callout {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.mission-callout h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Event Details */
.event-details {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.event-details h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.detail-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.detail-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-list li:last-child {
    border-bottom: none;
}

.awards-list {
    list-style: none;
}

.awards-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.awards-list li:last-child {
    border-bottom: none;
}

.award-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--accent-color);
}

.criteria-list {
    list-style: none;
}

.criteria-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.criteria-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.gift-list {
    list-style: none;
}

.gift-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.gift-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Sponsors Section */
.sponsors-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.sponsors-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.sponsors-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.contact-info i {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: #fde021;
    color: #000000;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #000000;
}

.footer-section p {
    color: #333333;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-full {
    width: 100%;
    margin-bottom: 1rem;
}

.footer-logo-img-full {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #e95d13;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333333;
}

.contact-info-left {
    text-align: left;
}

.contact-info-left p {
    justify-content: flex-start;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    color: #000000;
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: #fde021;
    color: #000000;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #333333;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #e95d13;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-logo img {
        height: 65px;
        margin-top: -3px;
        margin-bottom: -3px;
    }

    .banner-img {
        max-height: 500px; /* Increased for mobile */
    }
    
    .hero {
        margin-bottom: -30px; /* Less overlay on mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .quick-actions-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .btn-large {
        width: 100%;
    }

    .timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-item {
        padding: 2rem 1.5rem;
    }

    .timeline-date {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .timeline-text {
        font-size: 1rem;
    }

    .timeline-item:not(:last-child)::after {
        content: '\f063';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: auto;
        bottom: -1.5rem;
        left: 50%;
        right: auto;
        transform: translate(-50%, 50%);
        color: var(--accent-color);
        font-size: 1.5rem;
        z-index: 1;
    }

    .meter-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        max-width: 100%;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* Large mobile devices (560px-768px) - 4 photos in a row */
@media (min-width: 560px) and (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .about-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo img {
        height: 55px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .banner-img {
        max-height: 400px; /* Increased for small mobile */
    }
    
    .hero {
        margin-bottom: -20px; /* Minimal overlay on small screens */
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--border-radius); }
.shadow { box-shadow: var(--shadow); }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Phone Input Group with Country Code */
.phone-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 120px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: var(--transition);
}

.country-code-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(253, 224, 33, 0.1);
}

.phone-input-group input[type="tel"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.phone-input-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(253, 224, 33, 0.1);
}

/* Field Notes/Hints */
.field-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Confirmation Field Styling */
input[name$="_confirm"] {
    background-color: #fffef0;
}

input[name$="_confirm"]:focus {
    background-color: var(--white);
}

/* Mobile Responsive for Phone Input */
@media (max-width: 480px) {
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code-select {
        flex: 1;
        width: 100%;
    }
}

/* Admin Back Button */
.admin-back-btn {
    margin-bottom: 1.5rem;
}

.admin-back-btn .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Floating Enquiry Button */
.floating-enquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fde021 0%, #e95d13 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    box-shadow: 0 4px 15px rgba(233, 93, 19, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-enquiry-btn:hover {
    width: 140px;
    border-radius: 30px;
    background: linear-gradient(135deg, #e95d13 0%, #fde021 100%);
    box-shadow: 0 6px 20px rgba(233, 93, 19, 0.6);
    transform: translateY(-3px);
}

.floating-enquiry-btn i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.floating-enquiry-btn:hover i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.enquiry-btn-text {
    font-size: 0;
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s ease;
}

.floating-enquiry-btn:hover .enquiry-btn-text {
    font-size: 1rem;
    opacity: 1;
}

/* Pulse animation for floating button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(233, 93, 19, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(233, 93, 19, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(233, 93, 19, 0.4);
    }
}

.floating-enquiry-btn {
    animation: pulse 2s infinite;
}

.floating-enquiry-btn:hover {
    animation: none;
}

@media (max-width: 768px) {
    .floating-enquiry-btn {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-enquiry-btn i {
        font-size: 1.3rem;
    }
    
    .floating-enquiry-btn:hover {
        width: 120px;
    }
}

/* ===================================
   Donation Page - Recipient Card
   =================================== */

.donation-page {
    padding: 40px 0;
}

.donation-content {
    display: grid;
    gap: 30px;
}

/* Recipient Profile Card - Full Width */
.recipient-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-column: 1 / -1; /* Full width */
}

.recipient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Banner Image */
.recipient-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fde021 0%, #88cbc4 100%);
}

.recipient-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Recipient Info Section */
.recipient-info {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Profile Picture - Much Bigger Size & Centered */
.recipient-avatar {
    width: 260px;
    height: 260px;
    margin: -130px auto 40px;
    position: relative;
    z-index: 2;
}

.recipient-avatar img,
.recipient-avatar .default-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.default-avatar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: white;
}

.recipient-avatar img {
    object-fit: cover;
}

/* Recipient Details - All Centered */
.recipient-details {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recipient-details h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

/* About Me Section - Centered & Full Width */
.recipient-about-me {
    background: #f8f9fa;
    padding: 30px 35px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.recipient-about-me h4 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.recipient-about-me h4:before {
    content: '💬';
    font-size: 1.5rem;
}

.recipient-about-me p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-size: 1.15rem;
    text-align: center;
    width: 100%;
}

/* Recipient Stats */
.recipient-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    width: 100%;
}

.recipient-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.recipient-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.recipient-stats .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Donation Form Container */
.donation-form-container {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.donation-form .form-section {
    margin-bottom: 30px;
}

.donation-form .form-section h2 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Donation Info Section - Side by Side Layout on Desktop */
.donation-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

@media (min-width: 992px) {
    .donation-info {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Make comments section span full width when alone */
    .donation-info .comments-section {
        grid-column: span 2;
    }
    
    /* When all three sections exist, first two take 1 column each, comments full width */
    .donation-info .info-card:nth-child(1) {
        grid-column: 1;
    }
    
    .donation-info .info-card:nth-child(2) {
        grid-column: 2;
    }
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .recipient-banner {
        height: 260px;
    }
    
    .recipient-avatar {
        width: 200px;
        height: 200px;
        margin: -100px auto 35px;
    }
    
    .recipient-avatar img,
    .recipient-avatar .default-avatar {
        border: 4px solid white;
    }
    
    .default-avatar {
        font-size: 6rem;
    }
    
    .recipient-info {
        padding: 30px 20px;
    }
    
    .recipient-details h3 {
        font-size: 2rem;
    }
    
    .recipient-about-me {
        padding: 25px 20px;
    }
    
    .recipient-about-me h4 {
        font-size: 1.3rem;
    }
    
    .recipient-about-me p {
        font-size: 1.1rem;
    }
    
    .recipient-stats {
        gap: 35px;
        flex-wrap: wrap;
    }
    
    .recipient-stats .stat-number {
        font-size: 2rem;
    }
    
    .recipient-stats .stat-label {
        font-size: 0.95rem;
    }
    
    .donation-form-container {
        padding: 25px 20px;
    }
    
    /* Stack donation info sections on mobile */
    .donation-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .recipient-banner {
        height: 200px;
    }
    
    .recipient-avatar {
        width: 170px;
        height: 170px;
        margin: -85px auto 30px;
    }
    
    .recipient-avatar img,
    .recipient-avatar .default-avatar {
        border: 3px solid white;
    }
    
    .default-avatar {
        font-size: 5rem;
    }
    
    .recipient-details h3 {
        font-size: 1.75rem;
    }
    
    .recipient-about-me {
        padding: 20px 18px;
    }
    
    .recipient-about-me h4 {
        font-size: 1.2rem;
    }
    
    .recipient-about-me p {
        font-size: 1.05rem;
    }
    
    .recipient-stats {
        gap: 30px;
    }
    
    .recipient-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .recipient-stats .stat-label {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 20px;
    }
}
