/*
 * APJ PRIME HELPING HANDS NGO - Main Stylesheet
 * Color Palette: Blue (Trust), Red (Passion/Action), White/Light-Gray (Clean UI)
 * Fonts: Poppins (Google Fonts)
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0d47a1;
    --primary-blue-hover: #0a3780;
    --primary-blue-rgb: 13, 71, 161;
    --accent-red: #d32f2f;
    --accent-red-hover: #b71c1c;
    --accent-red-rgb: 211, 47, 47;
    --primary-green: #2e7d32;
    --primary-green-hover: #1b5e20;
    --primary-green-rgb: 46, 125, 50;
    --primary-yellow: #ffb300;
    --primary-yellow-hover: #ff8f00;
    --primary-yellow-rgb: 255, 179, 0;
    --bg-light: #f8f9fa;
    --bg-dark: #0b1528;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(13, 71, 161, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base resets & typography */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 10px auto 0;
    border-radius: 2px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

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

/* Sticky Navigation */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar-custom.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand-custom img {
    height: 45px;
    width: auto;
}

.navbar-brand-custom .brand-text {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.navbar-brand-custom .brand-subtext {
    display: block;
    font-size: 0.7rem;
    color: var(--accent-red);
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-link-custom {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px !important;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary-blue) !important;
}

/* Gradient & Transparent Buttons */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-hover) 100%);
    border: none;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: var(--transition);
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--primary-green-hover) 0%, var(--primary-green) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.btn-secondary-gradient {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
    border: none;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: var(--transition);
}

.btn-secondary-gradient:hover {
    background: linear-gradient(135deg, var(--accent-red-hover) 0%, var(--accent-red) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

.btn-yellow-gradient {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-hover) 100%);
    border: none;
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    transition: var(--transition);
}

.btn-yellow-gradient:hover {
    background: linear-gradient(135deg, var(--primary-yellow-hover) 0%, var(--primary-yellow) 100%);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-outline-blue {
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    padding: 150px 0 100px;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-subtitle {
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 650px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Floating Shapes in Hero */
.floating-shape {
    position: absolute;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--primary-blue);
    animation-delay: 0s;
}

.shape-2 {
    bottom: 25%;
    right: 15%;
    width: 120px;
    height: 120px;
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
    background-color: var(--accent-red);
    animation-delay: 2s;
}

.shape-3 {
    top: 50%;
    left: 45%;
    width: 60px;
    height: 60px;
    border: 5px solid var(--white);
    border-radius: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* ABOUT US SECTION */
.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.3), transparent);
    z-index: 1;
}

.about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.badge-achievement {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.badge-achievement i {
    font-size: 2.2rem;
    color: var(--accent-red);
}

.badge-achievement h4 {
    font-weight: 700;
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.badge-achievement span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--primary-blue);
    transition: var(--transition);
    height: 100%;
}

.about-card.vision-card {
    border-left-color: var(--accent-red);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.about-card i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.about-card.mission-card i {
    color: var(--primary-blue);
}

.about-card.vision-card i {
    color: var(--accent-red);
}

.about-card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* SERVICES SECTION */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.glass-card.card-blue { border-left: 5px solid var(--primary-blue) !important; }
.glass-card.card-green { border-left: 5px solid var(--primary-green) !important; }
.glass-card.card-yellow { border-left: 5px solid var(--primary-yellow) !important; }
.glass-card.card-red { border-left: 5px solid var(--accent-red) !important; }

/* Custom Glow Shadows on Hover */
.glass-card.card-blue:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(13, 71, 161, 0.14);
    border-color: rgba(13, 71, 161, 0.2);
}
.glass-card.card-green:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(46, 125, 50, 0.14);
    border-color: rgba(46, 125, 50, 0.2);
}
.glass-card.card-yellow:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(255, 179, 0, 0.14);
    border-color: rgba(255, 179, 0, 0.25);
}
.glass-card.card-red:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 20px 45px rgba(211, 47, 47, 0.14);
    border-color: rgba(211, 47, 47, 0.2);
}

.service-card-body {
    padding: 35px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Service Badge Status Pills */
.service-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.badge-blue { background-color: rgba(13, 71, 161, 0.08); color: var(--primary-blue); }
.badge-green { background-color: rgba(46, 125, 50, 0.08); color: var(--primary-green); }
.badge-yellow { background-color: rgba(255, 179, 0, 0.1); color: #e65100; }
.badge-red { background-color: rgba(211, 47, 47, 0.08); color: var(--accent-red); }

/* Circular Theme-Colored Icons */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    transition: var(--transition);
}
.bg-blue-light {
    background-color: rgba(13, 71, 161, 0.06);
    color: var(--primary-blue);
    border: 1px solid rgba(13, 71, 161, 0.15);
}
.bg-green-light {
    background-color: rgba(46, 125, 50, 0.06);
    color: var(--primary-green);
    border: 1px solid rgba(46, 125, 50, 0.15);
}
.bg-yellow-light {
    background-color: rgba(255, 179, 0, 0.06);
    color: #e65100;
    border: 1px solid rgba(255, 179, 0, 0.15);
}
.bg-red-light {
    background-color: rgba(211, 47, 47, 0.06);
    color: var(--accent-red);
    border: 1px solid rgba(211, 47, 47, 0.15);
}

.glass-card:hover .service-icon {
    transform: scale(1.12);
}

.service-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--bg-dark);
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Interactive Metadata Select Options */
.service-meta-options {
    background: transparent;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    gap: 8px;
    justify-content: start;
}

.service-meta-option {
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(13, 71, 161, 0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition);
    cursor: pointer;
}
.service-meta-option:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
    border-color: var(--primary-blue);
    border-style: solid;
}

.glass-card.card-green .service-meta-option {
    border-color: rgba(46, 125, 50, 0.25);
    color: var(--primary-green);
}
.glass-card.card-green .service-meta-option:hover {
    background: var(--primary-green);
    color: var(--white) !important;
    border-color: var(--primary-green);
}

/* Color Outline Buttons */
.btn-outline-green {
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-red {
    border: 2px solid var(--accent-red);
    background: transparent;
    color: var(--accent-red);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-red:hover {
    background-color: var(--accent-red);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-yellow {
    border: 2px solid var(--primary-yellow);
    background: transparent;
    color: #e65100;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-yellow:hover {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* WHY CHOOSE US */
.why-section {
    background-color: var(--white);
}

.feature-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: rgba(13, 71, 161, 0.1);
    background: var(--white);
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

/* Stats Counter Section */
.counter-box {
    text-align: center;
    padding: 25px;
}

.counter-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-num span.accent {
    color: var(--accent-red);
}

.counter-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GALLERY (MASONRY & LIGHTBOX) */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 991px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    margin-bottom: 20px;
    break-inside: avoid;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 71, 161, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay h5 {
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay span {
    font-size: 0.8rem;
    opacity: 0.8;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Custom Lightbox Styles */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 21, 40, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.custom-lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 1080px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { right: 10px; top: -50px; }
}

/* DONATION SECTION */
.donation-section-bg {
    background: linear-gradient(135deg, #0b1e36 0%, #06101c 100%);
    color: var(--white);
    padding: 90px 0;
}

.donation-section-bg .section-title {
    color: var(--white);
}

.donation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.donation-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.donation-card i {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
    display: inline-block;
}

.donation-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.donation-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* DONATE PAGE SPECIFIC */
.cause-progress {
    height: 8px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.donation-tabs .nav-link {
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    margin: 5px;
    background: var(--white);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.donation-tabs .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
}

.amount-btn-group .btn {
    border: 2px solid rgba(13, 71, 161, 0.2);
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 20px;
    transition: var(--transition);
}

.amount-btn-group .btn:hover,
.amount-btn-group .btn.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.payment-method-card {
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-card:hover,
.payment-method-card.active {
    border-color: var(--primary-blue);
    background-color: rgba(13, 71, 161, 0.02);
}

.payment-method-card i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.payment-method-card span {
    font-weight: 600;
}

/* VOLUNTEERS SECTION */
.form-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.form-control-custom {
    border-radius: 10px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control-custom:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(13, 71, 161, 0.15);
}

.form-label-custom {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

/* TESTIMONIALS SECTION */
.testimonial-section {
    background-color: var(--bg-light);
}

.testimonial-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 8rem;
    color: rgba(13, 71, 161, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid rgba(13, 71, 161, 0.1);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.carousel-indicators-custom [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.3;
    margin: 0 6px;
    border: none;
    transition: var(--transition);
}

.carousel-indicators-custom .active {
    opacity: 1;
    transform: scale(1.2);
    background-color: var(--accent-red);
}

/* CONTACT SECTION */
.contact-info-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(13, 71, 161, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-details h6 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-info-details p {
    margin: 0;
    color: var(--text-muted);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* FOOTER */
.footer-custom {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-custom h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-custom h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-red);
    border-radius: 2px;
}

.footer-brand {
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand span {
    color: var(--accent-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links i {
    color: var(--accent-red);
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-social-icon.fb:hover { background-color: #1877f2; }
.footer-social-icon.ig:hover { background-color: #e1306c; }
.footer-social-icon.yt:hover { background-color: #ff0000; }
.footer-social-icon.wa:hover { background-color: #25d366; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* Modals & Alert Popups (Success Message Styling) */
.custom-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.custom-modal-header {
    background-color: var(--primary-blue);
    color: var(--white);
    border-bottom: none;
    padding: 25px;
}

.custom-modal-body {
    padding: 35px 25px;
    text-align: center;
}

.custom-modal-body i {
    font-size: 4rem;
    color: #2e7d32;
    margin-bottom: 20px;
    display: inline-block;
}

/* Volunteers List (for validation/verification visual) */
.volunteer-list-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--card-shadow);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    font-size: 0.95rem;
}

.whatsapp-float:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        border-radius: 50%;
    }
    .whatsapp-float span {
        display: none;
    }
}
