/* assets/css/modern.css - تصميم عصري متكامل */

/* ============================================ */
/* ROOT VARIABLES */
/* ============================================ */
:root {
    --primary: #1a5276;
    --primary-dark: #0e3450;
    --primary-light: #2980b9;
    --secondary: #f39c12;
    --accent: #e74c3c;
    --success: #27ae60;
    --gradient-1: linear-gradient(135deg, #1a5276, #2980b9);
    --gradient-2: linear-gradient(135deg, #f39c12, #e67e22);
    --gradient-3: linear-gradient(135deg, #1a5276, #2c3e50);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 70px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-xl: 35px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================ */
/* HERO SECTION - MODERN */
/* ============================================ */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-1);
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(26, 82, 118, 0.4) 0%, rgba(14, 52, 80, 0.8) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-modern .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 25px;
}

.badge-animated {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-animated i {
    margin-left: 8px;
    color: #f39c12;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    display: inline-block;
    position: relative;
    color: #f39c12;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #f39c12;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero.btn-primary {
    background: #f39c12;
    border: none;
    color: #fff;
    box-shadow: 0 5px 25px rgba(243, 156, 18, 0.4);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(243, 156, 18, 0.5);
}

.btn-hero.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-hero.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f39c12;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: #f39c12;
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    bottom: -10px;
    left: -20px;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: #2ecc71;
    top: 50%;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    animation: float-card 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-card i {
    font-size: 20px;
    color: #f39c12;
}

.hero-card span {
    font-size: 14px;
    font-weight: 600;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ============================================ */
/* SECTION HEADERS */
/* ============================================ */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.section-subtitle::before {
    right: 100%;
}

.section-subtitle::after {
    left: 100%;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 15px 0;
}

.section-desc {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================ */
/* FEATURES SECTION */
/* ============================================ */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.feature-card p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.feature-link:hover {
    color: var(--secondary);
}

.feature-link i {
    transition: var(--transition);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* PROJECTS SLIDER */
/* ============================================ */
.projects-modern {
    padding: 80px 0;
}

.project-card-modern {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin: 10px;
    height: 100%;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card-modern:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.project-badge.completed { background: var(--success); }
.project-badge.ongoing { background: var(--secondary); }
.project-badge.planned { background: var(--primary-light); }

.project-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0,0,0,0.1);
}

.progress-bar-custom {
    height: 100%;
    background: var(--secondary);
    position: relative;
    transition: width 1.5s ease;
}

.progress-bar-custom span {
    position: absolute;
    right: 0;
    top: -22px;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
}

.project-content {
    padding: 20px;
}

.project-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.project-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 15px;
}

.project-meta i {
    margin-left: 5px;
}

/* Swiper Custom */
.projectsSwiper {
    padding: 20px 0;
}

.projectsSwiper .swiper-button-next,
.projectsSwiper .swiper-button-prev {
    color: var(--primary);
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.projectsSwiper .swiper-button-next::after,
.projectsSwiper .swiper-button-prev::after {
    font-size: 18px;
}

.projectsSwiper .swiper-pagination-bullet {
    background: var(--primary);
}

.projectsSwiper .swiper-pagination-bullet-active {
    background: var(--secondary);
}

/* ============================================ */
/* STORIES SECTION */
/* ============================================ */
.stories-modern {
    padding: 80px 0;
}

.story-card-modern {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.story-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.story-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.story-avatar {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 25px 20px 20px;
}

.story-content h5 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.story-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.story-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.story-author strong {
    color: var(--primary-dark);
    font-size: 14px;
}

.story-author span {
    font-size: 12px;
    color: #6c757d;
}

/* ============================================ */
/* GALLERY SECTION */
/* ============================================ */
.gallery-modern {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.gallery-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-info span {
    font-size: 13px;
    opacity: 0.8;
}

.gallery-info i {
    margin-left: 5px;
}

/* ============================================ */
/* TESTIMONIALS SECTION */
/* ============================================ */
.testimonials-modern {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin: 10px;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-weight: 700;
    margin: 0;
    color: var(--primary-dark);
}

.testimonial-info span {
    font-size: 13px;
    color: #6c757d;
}

.testimonial-body {
    position: relative;
    padding: 15px 0;
}

.testimonial-body i {
    font-size: 30px;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 10px;
    display: block;
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #2c3e50;
}

.testimonial-rating {
    color: #f39c12;
    margin-top: 15px;
}

.testimonial-rating i {
    margin: 0 2px;
}

/* ============================================ */
/* INITIATIVES SECTION */
/* ============================================ */
.initiatives-modern {
    padding: 80px 0;
}

.initiative-card-modern {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.initiative-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.initiative-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.initiative-status {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--success);
}

.initiative-status.active {
    background: var(--success);
}

.initiative-content {
    padding: 20px;
}

.initiative-content h4 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.initiative-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.initiative-progress {
    margin-bottom: 15px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

/* ============================================ */
/* NEWS SECTION */
/* ============================================ */
.news-modern {
    padding: 80px 0;
}

.news-card-modern {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.news-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    text-align: center;
    line-height: 1.2;
}

.news-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.news-date .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.news-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f39c12;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.news-content {
    padding: 20px;
}

.news-category {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.news-category i {
    margin-left: 5px;
}

.news-content h5 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.news-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary);
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta-modern {
    padding: 80px 0;
}

.cta-wrapper {
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-cta {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 5px 25px rgba(255,255,255,0.3);
}

.btn-cta.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255,255,255,0.4);
}

.btn-cta-outline {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* ============================================ */
/* PARTNERS SECTION */
/* ============================================ */
.partners-modern {
    padding: 40px 0;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 10px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-item img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 12px;
}

.partner-placeholder i {
    font-size: 30px;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-modern {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .floating-shape {
        display: none;
    }
    
    .hero-card {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        width: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .projectsSwiper .swiper-button-next,
    .projectsSwiper .swiper-button-prev {
        display: none;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .project-card-modern .project-image {
        height: 180px;
    }
    
    .news-card-modern .news-image {
        height: 160px;
    }
    
    .story-card-modern .story-image {
        height: 160px;
    }
    
    .initiative-card-modern .initiative-image {
        height: 160px;
    }
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}