/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #2d3a4b;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 12px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

header.scrolled {
    background: #0b2d4b;
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-text {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.navbar-brand .brand-text span {
    color: #b8860b;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    display: block;
}

.nav-links li a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.nav-links li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    z-index: 100;
    list-style: none;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links li .dropdown-menu li a {
    color: #2d3a4b;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
}

.nav-links li .dropdown-menu li a:hover {
    background: #f9fafc;
    color: #b8860b;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions .phone {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
}

.header-actions .phone i {
    margin-right: 6px;
    color: #b8860b;
}

.header-actions .btn-donate {
    background: #b8860b;
    color: #fff;
    padding: 8px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.25s;
    border: none;
    cursor: pointer;
}

.header-actions .btn-donate:hover {
    background: #c9951a;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #0b2d4b;
}

.hero-slider .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.hero-slider .slide.exit {
    opacity: 0;
    transform: scale(1.05);
    z-index: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,45,75,0.75) 0%, rgba(11,45,75,0.3) 100%);
    z-index: 1;
}

.hero-slider .slide .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    width: 90%;
    padding: 20px;
}

.hero-slider .slide .content .slide-number {
    font-size: 14px;
    font-weight: 700;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.hero-slider .slide .content h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-slider .slide .content h1 span {
    color: #b8860b;
}

.hero-slider .slide .content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slider .slide .content .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #b8860b;
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #c9951a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-controls .dot.active {
    background: #b8860b;
    width: 36px;
    border-radius: 6px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrows button {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.slider-arrows button:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b2d4b;
}

.section-title p {
    color: #4f5d70;
    font-size: 17px;
    margin-top: 4px;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: #b8860b;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .badge {
    display: inline-block;
    background: rgba(184,134,11,0.1);
    color: #b8860b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b2d4b;
    margin-bottom: 16px;
}

.about-text h2 span {
    color: #b8860b;
}

.about-text p {
    color: #2d3a4b;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-text .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.about-text .tags span {
    background: #f9fafc;
    border: 1px solid #eaeef5;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #0b2d4b;
}

.about-text .tags span i {
    color: #b8860b;
    margin-right: 4px;
}

.about-image {
    background: #e7edf5;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.about-image .overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.about-image .overlay i {
    color: #b8860b;
    margin-right: 6px;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-section {
    background: #f9fafc;
}

.programs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.programs-header .left .badge {
    display: inline-block;
    background: rgba(184,134,11,0.1);
    color: #b8860b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 30px;
}

.programs-header .left h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b2d4b;
    margin-top: 4px;
}

.programs-header .left p {
    color: #4f5d70;
    font-size: 15px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeef5;
    transition: all 0.3s;
    position: relative;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.program-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.program-card .body {
    padding: 20px 24px 24px;
}

.program-card .body h4 {
    font-size: 17px;
    font-weight: 600;
    color: #0b2d4b;
    margin-bottom: 4px;
}

.program-card .body .link {
    color: #b8860b;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    transition: gap 0.3s;
    text-decoration: none;
}

.program-card .body .link:hover {
    gap: 12px;
}

/* ============================================================
   VISION & MISSION
   ============================================================ */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-mission .card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    border: 1px solid #eaeef5;
    text-align: center;
}

.vision-mission .card .icon {
    font-size: 48px;
    color: #b8860b;
    margin-bottom: 12px;
}

.vision-mission .card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b2d4b;
    margin-bottom: 8px;
}

.vision-mission .card p {
    color: #2d3a4b;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   CORE VALUES
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #eaeef5;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.value-card .icon {
    font-size: 36px;
    color: #b8860b;
    margin-bottom: 12px;
    display: block;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2d4b;
    margin-bottom: 6px;
}

.value-card p {
    color: #4f5d70;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #f9fafc;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #eaeef5;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.team-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e7edf5;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #0b2d4b;
    border: 3px solid #b8860b;
    overflow: hidden;
}

.team-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .role {
    display: inline-block;
    background: #b8860b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 30px;
    margin-bottom: 8px;
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2d4b;
}

.team-card .title {
    font-size: 13px;
    color: #4f5d70;
    margin-bottom: 6px;
}

.team-card .bio {
    font-size: 14px;
    color: #2d3a4b;
    line-height: 1.6;
    margin-top: 8px;
}

.team-card .social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.team-card .social a {
    color: #b0c4d8;
    font-size: 16px;
    transition: color 0.2s;
}

.team-card .social a:hover {
    color: #b8860b;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: #f9fafc;
    border-radius: 16px;
    padding: 30px 28px;
    border: 1px solid #eaeef5;
    transition: all 0.3s;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
    background: #0b2d4b;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-section p {
    opacity: 0.8;
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 24px;
}

.cta-section .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #b8860b;
}

.cta-section .btn-primary:hover {
    background: #c9951a;
}

.cta-section .btn-secondary {
    border-color: rgba(255,255,255,0.4);
}

.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #0b1f2f;
    color: #b0c4d8;
    padding: 40px 0 20px;
}

footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

footer .footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

footer .footer-logo span {
    color: #b8860b;
}

footer .footer-logo i {
    color: #b8860b;
}

footer .footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-nav a {
    color: #b0c4d8;
    font-size: 14px;
    transition: color 0.2s;
}

footer .footer-nav a:hover {
    color: #b8860b;
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

footer .footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

footer .footer-bottom a:hover {
    color: #b8860b;
}

footer .footer-social {
    display: flex;
    gap: 14px;
}

footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #b0c4d8;
    font-size: 16px;
    transition: all 0.3s;
}

footer .footer-social a:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .navbar-toggler {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0b2d4b;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links li .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        padding-left: 16px;
        display: none;
    }
    
    .nav-links li:hover .dropdown-menu {
        display: block;
    }
    
    .nav-links li .dropdown-menu li a {
        color: rgba(255,255,255,0.8);
        border-bottom-color: rgba(255,255,255,0.06);
    }
    
    .nav-links li .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.05);
    }
    
    .header-actions .phone {
        display: none;
    }
    
    .hero-slider .slide .content h1 {
        font-size: 36px;
    }
    
    .hero-slider .slide .content p {
        font-size: 16px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .container-fluid {
        padding: 0 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-slider {
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-slider .slide .content h1 {
        font-size: 28px;
    }
    
    .hero-slider .slide .content p {
        font-size: 14px;
    }
    
    .slider-arrows button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    footer .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
        max-height: 550px;
    }
    
    .hero-slider .slide .content h1 {
        font-size: 22px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .slider-controls .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-controls .dot.active {
        width: 24px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
}