/* ===== BASE STYLES ===== */
:root {
    /* Colors */
    --primary: #1a56db;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --gray-dark: #374151;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Spacing */
    --section-padding: 5rem 0;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader-content {
    text-align: center;
    color: white;
}

.peace-symbol {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: white;
    width: 0%;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; transform: translateX(0); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 0%; transform: translateX(200px); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dark);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gray);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary);
    color: white;
}


/* SIMPLE HAMBURGER FIX */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary);
    color: white;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 40%;
    animation-delay: -8s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.subsection-title {
    font-size: 2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are-section {
    padding: 80px 0;
    background: white;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-text {
    padding-right: 40px;
}

.who-we-are-text .section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.who-we-are-text .section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 0 30px 0;
    border-radius: 2px;
}

.content-wrapper {
    margin-top: 20px;
}

.main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.highlight-box {
    background: rgba(26, 86, 219, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.highlight-box i.fa-quote-left {
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 10px;
}

.highlight-box p {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.2);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Picture Styles */
.who-we-are-picture {
    position: relative;
}

.picture-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.picture-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 86, 219, 0.7), rgba(26, 86, 219, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.picture-container:hover .picture-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: white;
    padding: 30px;
}

.overlay-text h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.overlay-text p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.overlay-text .established {
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.picture-caption {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.picture-caption p {
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.picture-caption i {
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .who-we-are-text {
        padding-right: 0;
    }
    
    .who-we-are-text .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-text .section-title {
        font-size: 2rem;
    }
    
    .main-text {
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 15px 20px;
    }
    
    .read-more-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .who-we-are-text .section-title {
        font-size: 1.8rem;
    }
    
    .overlay-text h4 {
        font-size: 1.5rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.about-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thematic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.thematic-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.thematic-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ===== IDENTITY SECTION ===== */
.identity-section {
    background: var(--light);
}

.identity-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.identity-card {
    width: 300px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.identity-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary);
}

.value-quote {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
    font-style: italic;
}

/* ===== ACTIVITIES SECTION ===== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 86, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.activity-content {
    padding: 1.5rem;
}

.activity-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.activity-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--light);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 300px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 86, 219, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.view-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.view-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

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

.lightbox-close:hover {
    color: var(--primary-light);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-image-container {
    position: relative;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    border-radius: 0 0 var(--radius) var(--radius);
}

/* ===== COURSES SECTION ===== */
.course-category {
    margin-bottom: 4rem;
}

.course-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.course-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.course-week {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.phase-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background: var(--primary);
}

.phase-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.phase-content {
    flex: 1;
    padding: 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.topic-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.topic-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.topic-card ul {
    list-style: none;
}

.topic-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.topic-card li:last-child {
    border-bottom: none;
}

.topic-card li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.social-media h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    color: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.form-group textarea {
    padding-top: 1rem;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
}

.success-message {
    display: none;
    background: #10b981;
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 1.5rem;
    text-align: center;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ==================== STRATEGIC PLAN SECTION ==================== */
.strategic-plan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Vision & Mission Cards */
.strategic-vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.strategic-vision-card,
.strategic-mission-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.strategic-vision-card:hover,
.strategic-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.strategic-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
}

.strategic-vision-card h3,
.strategic-mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Core Values */
.strategic-values-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.strategic-values-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.strategic-values-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.strategic-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(26, 86, 219, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.strategic-value-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.strategic-value-item i {
    font-size: 2rem;
    color: var(--primary);
}

.strategic-value-item:hover i {
    color: white;
}

.strategic-value-item span {
    font-weight: 600;
}

/* Thematic Areas */
.strategic-thematic {
    margin-bottom: 60px;
}

.strategic-thematic-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

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

.strategic-thematic-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.strategic-thematic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.strategic-thematic-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.strategic-thematic-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Targets */
.strategic-targets-wrapper {
    margin-bottom: 60px;
}

.strategic-targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.strategic-target-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.strategic-target-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.strategic-target-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.strategic-target-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Timeline */
.strategic-timeline-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.strategic-timeline-wrapper h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.strategic-timeline-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.strategic-timeline-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    opacity: 0.3;
}

.strategic-timeline-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    z-index: 1;
}

.strategic-step-year {
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.strategic-step-content {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Download Section */
.strategic-download {
    text-align: center;
    padding: 40px;
    background: var(--primary-dark);
    border-radius: 20px;
    color: white;
}

.strategic-download i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.strategic-download p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .strategic-plan-section {
        padding: 60px 0;
    }
    
    .strategic-vm-grid {
        grid-template-columns: 1fr;
    }
    
    .strategic-values-list {
        gap: 15px;
    }
    
    .strategic-value-item {
        padding: 15px 20px;
    }
    
    .strategic-timeline-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .strategic-timeline-steps::before {
        display: none;
    }
    
    .strategic-targets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .strategic-targets-grid {
        grid-template-columns: 1fr;
    }
    
    .strategic-thematic-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
    background: white;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

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

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

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.newsletter {
    margin-top: 2rem;
}

.newsletter h5 {
    margin-bottom: 1rem;
    color: white;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .identity-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .identity-card {
        width: 100%;
        max-width: 300px;
    }
    
    .activities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-timeline::before {
        left: 30px;
    }
    
    .phase-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phase-number {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .hero-shapes,
    .back-to-top,
    .footer,
    .btn,
    .lightbox-modal,
    .gallery-filter {
        display: none !important;
    }
    
    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }
    
    .hero-section {
        min-height: auto;
        background: white !important;
        color: black;
        padding-top: 0;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .stats-container {
        display: none;
    }
}

/* ===== BOARD MEETINGS SECTION ===== */
.board-meetings-section {
    padding: 80px 0;
    background: var(--light);
}

.board-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: white;
}

.board-slider {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.board-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    background: white;
}

.board-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.board-slide-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.board-slide-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.board-slide:hover .board-slide-image img {
    transform: scale(1.02);
}

.board-slide-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.board-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.board-date i {
    font-size: 1.2rem;
}

.board-slide-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.board-slide-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.board-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.board-topic {
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.board-topic:hover {
    background: var(--primary);
    color: white;
}

/* Slider Navigation Buttons */
.board-slider-prev,
.board-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(26, 86, 219, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.board-slider-prev {
    left: 20px;
}

.board-slider-next {
    right: 20px;
}

.board-slider-prev:hover,
.board-slider-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.board-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.board-dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.board-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

.board-dot:hover {
    background: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .board-meetings-section {
        padding: 60px 0;
    }
    
    .board-slider {
        min-height: auto;
    }
    
    .board-slide {
        flex-direction: column;
        position: relative;
        height: auto;
    }
    
    .board-slide-image {
        min-height: 250px;
    }
    
    .board-slide-image img {
        max-height: 250px;
    }
    
    .board-slide-content {
        padding: 25px;
    }
    
    .board-slide-content h3 {
        font-size: 1.4rem;
    }
    
    .board-slider-prev,
    .board-slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .board-slide-image {
        min-height: 200px;
    }
    
    .board-slide-image img {
        max-height: 200px;
    }
    
    .board-slide-content {
        padding: 20px;
    }
    
    .board-slide-content h3 {
        font-size: 1.2rem;
    }
    
    .board-date {
        font-size: 0.85rem;
    }
}

/* ===== DELPAP PHASE 1 SECTION ===== */
.delpap-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8edf5 100%);
    position: relative;
    overflow: hidden;
}

.delpap-section::before {
    content: '☮';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    bottom: -50px;
    right: -50px;
    pointer-events: none;
}

.delpap-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.delpap-header {
    text-align: center;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.delpap-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.delpap-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.delpap-header .section-divider {
    background: #fbbf24;
    margin: 15px auto;
}

/* Poster Animation */
.delpap-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 40px;
}

.delpap-poster {
    display: flex;
    justify-content: center;
    align-items: center;
}

.poster-animation {
    position: relative;
    animation: floatPoster 3s ease-in-out infinite;
}

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

.delpap-poster-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.delpap-poster-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.poster-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(26,86,219,0.2), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Info Cards */
.delpap-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.info-text p {
    color: var(--gray);
    line-height: 1.5;
}

.deadline {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 12px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.who-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.who-list span {
    background: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.who-list span:hover {
    transform: scale(1.05);
    background: var(--primary);
    color: white;
}

/* Gains Section */
.delpap-gains {
    padding: 30px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.delpap-gains h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.gains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.gain-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
}

.gain-item i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Call to Action */
.delpap-cta {
    padding: 30px 40px;
    text-align: center;
    background: #fff8e7;
    border-top: 1px solid #e5e7eb;
}

.cta-text i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
}

.cta-text h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-phone, .cta-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-phone:hover, .cta-email:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 992px) {
    .delpap-content {
        grid-template-columns: 1fr;
    }
    
    .delpap-poster {
        order: -1;
    }
    
    .delpap-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .delpap-section {
        padding: 50px 0;
    }
    
    .delpap-content {
        padding: 25px;
    }
    
    .delpap-gains, .delpap-cta {
        padding: 25px;
    }
    
    .gains-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .who-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .delpap-title {
        font-size: 1.8rem;
    }
    
    .delpap-subtitle {
        font-size: 1rem;
    }
}