:root {
    --primary-purple: #6B2D5B;
    --primary-purple-light: #8B4D7B;
    --primary-purple-dark: #4B1D3B;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E4BF57;
    --accent-gold-dark: #B48F17;
    --white: #FFFFFF;
    --off-white: #F8F6F9;
    --light-gray: #E8E4EA;
    --dark-text: #2D1F2D;
    --gradient-purple: linear-gradient(135deg, #6B2D5B 0%, #8B4D7B 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E4BF57 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-purple) !important;
}

.navbar-brand span {
    color: var(--accent-gold);
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.btn-primary-custom {
    background: var(--gradient-purple);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 45, 91, 0.3);
    color: var(--white);
}

.btn-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-text);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: var(--dark-text);
}

.btn-outline-custom {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.hero-section {
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.9) 0%, rgba(75, 29, 59, 0.95) 100%), 
                url('https://scontent-mba2-1.cdninstagram.com/v/t51.82787-15/580506356_17865721446493305_6492222537340826400_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=100&ig_cache_key=Mzc2MjYxODgzODQ5Mjc0NTY2Ng%3D%3D.3-ccb7-5&ccb=7-5&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjgyOXg4Mjkuc2RyLkMzIn0%3D&_nc_ohc=UumJydcmveIQ7kNvwE7h_rH&_nc_oc=AdnU7DJqJrKrVjB7xGjsqidfXPiSwXGjpYQVQqMwyTBpIUWRW291MfmHXBSf0jEPuz8&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent-mba2-1.cdninstagram.com&_nc_gid=mgkPffyMJFjRsbVSZ86qqQ&oh=00_AfksYniOH9va90Pg7wt1Zmv53__LcDcZm_rEOH0pFXYi1A&oe=6939A576') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.card-custom {
    background: var(--white);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 45, 91, 0.15);
}

.card-custom .card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    color: var(--primary-purple);
    font-weight: 600;
}

.impact-badge {
    background: var(--gradient-gold);
    color: var(--dark-text);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 1rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-card .client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.testimonial-card .client-name {
    color: var(--primary-purple);
    font-weight: 600;
    margin-top: 1rem;
}

.testimonial-card .program-name {
    color: var(--accent-gold);
    font-size: 0.9rem;
}


@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.6); }
}

.footer {
    background: var(--primary-purple-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.footer .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--accent-gold);
    color: var(--dark-text);
    padding-left: 0;
}

.page-header {
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.95) 0%, rgba(75, 29, 59, 0.98) 100%),
                url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=1920') center/cover;
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
}

.page-header .breadcrumb-item a {
    color: var(--accent-gold);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.login-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.95) 0%, rgba(75, 29, 59, 0.98) 100%),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.5s ease;
}

.login-card .logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-card .logo h2 {
    color: var(--primary-purple);
    font-weight: 700;
}

.login-card .logo span {
    color: var(--accent-gold);
}

.form-control-custom {
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(107, 45, 91, 0.1);
}

.dashboard-sidebar {
    background: var(--primary-purple-dark);
    height: 100vh;
    padding: 0;
    position: fixed;
    width: 260px;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-sidebar .logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.dashboard-sidebar nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem 0;
}

.dashboard-sidebar .logo span {
    color: var(--accent-gold);
}

.dashboard-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    border-left-color: var(--accent-gold);
}

.dashboard-sidebar .nav-link::after {
    display: none;
}

.dashboard-content {
    margin-left: 260px;
    padding: 2rem;
    min-height: 100vh;
    background: var(--off-white);
}

.dashboard-header {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-card .stat-icon.purple { background: var(--gradient-purple); }
.stat-card .stat-icon.gold { background: var(--gradient-gold); color: var(--dark-text); }

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.stat-card .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.data-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.data-table table {
    margin-bottom: 0;
}

.data-table th {
    background: var(--off-white);
    color: var(--primary-purple);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.data-table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--light-gray);
}

.badge-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-status.active { background: #d4edda; color: #155724; }
.badge-status.pending { background: #fff3cd; color: #856404; }
.badge-status.inactive { background: #f8d7da; color: #721c24; }

.modal-custom .modal-content {
    border: none;
    border-radius: 20px;
}

.modal-custom .modal-header {
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.modal-custom .btn-close {
    filter: invert(1);
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card .program-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.program-card .program-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--dark-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-card .program-body {
    padding: 1.5rem;
}

.program-card .program-price {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 45, 91, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-item .overlay i {
    color: var(--white);
    font-size: 2rem;
}

.newsletter-section {
    background: var(--gradient-purple);
    padding: 4rem 0;
    color: var(--white);
}

.newsletter-section h3 {
    font-weight: 700;
}

.newsletter-section .form-control {
    border-radius: 30px 0 0 30px;
    border: none;
    padding: 15px 25px;
}

.newsletter-section .btn {
    border-radius: 0 30px 30px 0;
}

.service-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 45, 91, 0.15);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card:hover .icon {
    background: var(--gradient-gold);
    color: var(--dark-text);
    transform: rotateY(180deg);
}

.service-card h4 {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gold);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary-purple);
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--accent-gold);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--dark-text);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.pricing-card .price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-card ul li i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.alert-custom {
    border-radius: 15px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-custom.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-custom.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 991px) {
    .dashboard-sidebar {
        transform: translateX(-100%);
        transition: all 0.3s ease;
    }
    
    .dashboard-sidebar.active {
        transform: translateX(0);
    }
    
    .dashboard-content {
        margin-left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Topbar Styles */
.topbar {
    background: var(--primary-purple);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.topbar small {
    color: var(--white);
}

/* Center Navigation Links */
@media (min-width: 992px) {
    .nav-centered {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .navbar-main {
        justify-content: center;
    }
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    z-index: 1050;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar .sidebar-header {
    background: var(--primary-purple);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar .btn-close {
    filter: brightness(0) invert(1);
}

.mobile-sidebar .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar .sidebar-nav li {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-sidebar .sidebar-nav li a {
    display: block;
    padding: 15px 20px;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease both;
}

.mobile-sidebar .sidebar-nav li a:hover {
    background: var(--off-white);
    color: var(--primary-purple);
    padding-left: 25px;
}

.mobile-sidebar .sidebar-divider {
    height: 10px;
    background: var(--off-white);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    
    .footer {
        margin-top: 2rem;
    }
    
    .nav-centered {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .topbar {
        text-align: center;
        padding: 10px 0;
    }
    
    .topbar .row {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Admin Dashboard Mobile */
@media (max-width: 768px) {
    .admin-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 280px;
        height: 100vh;
        background: var(--primary-purple-dark);
        z-index: 1050;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    
    .admin-sidebar.active {
        left: 0;
    }
    
    .dashboard-content {
        margin-left: 0;
    }
}

/* Chart Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chart-container {
    animation: slideUp 0.6s ease;
}

/* Donation Page */
.donation-hero {
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.95) 0%, rgba(212, 175, 55, 0.1) 100%),
                url('https://images.unsplash.com/photo-1549887534-7lecbf917bd4?w=1920') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.donation-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(107, 45, 91, 0.15);
}

.donation-amount {
    font-size: 2.5rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin: 1rem 0;
}

.mpesa-button {
    background: linear-gradient(135deg, #10854a 0%, #108D46 100%);
    border: none;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.mpesa-button:hover {
    background: linear-gradient(135deg, #0d6e3a 0%, #0d7038 100%);
    transform: translateY(-3px);
}

/* Profile Upload */
.profile-upload {
    position: relative;
    display: inline-block;
}

.profile-upload input[type="file"] {
    display: none;
}

.profile-upload-label {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-upload-label:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Image Fallback */
.img-fallback {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 3rem;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .whatsapp-float,
    .btn,
    .topbar,
    .sidebar-toggle,
    #mobileMenuToggle {
        display: none !important;
    }
    
    body {
        background: var(--white);
    }
    
    .card-custom {
        box-shadow: none;
        border: 1px solid var(--light-gray);
    }
}

/* Form Control Styling */
.form-control-custom {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 12px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(107, 45, 91, 0.15);
}

.form-control-custom:invalid {
    border-color: #dc3545;
}

/* Dashboard Sidebar Mobile */
@media (max-width: 991px) {
    .dashboard-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 280px;
        height: 100vh;
        background: var(--primary-purple-dark);
        z-index: 1050;
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 0 30px rgba(0,0,0,0.2);
    }
    
    .dashboard-sidebar.active {
        left: 0;
    }
    
    .dashboard-content {
        margin-left: 0;
    }
}

/* Image Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.gallery-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-preview img:hover {
    transform: scale(1.05);
}

/* Sidebar Scrollbar Styling */
.dashboard-sidebar nav::-webkit-scrollbar {
    width: 8px;
}

.dashboard-sidebar nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-sidebar nav::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.dashboard-sidebar nav::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* Firefox Scrollbar */
.dashboard-sidebar nav {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.05);
}

/* Mobile Sidebar Dropdown */
.dropdown-toggle-mobile {
    cursor: pointer;
    display: block;
    width: 100%;
}

.sidebar-sub-nav {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.sidebar-sub-nav li {
    margin: 5px 0;
}

.sidebar-sub-nav a {
    color: var(--primary-purple);
    text-decoration: none;
    display: block;
    padding: 8px 0;
}

.sidebar-sub-nav a:hover {
    color: var(--accent-gold);
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(107, 45, 91, 0.15);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--off-white);
    color: var(--accent-gold);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-purple);
    color: white;
}

/* Remove underline from dropdown */
.dropdown-toggle {
    text-decoration: none !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus,
.dropdown-toggle:active {
    text-decoration: none !important;
}

.dropdown-item {
    text-decoration: none !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    text-decoration: none !important;
}

.nav-link {
    text-decoration: none !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:active {
    text-decoration: none !important;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-top: 2px solid #f0f0f0;
    z-index: 99;
    padding: 8px 0;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--primary-purple);
    background: none;
    border: none;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.mobile-bottom-nav .nav-item:hover {
    color: var(--accent-gold);
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.7rem;
}

/* Add bottom padding to body for mobile nav */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}

/* Gallery Items Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 45, 91, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item .overlay-content {
    text-align: center;
    padding: 20px;
}

.gallery-item .overlay i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* Hide Bootstrap default dropdown arrow, keep custom chevron icon */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Coaching Cards Styling */
.coaching-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coaching-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(107, 45, 91, 0.2);
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(107, 45, 91, 0.05) 100%);
}

.coaching-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.coaching-card:hover .coaching-icon {
    font-size: 4rem;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.coaching-card h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.coaching-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.coaching-card ul li {
    font-size: 0.95rem;
}

/* Coaching Card Image Styling */
.coaching-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(107, 45, 91, 0.1) 100%);
}

.coaching-card-image img {
    transition: transform 0.3s ease;
}

.coaching-card:hover .coaching-card-image img {
    transform: scale(1.05);
}
