
:root {
    --primary: #8b0b50;
    --accent: #fea20f;
    --support: #ee7426;
    --contrast: #038267;
    --dark: #2c3e50;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Enhanced Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    background-color: white;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    padding: 0.25rem 0;
}

.navbar-brand img{
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.01);
}

.navbar-brand i {
    color: var(--accent);
}

/* Desktop Navigation */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Enhanced Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 260px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu:hover {
    display: block;
    opacity: 1;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.dropdown-item:hover {
    background-color: var(--light);
    transform: translateX(5px);
    color: var(--primary);
}

/* CTA Button */
.btn-donate-nav {
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    animation: pulse 2s infinite;
}

.btn-donate-nav:hover {
    background: var(--support);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254,162,15,0.4);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(254,162,15,0.7); }
    50% { box-shadow: 0 0 0 10px rgba(254,162,15,0); }
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.drawer-close:hover {
    background: var(--light);
}

.drawer-close i {
    font-size: 1.5rem;
    color: #333;
}

.drawer-content {
    padding: 1.5rem;
}

.drawer-nav-item {
    margin-bottom: 0.5rem;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.drawer-nav-link:hover {
    background: var(--light);
    color: var(--primary);
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.drawer-submenu.active {
    max-height: 800px;
}

.drawer-submenu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.drawer-submenu-item:hover {
    background: var(--light);
    color: var(--primary);
}

.drawer-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.drawer-cta .btn-donate-nav {
    width: 100%;
    justify-content: center;
}

.drawer-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
}

.drawer-contact h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: var(--accent);
    width: 20px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .mobile-drawer,
    .drawer-overlay {
        display: none;
    }
}

/* Demo content */
.demo-section {
    padding: 4rem 0;
    min-height: 100vh;
}

.demo-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 90vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139,11,80,0.7) 0%, rgba(3,130,103,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary-hero {
    background: var(--accent);
    color: white;
}

.btn-primary-hero:hover {
    background: var(--support);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(254,162,15,0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary-hero:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* About Snapshot */
.about-snapshot {
    background: var(--light);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 2rem;
}

.about-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.btn-learn-more {
    background: var(--primary);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: var(--contrast);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,11,80,0.3);
    color: white;
}

/* Work Highlights */
.work-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    height: 100%;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.work-card .card-body {
    padding: 2.5rem;
    text-align: center;
}

.work-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s;
}

.work-card:hover .work-icon {
    transform: rotate(360deg);
}

.icon-education { background: var(--primary); }
.icon-health { background: var(--accent); }
.icon-empowerment { background: var(--contrast); }
.icon-housing { background: var(--support); }

.work-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.work-card p {
    color: #666;
    line-height: 1.6;
}

.impact-stat {
    background: var(--light);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* CTA Section */
.cta-sections {
    background: white;
}

.cta-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border-top: 5px solid;
    height: 100%;
}

.cta-card:nth-child(1) { border-color: var(--accent); }
.cta-card:nth-child(2) { border-color: var(--primary); }
.cta-card:nth-child(3) { border-color: var(--contrast); }

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.cta-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-card:nth-child(1) i { color: var(--accent); }
.cta-card:nth-child(2) i { color: var(--primary); }
.cta-card:nth-child(3) i { color: var(--contrast); }

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    color: white;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
}

/* News Section */
.news-section {
    background: var(--light);
}

.news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s;
    height: 100%;
    background: white;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.news-image {
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card .card-body {
    padding: 2rem;
}

.news-date {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-read-more:hover {
    gap: 1rem;
    color: var(--support);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--dark) 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-column h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content {
        margin-top: 2rem;
    }
}

.cta-section {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.donate-card {
    background: var(--primary);
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.donate-card h2 {
    font-size: 4.5rem;
    line-height: 0.95;
    color: var(--light);
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.donate-card p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.45rem;
    color: var(--light);
    line-height: 1.4;
    
    font-weight: normal;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--primary);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(-5px);
}

.info-card:hover .arrow-circle {
    background: var(--accent);
    transform: translateX(10px);
}

.info-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.info-image {
    width: 220px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    border: 4px solid var(--light);
}

.info-text h3 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.arrow-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.arrow-circle i {
    color: white;
    font-size: 2rem;
}

.donate-arrow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.donate-arrow:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.donate-arrow i {
    color: var(--primary);
    font-size: 2rem;
}
.donate-arrow i:hover {
    color: var(--light);
}

@media (max-width: 1200px) {
    .cta-section {
        grid-template-columns: 1fr;
    }
    
    .donate-card h2 {
        font-size: 4rem;
    }
    
    .info-text h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .donate-card {
        padding: 40px;
    }
    
    .donate-card h2 {
        font-size: 3rem;
    }
    
    .donate-card p {
        font-size: 1.2rem;
    }
    
    .info-card {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .info-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-image {
        width: 150px;
        height: 150px;
    }
    
    .info-text h3 {
        font-size: 2rem;
    }
    
    .arrow-circle {
        margin-top: 20px;
    }
}

/* Events Section */
.events-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    max-width: 800px;
    width: 100%;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.event-image {
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
}

.event-title {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--dark);
    font-size: 0.95rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-detail i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .event-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .event-image {
        width: 100%;
        height: 200px;
    }
    
    .event-title {
        font-size: 1.3rem;
    }
    
    .event-details {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-details {
        flex-direction: column;
        gap: 10px;
    }
}

/* Hero Banner */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(139, 11, 79, 0.65) 0%, rgba(3,130,103,0.65) 100%),
                url('../images/bg-img-1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Main Story Section */
.story-section {
    padding: 5rem 0;
    background: white;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: var(--light);
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box ul li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box ul li i {
    color: var(--accent);
    margin-top: 0.3rem;
    font-size: 1.2rem;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 5rem 0;
    background: var(--light);
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.4s;
    border-top: 5px solid var(--primary);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.mv-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Board Members Section */
.board-section {
    padding: 5rem 0;
    background: var(--light);
}

.board-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.4s;
    height: 100%;
}

.board-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.board-image {
    height: 350px;
    position: relative;
    margin-bottom: 80px;
}

.board-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.board-member:hover .board-image img {
    transform: scale(1.05);
}

.board-content {
    padding: 2rem;
    text-align: center;
}

.board-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    margin-top: 30px;
}

.board-position {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.board-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.board-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.board-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.board-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.4s;
    height: 100%;
}

.value-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
}

.value-card:nth-child(1) .value-icon { background: var(--primary); }
.value-card:nth-child(2) .value-icon { background: var(--accent); }
.value-card:nth-child(3) .value-icon { background: var(--contrast); }
.value-card:nth-child(4) .value-icon { background: var(--support); }

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .board-image {
        height: 280px;
    }
}

/* Hero Banner */
.founder-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(139, 11, 79, 0.6) 0%, rgba(3,130,103,0.6) 100%),
                url('../images/gallery/mmei.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.founder-hero-content {
    max-width: 900px;
    padding: 2rem;
}

.founder-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.founder-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Introduction Section */
.founder-intro {
    padding: 5rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.founder-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-content h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Journey Section */
.founder-journey {
    padding: 5rem 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
}

.journey-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Highlight Box */
.highlight-box {
    background: white;
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.founder-values {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: var(--primary);
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Photo Gallery */
.founder-gallery {
    padding: 5rem 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Quote Section */
.founder-quote {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--contrast) 100%);
    color: white;
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.quote-author {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-hero-content h1 {
        font-size: 2.2rem;
    }

    .founder-hero-content p {
        font-size: 1.1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* Hero Banner */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(139, 11, 79, 0.6) 0%, rgba(3,130,103,0.6) 100%),
                url('../images/bg-img-1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
}

.contact-hero-content {
    max-width: 900px;
    padding: 2rem;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.contact-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 11, 79, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    background: var(--primary);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--contrast);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,11,80,0.3);
}

.form-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-item:nth-child(1) .info-icon { background: var(--primary); }
.info-item:nth-child(2) .info-icon { background: var(--accent); }
.info-item:nth-child(3) .info-icon { background: var(--contrast); }
.info-item:nth-child(4) .info-icon { background: var(--support); }

.info-text h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-text p {
    color: #666;
    line-height: 1.7;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    color: var(--accent);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 450px;
    margin-top: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Media Section */
.social-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--contrast) 100%);
    color: white;
    text-align: center;
}

.social-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.socials-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.socials-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.socials-icon:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light);
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-hero-content p {
        font-size: 1.1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-card,
    .form-content,
    .form-info {
        padding: 2rem 1.5rem;
    }

    .social-content h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 350px;
    }
}