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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto 1rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background: #3db5ad;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-block {
    width: 100%;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Video Section */
.video-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.emergency-impact {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.08) 0%, rgba(76, 205, 196, 0.08) 100%);
}

.emergency-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.emergency-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.emergency-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.emergency-caption {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emergency-caption h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.emergency-caption p {
    color: var(--text-dark);
    font-size: 1rem;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.video-wrapper wistia-player {
    display: block;
    width: 100%;
    border-radius: 15px;
}

/* Wistia Player Styles */
wistia-player[media-id='h1kpfa10iv']:not(:defined) {
    display: block;
    border-radius: 15px;
}

wistia-player[media-id='h1kpfa10iv']:defined {
    width: 100%;
    border-radius: 15px;
}

.video-player {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.video-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.amount-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
    transform: translateY(-2px);
}

.amount-btn.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.custom-amount-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.custom-amount-section label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.custom-amount-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.currency-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    flex-shrink: 0;
    white-space: nowrap;
}

.custom-amount-input input {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.modal-selected-amount {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.modal-selected-amount p {
    margin: 0;
    font-size: 1.2rem;
}

.modal-selected-amount strong {
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.modal-actions .btn {
    min-width: 150px;
    max-width: 200px;
    flex: 0 1 auto;
}

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

.modal-actions .btn.btn-secondary:hover {
    background: #3db5ad;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.impact-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.impact-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.comparison-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.comparison-us {
    border-top: 4px solid var(--text-light);
}

.comparison-them {
    border-top: 4px solid var(--secondary-color);
}

.comparison-icon {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--text-light), var(--primary-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.comparison-card.comparison-them .comparison-icon {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.comparison-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.comparison-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
}

.impact-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    box-shadow: var(--shadow-hover);
}

.highlight-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    min-width: 150px;
    text-align: center;
}

.highlight-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    flex: 1;
}

.highlight-text strong {
    font-weight: 700;
    font-size: 1.4rem;
}

.impact-message {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.message-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.message-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.message-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 2rem 0;
    font-weight: 500;
    border-left: 4px solid var(--secondary-color);
}

.impact-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-impact {
    font-size: 1.3rem;
    padding: 18px 50px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

.btn-impact:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(255, 107, 107, 0.6);
    }
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.about-icon {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Donations Section */
.donations {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Impact Slider Section */
.impact-slider-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.impact-intro {
    max-width: 800px;
    margin: 3rem auto 4rem;
    text-align: center;
    padding: 0 2rem;
}

.impact-intro-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.impact-intro-highlight {
    color: var(--accent-color);
    font-style: italic;
}

.impact-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.impact-outro {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.impact-outro-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.impact-outro-cta {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 600;
}

.impact-outro-cta strong {
    color: var(--accent-color);
    font-size: 1.6rem;
}

.impact-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.impact-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.impact-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.impact-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.impact-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 500px;
    margin: 0 auto;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.impact-card-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

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

.impact-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--text-light);
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
}

.impact-card-content {
    padding: 2.5rem;
    text-align: center;
}

.impact-card-content .impact-card-title,
.impact-card-content .impact-card-location,
.impact-card-content .impact-help-btn {
    text-align: center;
}

.impact-donation-info {
    margin-bottom: 1rem;
}

.impact-donation-amount {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.impact-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.impact-card-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: left;
}

.impact-card-location {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.impact-help-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s;
}

.impact-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.slider-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.slider-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 16px;
    height: 16px;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.4);
}

.slider-dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

.donation-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-hover);
    max-width: 800px;
    margin: 0 auto;
}

.donation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.donation-stats-single {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.donation-stats-single .stat-item {
    max-width: 300px;
    width: 100%;
}

.donation-stats-with-target {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.progress-bar-container {
    margin: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(44, 90, 160, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #4ecdc4 50%, #24CA68 100%);
    border-radius: 25px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    position: relative;
    box-shadow: 
        0 0 20px rgba(44, 90, 160, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 25px;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-text {
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(44, 90, 160, 0.15);
}

.donation-form {
    margin-top: 2rem;
}

.donation-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-method {
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border-radius: 20px;
    font-size: 0.9rem;
}

.payment-method-pix {
    background: #32BCAD;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
}

.payment-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}

.donation-cta {
    text-align: center;
    margin-top: 3rem;
}

.donation-cta .btn-large {
    font-size: 1.3rem;
    padding: 18px 50px;
    margin-bottom: 2rem;
}

.donation-cta .payment-info {
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-avatar-letter {
    background: var(--primary-color) !important;
    color: white;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.add-testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.add-testimonial h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.contact-item:nth-child(1) .contact-icon::before {
    content: '';
    width: 24px;
    height: 16px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    position: absolute;
}

.contact-item:nth-child(2) .contact-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
}

.contact-item:nth-child(3) .contact-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    opacity: 0.9;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.social-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

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

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .donation-stats {
        grid-template-columns: 1fr;
    }

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

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

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

    .donation-box {
        padding: 2rem 1.5rem;
    }

    .impact-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
        justify-self: center;
    }

    .impact-highlight {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .impact-title {
        font-size: 2rem;
    }

    .message-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .btn-impact {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    .impact-slider-section {
        padding: 60px 0;
    }
    
    .impact-card {
        max-width: 100%;
    }
    
    .impact-card-image {
        height: 250px;
    }
    
    .impact-card-description {
        font-size: 0.95rem;
    }
    
    .impact-card-title {
        font-size: 1.6rem;
    }
    
    .impact-intro-title {
        font-size: 1.8rem;
    }
    
    .impact-intro-text {
        font-size: 1rem;
    }
    
    .impact-outro {
        padding: 2rem 1.5rem;
    }
    
    .impact-outro-text {
        font-size: 1.1rem;
    }
    
    .impact-outro-cta {
        font-size: 1.2rem;
    }
    
    .impact-outro-cta strong {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .custom-amount-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem;
    }

    .custom-amount-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .custom-amount-input input {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .amount-btn {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-actions .btn {
        max-width: 100%;
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .amount-btn {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .custom-amount-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .custom-amount-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-wrap: wrap;
    }

    .custom-amount-input input {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        font-size: 1rem;
    }

    .currency-symbol {
        font-size: 1rem;
    }

    .modal-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .impact-slider-section {
        padding: 50px 0;
    }
    
    .impact-card-image {
        height: 200px;
    }
    
    .impact-card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .impact-card-title {
        font-size: 1.4rem;
    }
    
    .impact-intro {
        margin: 2rem auto 3rem;
        padding: 0 1rem;
    }
    
    .impact-intro-title {
        font-size: 1.5rem;
    }
    
    .impact-intro-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .impact-outro {
        padding: 1.5rem 1rem;
        margin: 3rem auto 0;
    }
    
    .impact-outro-text {
        font-size: 1rem;
    }
    
    .impact-outro-cta {
        font-size: 1.1rem;
    }
    
    .impact-outro-cta strong {
        font-size: 1.2rem;
    }
    
    .impact-card-content {
        padding: 2rem 1.5rem;
    }
    
    .impact-donation-amount {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

