:root {
    --primary: #002f6c; /* Azul Compassion */
    --primary-light: #00adef; /* Azul Acción */
    --primary-dark: #001a3d;
    --secondary: #00adef;
    --secondary-light: #80d6f7;
    --accent: #f8fafc;
    --white: #ffffff;
    --black: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --font-heading: 'Outfit', sans-serif; /* Más moderno */
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sub-title {
    display: block;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px; /* Menos redondeado para estilo Compassion */
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

.mobile-only {
    display: none;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--white);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: none;
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.logo span {
    color: var(--secondary);
}

.navbar.scrolled .logo {
    color: var(--primary);
}

.navbar.scrolled .logo-img {
    filter: none; /* Original color when scrolled (white background) */
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 47, 108, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar .btn {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        padding: 6rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-main);
        font-size: 1.2rem;
        font-weight: 600;
        display: block;
        padding: 0.5rem 0;
    }

    .mobile-only {
        display: block;
        margin-top: 1rem;
    }

    .mobile-only .btn {
        display: block !important;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white);
        transition: var(--transition);
    }
    
    .navbar.scrolled .mobile-menu-btn span {
        background-color: var(--primary);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: url('../img/Imgheader.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: left;
}

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

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--white);
    text-shadow: none;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background-color: var(--white);
    color: var(--text-main);
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
    border-bottom: 1px solid #e2e8f0;
}

.stats .stat-number {
    color: var(--primary-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

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

/* About Section */
.about {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.mission-list {
    list-style: none;
    margin: 2rem 0;
}

.mission-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mission-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 12px;
}

.mv-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.mv-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mv-item h4 {
    margin-bottom: 0.3rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.mv-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-muted);
}

/* Causes Section */
.causes {
    padding: 8rem 0;
    background-color: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
}

/* Card Styles */
.cause-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.cause-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.cause-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cause-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cause-body h3 {
    margin-bottom: 1rem;
}

.progress-bar {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 10px;
    margin: 1.5rem 0 0.5rem;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, var(--secondary), var(--secondary-light));
    border-radius: 10px;
}

.cause-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Slider Styles */
.programs-slider {
    padding: 2rem 1rem 5rem;
    overflow: visible; /* Allow cards to breath outside container if needed */
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background: var(--primary-light);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    z-index: 20;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}

.swiper-button-prev {
    left: -10px;
}

.swiper-button-next {
    right: -10px;
}

/* Causes (Programs) Section Cleanup */
.causes {
    padding: 8rem 0;
    background-color: var(--accent);
    overflow: hidden;
}

/* Responsive updates for iPhone 14 Pro Max (430px) and similar */
@media (max-width: 430px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .container {
        padding: 0 var(--container-padding);
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    /* Adjust slider for small screens */
    .programs-slider {
        padding-bottom: 4rem;
    }
    
    /* Better slider navigation on mobile */
    .swiper-button-next, .swiper-button-prev {
        display: flex;
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 0.9rem;
    }
    
    .swiper-button-prev { left: 5px; }
    .swiper-button-next { right: 5px; }
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(rgba(0, 47, 108, 0.85), rgba(0, 47, 108, 0.85)), url('../img/hero.png') center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Empowerment Section */
.empowerment {
    padding: 4rem 0;
}

.empowerment-card {
    position: relative;
    border-radius: 12px;
    padding: 6rem 4rem;
    color: var(--white);
    overflow: hidden;
}

.empowerment-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.empowerment-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.empowerment-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.empowerment-btns {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Stories Section & Video Grid */
.stories {
    padding: 8rem 0;
    background-color: var(--white);
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.stories-header h2 {
    font-size: 2.5rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-video {
    position: relative;
    aspect-ratio: 9/12; /* Vertical story feel */
    height: auto;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.story-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-card:hover .story-video video {
    transform: scale(1.08);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.story-card:hover .play-btn {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.story-card.previewing .play-btn {
    opacity: 0;
    visibility: hidden;
}

.story-body {
    padding: 2.2rem 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.story-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.story-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Live Preview Badge */
.story-video::after {
    content: '● LIVE PREVIEW';
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(220, 38, 38, 0.85);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 20;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.story-card.previewing .story-video::after {
    opacity: 1;
    transform: translateY(0);
}

/* Reels Modal */
.reels-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.reels-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.reels-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 85vh;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.reels-video-wrapper {
    flex: 1;
    position: relative;
    background: #000;
}

.reels-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reels-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.reels-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.reels-info {
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

.reels-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary);
}

/* Play/Pause Overlay in Reels */
.reels-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reels-video-wrapper.paused .reels-play-btn {
    opacity: 1;
}

/* Video Loaders */
.video-loader, .reels-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.story-video.loading .video-loader,
.reels-video-wrapper.loading .reels-loader {
    opacity: 1;
    visibility: visible;
}

/* Reels Navigation Arrows */
.reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2010;
}

.reels-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.reels-prev {
    left: 40px;
}

.reels-next {
    right: 40px;
}

/* Hide nav on small phones if they take too much space */
@media (max-width: 600px) {
    .reels-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .reels-prev { left: 10px; }
    .reels-next { right: 10px; }
}

/* Responsive adjust */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    .reels-container {
        max-width: 100%;
        height: 100%;
        border-radius: 0;
    }
}



/* Update Responsive for new sections */
@media (max-width: 768px) {
    .empowerment-card {
        padding: 4rem 2rem;
    }
    .empowerment-content h2 {
        font-size: 2.2rem;
    }
    .empowerment-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .stories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* PayPal CTA Button */
.btn-paypal-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, #ffc439 0%, #ffb347 50%, #ffc439 100%);
    color: #003087;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(255, 196, 57, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-paypal-cta i {
    font-size: 1.6rem;
    color: #003087;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.btn-paypal-cta span {
    position: relative;
    z-index: 2;
}

.btn-paypal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.btn-paypal-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(255, 196, 57, 0.55);
    background: linear-gradient(135deg, #ffd700 0%, #ffc439 50%, #ffd700 100%);
}

.btn-paypal-cta:hover::before {
    left: 100%;
}

.btn-paypal-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Subtle pulse animation on the PayPal button */
@keyframes paypalPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(255, 196, 57, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(255, 196, 57, 0.6); }
}

.btn-paypal-cta {
    animation: paypalPulse 3s ease-in-out infinite;
}

.btn-paypal-cta:hover {
    animation: none;
}

/* PayPal button responsive */
@media (max-width: 480px) {
    .btn-paypal-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
}

/* WhatsApp CTA Button */
.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-cta i {
    font-size: 1.7rem;
    color: var(--white);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.btn-whatsapp-cta span {
    position: relative;
    z-index: 2;
}

.btn-whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2be872 0%, #25d366 50%, #128c7e 100%);
}

.btn-whatsapp-cta:hover::before {
    left: 100%;
}

.btn-whatsapp-cta:active {
    transform: translateY(0) scale(0.98);
}

/* WhatsApp button responsive */
@media (max-width: 480px) {
    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.info-list {
    list-style: none;
    margin-top: 2rem;
}

.info-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
}

.info-list i {
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

.form-status.pending {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.form-status.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--black);
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .contact-grid { gap: 3rem; }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
        padding-top: 5rem;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .experience-badge {
        display: none;
    }

    .about-grid, 
    .stats-grid,
    .contact-grid,
    .footer-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .footer-brand, .footer-links, .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .logo {
        font-size: 1.4rem;
        gap: 8px;
    }

    .logo-img {
        height: 38px;
    }
}
