/* Homepage Updates CSS - Professional Government/MNC Style */

/* Professional Navy Blue & Dark Green Theme */
.premium-purple-section {
    --pp-navy: #001f3f;
    --pp-navy-dark: #00162e;
    --pp-green: #0d4d4d;
    --pp-green-light: #1a5f5f;
    --pp-cream: #faf8f5;
    --pp-cream-dark: #f0ede8;
    --pp-text: rgba(250, 248, 245, 0.95);

    position: relative;
    overflow: hidden;
    color: var(--pp-cream);
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 77, 77, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0, 31, 63, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #001f3f 0%, #00162e 30%, #0d4d4d 70%, #1a5f5f 100%);
    border-top: 3px solid var(--pp-green);
    border-bottom: 3px solid var(--pp-green);
}

.premium-purple-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13, 77, 77, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(13, 77, 77, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.premium-purple-section > .container,
.premium-purple-section > .position-absolute,
.premium-purple-section .container {
    position: relative;
    z-index: 1;
}

.premium-purple-section h1,
.premium-purple-section h2,
.premium-purple-section h3,
.premium-purple-section h4,
.premium-purple-section h5,
.premium-purple-section h6 {
    color: var(--pp-cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-purple-section p,
.premium-purple-section small,
.premium-purple-section span {
    color: var(--pp-text);
}

/* Force Full Screen Hero */
.hero-carousel {
    height: 100vh !important;
    min-height: 100vh !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* About Section - Professional Government Style */
.about-section-bg {
    background: linear-gradient(to bottom, #faf8f5 0%, #f0ede8 100%);
    border-top: 3px solid #1a5f5f;
    border-bottom: 3px solid #001f3f;
}

.about-section-kicker {
    color: #1a5f5f;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid #1a5f5f;
    padding-left: 16px;
    margin-bottom: 1rem;
}

.about-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    color: #001f3f;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    max-width: 28ch;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (min-width: 992px) {
    .about-section-title {
        max-width: none;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .about-section-title {
        letter-spacing: 0.5px;
        margin-bottom: 1.25rem;
    }
}

.about-section-text {
    color: #2a2a2a;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d4d4d, #1a5f5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #001f3f;
}

.about-item-title {
    color: #001f3f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.about-item-subtitle {
    color: #4a4a4a;
    font-weight: 500;
}

.about-read-more-btn {
    background: linear-gradient(135deg, #0d4d4d, #1a5f5f);
    color: #faf8f5;
    border: 3px solid #1a5f5f;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 40px;
    box-shadow: 0 6px 20px rgba(13, 77, 77, 0.3);
    transition: all 0.3s ease;
}

.about-read-more-btn:hover {
    background: linear-gradient(135deg, #1a5f5f, #2d7f7f);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 77, 77, 0.4);
    color: #faf8f5;
}

.about-section-bg .img-border img {
    width: 100%;
    height: clamp(280px, 42vh, 460px);
    object-fit: cover;
}

/* Success Stories Layout - Professional Style */
.success-stories-container {
    padding: 30px 0;
    background: linear-gradient(to bottom, var(--pp-cream) 0%, var(--pp-cream-dark) 100%);
    border-top: 3px solid var(--pp-navy);
}

.story-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .story-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Video Slider (Left) */
.video-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2);
    border: 3px solid var(--pp-navy);
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide.active {
    opacity: 1;
    z-index: 10;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    display: flex;
    gap: 10px;
}

.video-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

/* Right Side Image Grid - Professional Style */
.story-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
}

.story-img-item {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid var(--pp-navy);
}

.story-img-item:hover {
    transform: translateY(-5px);
    border-color: var(--pp-green);
}

.story-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-img-item:hover img {
    transform: scale(1.1);
}

/* Youtube Links Section - Professional */
.youtube-links-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--pp-navy);
}

.yt-link-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 180px;
    box-shadow: 0 4px 10px rgba(0, 31, 63, 0.15);
    transition: all 0.3s;
    text-decoration: none;
    border: 2px solid var(--pp-navy);
}

.yt-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.25);
    border-color: var(--pp-green);
}

.yt-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pp-green), var(--pp-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-cream);
    font-size: 22px;
    transition: all 0.3s;
    border: 3px solid var(--pp-cream);
}

.yt-link-card:hover .yt-overlay {
    background: linear-gradient(135deg, var(--pp-green-light), #2d7f7f);
    transform: translate(-50%, -50%) scale(1.15);
}

/* Certificates & Awards Redesign - Government Style */
.cert-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.cert-image-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.12);
    background: var(--pp-cream);
    padding: 12px;
    border: 3px solid var(--pp-navy);
    transition: all 0.3s ease;
}

.cert-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 31, 63, 0.2);
    border-color: var(--pp-green);
}

.cert-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid var(--pp-cream-dark);
}

.cert-overlay-info {
    text-align: center;
    padding-top: 15px;
}

.cert-year-badge {
    background: linear-gradient(135deg, var(--pp-green), var(--pp-green-light));
    color: var(--pp-cream);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--pp-green-light);
}

.cert-title {
    font-weight: 700;
    color: var(--pp-navy);
    margin: 5px 0 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* New Impact Section - Professional Government Style */
.impact-stats-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Modern Card Layout for Stats */
.impact-stat-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
}

.impact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-stat-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #fbbf24;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.impact-stat-card:hover::before {
    transform: scaleX(1);
}

/* Icon Wrapper with Animation */
.stat-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.stat-icon {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    border: 3px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-icon i {
    display: block;
    line-height: 1;
}

.impact-stat-card:hover .stat-icon {
    transform: rotateY(360deg);
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.6);
}

/* Stat Content */
.stat-content {
    position: relative;
    z-index: 2;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0 10px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #0d4d4d, #1a5f5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.impact-label {
    font-size: 1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4b5563;
    margin-top: 10px;
}

.stat-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .impact-stat-card {
        padding: 30px 15px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .impact-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* Legacy Support - Keep old classes for backward compatibility */
.impact-stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 28px 16px;
    border-radius: 8px;
    background: rgba(13, 77, 77, 0.15);
    border: 2px solid rgba(26, 95, 95, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.impact-stat-item:hover {
    transform: translateY(-6px);
    background: rgba(13, 77, 77, 0.25);
    border-color: var(--pp-green-light);
}

.impact-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pp-green), var(--pp-green-light));
    border: 3px solid rgba(250, 248, 245, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--pp-cream);
}

/* Support CTA Section - Professional Layout */
.support-cta-section-pro {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Header Section */
.support-header-pro {
    text-align: center;
    margin-bottom: 60px;
}

.support-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.support-badge-main i {
    font-size: 1rem;
}

.support-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.support-main-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid - Modern Layout */
.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.benefit-card-modern:hover::before {
    transform: scaleX(1);
}

.benefit-card-inner {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.benefit-icon-modern {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon-modern {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-modern i {
    font-size: 1.8rem;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon-modern i {
    color: #ffffff;
}

.benefit-content-modern {
    flex: 1;
}

.benefit-content-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-content-modern p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.benefit-arrow {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-arrow {
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.benefit-arrow i {
    font-size: 0.9rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.benefit-card-modern:hover .benefit-arrow i {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .benefit-card-inner {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .benefit-icon-modern {
        width: 55px;
        height: 55px;
    }
    
    .benefit-icon-modern i {
        font-size: 1.5rem;
    }
    
    .benefit-content-modern h4 {
        font-size: 1rem;
    }
    
    .benefit-content-modern p {
        font-size: 0.85rem;
    }
    
    .benefit-arrow {
        width: 30px;
        height: 30px;
    }
    
    .benefit-arrow i {
        font-size: 0.8rem;
    }
}

/* Legacy Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* CTA Cards Grid */
.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-card-pro {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cta-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.membership-card-pro:hover {
    border-color: #fbbf24;
}

.donation-card-pro:hover {
    border-color: #ef4444;
}

/* Card Header */
.card-header-pro {
    padding: 35px 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.card-icon-pro {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.membership-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
}

.donation-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.card-title-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-title-section p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Card Body */
.card-body-pro {
    padding: 30px;
    flex-grow: 1;
}

.benefits-list-pro {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list-pro li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.benefits-list-pro i {
    width: 24px;
    height: 24px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.membership-card-pro .benefits-list-pro i {
    background: #fef3c7;
    color: #f59e0b;
}

.donation-card-pro .benefits-list-pro i {
    background: #fee2e2;
    color: #ef4444;
}

/* Card Footer */
.card-footer-pro {
    padding: 25px 30px 30px;
}

.cta-button-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-pro i {
    transition: transform 0.3s ease;
}

.cta-button-pro:hover i {
    transform: translateX(5px);
}

.membership-btn-pro {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.membership-btn-pro:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.donation-btn-pro {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.donation-btn-pro:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .support-main-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .cta-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .support-cta-section-pro {
        padding: 80px 0;
    }
    
    .support-badge-main {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .support-main-title {
        font-size: 2rem;
    }
    
    .support-main-subtitle {
        font-size: 1.05rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-header-pro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 25px 20px;
    }
    
    .card-icon-pro {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .card-title-section h3 {
        font-size: 1.3rem;
    }
    
    .card-body-pro {
        padding: 25px;
    }
    
    .card-footer-pro {
        padding: 20px 25px 25px;
    }
}

/* Legacy Support CTA */
.support-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.support-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.support-content {
    padding-right: 30px;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.support-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
}

/* CTA Cards */
.cta-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.membership-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.donation-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.membership-card .cta-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
}

.donation-card .cta-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.cta-card p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-size: 0.9rem;
}

.cta-benefits i {
    font-size: 0.85rem;
}

.membership-card .cta-benefits i {
    color: #fbbf24;
}

.donation-card .cta-benefits i {
    color: #ef4444;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.membership-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.membership-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #ffffff;
}

.donation-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.donation-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .support-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .support-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .support-features {
        align-items: center;
    }
    
    .support-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .support-title {
        font-size: 2rem;
    }
    
    .support-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 25px;
    }
}

/* Legacy Volunteer CTA */
.volunteer-cta-section {
    padding: 90px 0;
    text-align: center;
    color: white;
}

.volunteer-cta-section .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
}

.volunteer-cta-section .btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

/* Membership CTA polishing */
.membership-cta-section .backdrop-blur {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.membership-benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* -----------------------------
   Home: Our Reach + Programs - Professional Style
------------------------------ */

.section-title-kicker {
    color: var(--pp-green);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title-display {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    color: var(--pp-navy);
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title-sub {
    color: var(--text-muted, #5a5a5a);
    font-size: 1.05rem;
    max-width: 820px;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title-display {
        font-size: 2.2rem;
    }
}

/* Reach - Professional */
.home-reach-section {
    background: linear-gradient(to bottom, var(--pp-cream) 0%, var(--pp-cream-dark) 100%);
    color-scheme: light;
    border-top: 3px solid var(--pp-navy);
    border-bottom: 3px solid var(--pp-navy);
}

@supports (forced-color-adjust: none) {
    .home-reach-section {
        forced-color-adjust: none;
    }
}

.reach-map-card {
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.reach-map {
    width: 100%;
    height: clamp(620px, 78vh, 900px);
    position: relative;
    background: transparent;
    color-scheme: light;
    overflow: hidden;
    contain: layout paint;
}

@supports (forced-color-adjust: none) {
    .reach-map {
        forced-color-adjust: none;
    }
}

@media (max-width: 576px) {
    .home-reach-section > .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }

    .reach-map {
        /* Wider feel on small screens */
        width: calc(100% + 8px);
        margin-left: -4px;
        margin-right: -4px;
        height: 560px;
        min-height: 560px;
    }
}

.reach-map svg.reach-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    filter: none;
}

.reach-map .reach-state {
    fill: rgba(13, 77, 77, 0.15);
    stroke: rgba(0, 31, 63, 0.3);
    stroke-width: 1.5;
    cursor: pointer;
    transition: fill 160ms ease, filter 160ms ease;
}

.reach-map .reach-state.is-available {
    fill: rgba(13, 77, 77, 0.35);
}

.reach-map .reach-state.is-hover,
.reach-map .reach-state.is-selected {
    filter: drop-shadow(0 10px 18px rgba(13, 77, 77, 0.3));
    fill: rgba(26, 95, 95, 0.5);
}

.reach-map .reach-state-label {
    font-size: 11px;
    font-weight: 800;
    fill: var(--pp-navy);
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 3px;
}

@media (max-width: 576px) {
    .reach-map .reach-state-label {
        display: none;
    }
}

.reach-tooltip {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: auto;
    z-index: 5;
    width: min(270px, calc(100% - 28px));
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    color: #0f172a;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.reach-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reach-tooltip .rt-title {
    font-weight: 800;
    font-size: 1rem;
    margin: 0 0 6px;
}

.reach-tooltip .rt-kicker {
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.62);
}

.reach-tooltip .rt-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 23, 42, 0.82);
    font-weight: 600;
}

.reach-tooltip .rt-list li {
    margin: 2px 0;
}

.reach-map-note {
    padding: 12px 14px;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    margin-top: 10px;
}

.reach-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}

.reach-points {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 8px;
    background: var(--pp-cream-dark);
    border: 3px solid var(--pp-navy);
}

.reach-points__title {
    font-weight: 800;
    color: var(--pp-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reach-points__list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--pp-navy);
    font-weight: 600;
}

.reach-points__list li {
    margin: 10px 0;
    line-height: 1.5;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.reach-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 5px;
    flex: 0 0 12px;
    box-shadow: 0 0 0 3px rgba(13, 77, 77, 0.15);
    border: 2px solid var(--pp-navy);
}

.reach-dot--blue { background: var(--pp-green); }
.reach-dot--green { background: var(--pp-green-light); }
.reach-dot--amber { background: #1a5f5f; }

@media (max-width: 991px) {
    .reach-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.reach-stat {
    text-align: center;
    padding: 12px;
}

.reach-stat-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    border-radius: 999px;
    border: 5px solid rgba(13, 77, 77, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.reach-stat-circle span {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
}

.reach-stat-label {
    font-weight: 700;
    color: rgba(15, 23, 42, 0.75);
    font-size: 0.95rem;
    line-height: 1.25;
}

@media (max-width: 576px) {
    .reach-stat-circle {
        width: 120px;
        height: 120px;
    }
    .reach-stat-circle span {
        font-size: 1.8rem;
    }
}

/* Programs (3D flip cards) - Professional Style */
.home-programs-section {
    background: linear-gradient(to bottom, #faf8f5 0%, #f0ede8 100%);
    border-top: 3px solid var(--pp-navy);
}

.flip-card {
    background: transparent;
    perspective: 1100px;
    height: 190px;
    outline: none;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 14px 34px rgba(0, 31, 63, 0.15);
}

.flip-card-front {
    background: linear-gradient(135deg, #001f3f 0%, #00162e 100%);
    color: #faf8f5;
    border: 3px solid #0d4d4d;
}

.flip-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: #1a5f5f;
}

.flip-title {
    font-weight: 800;
    font-size: 1.15rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #faf8f5;
}

.flip-underline {
    width: 42px;
    height: 3px;
    border-radius: 99px;
    background: #1a5f5f;
    margin-top: 12px;
    opacity: 0.9;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #0d4d4d 0%, #1a5f5f 100%);
    color: #faf8f5;
    text-align: center;
    border: 3px solid #001f3f;
}

.flip-back-title {
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #faf8f5;
}

.flip-back-text {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.88);
    line-height: 1.35;
    margin-bottom: 14px;
}

.flip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    color: #001f3f;
    background: #faf8f5;
    border: 2px solid #faf8f5;
    box-shadow: 0 10px 22px rgba(250, 248, 245, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-link:hover {
    color: #faf8f5;
    background: transparent;
    border-color: #faf8f5;
    filter: brightness(1.1);
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    .flip-card-inner {
        transition: none;
    }
}


/* JOIN OUR MISSION - Modern Card Layout */
.join-mission-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.join-mission-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header */
.mission-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mission-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: float-mission 3s ease-in-out infinite;
}

@keyframes float-mission {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mission-icon-circle i {
    font-size: 2.2rem;
    color: #ffffff;
}

.mission-badge-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

/* Content */
.mission-card-content {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.mission-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.mission-card-description {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Row */
.mission-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.4rem;
    color: #3b82f6;
}

.stat-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 5px 0;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

/* Action Buttons */
.mission-card-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.mission-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mission-btn-modern i {
    transition: transform 0.3s ease;
}

.primary-modern {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.primary-modern:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.primary-modern:hover i {
    transform: translateX(5px);
}

.secondary-modern {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.secondary-modern:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

/* Trust Badges */
.mission-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 2;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badge-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .join-mission-card-modern {
        padding: 40px 35px;
    }
    
    .mission-card-title {
        font-size: 1.9rem;
    }
    
    .mission-stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mission-card-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mission-btn-modern {
        justify-content: center;
    }
    
    .mission-trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .join-mission-card-modern {
        padding: 35px 25px;
    }
    
    .mission-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .mission-icon-circle i {
        font-size: 1.8rem;
    }
    
    .mission-badge-modern {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    
    .mission-card-title {
        font-size: 1.6rem;
    }
    
    .mission-card-description {
        font-size: 1rem;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    .stat-info h4 {
        font-size: 1.3rem;
    }
    
    .mission-btn-modern {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Legacy Professional Mission CTA */
.professional-mission-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.mission-cta-inner {
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
.mission-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.decoration-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

/* Header Section */
.mission-header {
    text-align: center;
    margin-bottom: 45px;
}

.mission-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.mission-title-pro {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.mission-subtitle-pro {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Highlights Section */
.mission-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 45px;
    padding: 35px 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.highlight-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.highlight-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 5px 0 0 0;
    font-weight: 600;
}

.highlight-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* CTA Actions */
.mission-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
}

.cta-btn-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn-pro .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-btn-pro.primary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
}

.cta-btn-pro.primary:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.35);
    color: #ffffff;
}

.cta-btn-pro.primary:hover .btn-icon {
    transform: translateX(5px);
}

.cta-btn-pro.secondary {
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.cta-btn-pro.secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .professional-mission-cta {
        padding: 50px 40px;
    }
    
    .mission-title-pro {
        font-size: 2.3rem;
    }
    
    .mission-highlights {
        flex-direction: column;
        gap: 25px;
    }
    
    .highlight-divider {
        width: 80%;
        height: 1px;
    }
    
    .mission-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn-pro {
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .professional-mission-cta {
        padding: 40px 25px;
    }
    
    .mission-badge-pro {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .mission-title-pro {
        font-size: 1.9rem;
    }
    
    .mission-subtitle-pro {
        font-size: 1rem;
    }
    
    .mission-highlights {
        padding: 25px 20px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .highlight-content h4 {
        font-size: 1.5rem;
    }
    
    .highlight-content p {
        font-size: 0.85rem;
    }
    
    .cta-btn-pro {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}


/* Certifications Section - Professional Layout */
.certifications-section-pro {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* Header */
.certifications-header {
    text-align: center;
    margin-bottom: 60px;
}

.cert-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.cert-badge-pro i {
    font-size: 0.95rem;
}

.cert-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cert-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Certificates Grid */
.certificates-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.certificate-card-pro {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
}

.certificate-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

/* Certificate Image */
.cert-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cert-image-pro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.certificate-card-pro:hover .cert-image-pro {
    transform: scale(1.1);
}

.cert-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.cert-placeholder i {
    font-size: 4rem;
    color: #cbd5e1;
}

/* Overlay */
.cert-overlay-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 185, 129, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card-pro:hover .cert-overlay-pro {
    opacity: 1;
}

.cert-overlay-pro i {
    font-size: 2.5rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.certificate-card-pro:hover .cert-overlay-pro i {
    transform: scale(1);
}

/* Certificate Info */
.cert-info-pro {
    padding: 25px 20px;
    position: relative;
}

.cert-year-badge-pro {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cert-title-pro {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cert-date-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.cert-date-pro i {
    color: #10b981;
    font-size: 0.85rem;
}

/* View All Button */
.cert-cta-wrapper {
    text-align: center;
}

.cert-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
    transition: all 0.3s ease;
}

.cert-view-all-btn:hover {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.3);
    color: #ffffff;
}

.cert-view-all-btn i {
    transition: transform 0.3s ease;
}

.cert-view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .certificates-grid-pro {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .certifications-section-pro {
        padding: 80px 0;
    }
    
    .cert-main-title {
        font-size: 2.5rem;
    }
    
    .certificates-grid-pro {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .cert-badge-pro {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    
    .cert-main-title {
        font-size: 2rem;
    }
    
    .cert-subtitle {
        font-size: 1rem;
    }
    
    .certificates-grid-pro {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cert-image-wrapper {
        height: 220px;
    }
    
    .cert-info-pro {
        padding: 20px 15px;
    }
    
    .cert-title-pro {
        font-size: 1rem;
        min-height: auto;
    }
    
    .cert-view-all-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}


/* Awards Section - Professional Layout */
.awards-section-pro {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

/* Header */
.awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.awards-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.awards-badge-pro i {
    font-size: 0.95rem;
}

.awards-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.awards-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Awards Grid */
.awards-grid-pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.award-card-pro {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    position: relative;
}

.award-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

/* Award Ribbon */
.award-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    animation: pulse-award 2s ease-in-out infinite;
}

@keyframes pulse-award {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    }
}

.award-ribbon i {
    font-size: 1.3rem;
    color: #ffffff;
}

/* Award Image */
.award-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.award-image-pro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.award-card-pro:hover .award-image-pro {
    transform: scale(1.1) rotate(2deg);
}

.award-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.award-placeholder i {
    font-size: 4rem;
    color: #fbbf24;
}

/* Overlay */
.award-overlay-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-card-pro:hover .award-overlay-pro {
    opacity: 1;
}

.award-overlay-pro i {
    font-size: 2.5rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.award-card-pro:hover .award-overlay-pro i {
    transform: scale(1);
}

/* Award Info */
.award-info-pro {
    padding: 25px 20px;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #fefce8 100%);
}

.award-year-badge-pro {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fbbf24;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
    border: 2px solid #fbbf24;
}

.award-title-pro {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.award-date-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.award-date-pro i {
    color: #fbbf24;
    font-size: 0.85rem;
}

/* View All Button */
.awards-cta-wrapper {
    text-align: center;
}

.awards-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.awards-view-all-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
    color: #ffffff;
}

.awards-view-all-btn i {
    transition: transform 0.3s ease;
}

.awards-view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .awards-grid-pro {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .awards-section-pro {
        padding: 80px 0;
    }
    
    .awards-main-title {
        font-size: 2.5rem;
    }
    
    .awards-grid-pro {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .awards-badge-pro {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    
    .awards-main-title {
        font-size: 2rem;
    }
    
    .awards-subtitle {
        font-size: 1rem;
    }
    
    .awards-grid-pro {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-image-wrapper {
        height: 220px;
    }
    
    .award-ribbon {
        width: 45px;
        height: 45px;
        top: 12px;
        left: 12px;
    }
    
    .award-ribbon i {
        font-size: 1.1rem;
    }
    
    .award-info-pro {
        padding: 20px 15px;
    }
    
    .award-title-pro {
        font-size: 1rem;
        min-height: auto;
    }
    
    .awards-view-all-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}


/* News & Updates Section - Professional Layout */
.news-section-pro {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* Header */
.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.news-badge-pro i {
    font-size: 0.95rem;
}

.news-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.news-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* News Grid */
.news-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card-pro {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.news-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

/* News Image */
.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.news-image-pro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-pro:hover .news-image-pro {
    transform: scale(1.1);
}

/* Category Badge */
.news-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

/* Overlay */
.news-overlay-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-pro:hover .news-overlay-pro {
    opacity: 1;
}

.news-overlay-pro i {
    font-size: 2.5rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.news-card-pro:hover .news-overlay-pro i {
    transform: scale(1);
}

/* News Content */
.news-content-pro {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Info */
.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
}

.meta-item i {
    color: #3b82f6;
    font-size: 0.8rem;
}

/* Title */
.news-title-pro {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Excerpt */
.news-excerpt-pro {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.news-footer-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: #2563eb;
    gap: 12px;
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

.news-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.news-views i {
    font-size: 0.9rem;
}

/* View All Button */
.news-cta-wrapper {
    text-align: center;
}

.news-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.news-view-all-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.news-view-all-btn i {
    transition: transform 0.3s ease;
}

.news-view-all-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .news-section-pro {
        padding: 80px 0;
    }
    
    .news-main-title {
        font-size: 2.5rem;
    }
    
    .news-grid-pro {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-badge-pro {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    
    .news-main-title {
        font-size: 2rem;
    }
    
    .news-subtitle {
        font-size: 1rem;
    }
    
    .news-grid-pro {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-content-pro {
        padding: 20px;
    }
    
    .news-title-pro {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .news-excerpt-pro {
        font-size: 0.9rem;
    }
    
    .news-view-all-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}


/* Membership CTA Section - Professional White Layout */
.membership-cta-section-pro {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
}

/* Main Content Grid */
.membership-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Side - Information */
.membership-info-section {
    padding-right: 20px;
}

.membership-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.membership-badge-main i {
    font-size: 1rem;
}

.membership-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-highlight {
    color: #fbbf24;
    display: block;
    margin-top: 10px;
}

.membership-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.membership-description em {
    color: #94a3b8;
    font-size: 1rem;
}

.membership-quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
}

.quick-benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Right Side - CTA Card */
.membership-cta-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.2);
    border: 2px solid #fbbf24;
    position: relative;
    overflow: hidden;
}

.membership-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta-card-header i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 15px;
    display: block;
}

.cta-card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.cta-card-body {
    position: relative;
    z-index: 2;
}

.price-badge {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
    font-family: 'Playfair Display', serif;
}

.membership-join-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.membership-join-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.membership-join-btn:hover::before {
    width: 400px;
    height: 400px;
}

.membership-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.4);
    color: #ffffff;
}

.btn-text-main {
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.btn-text-sub {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

.membership-join-btn i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.membership-join-btn:hover i {
    opacity: 1;
    right: 25px;
}

.cta-features {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}

.feature-tag i {
    color: #10b981;
    font-size: 0.8rem;
}

/* Benefits Section */
.membership-benefits-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 50px 40px;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card-item:hover .benefit-icon-wrapper {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: scale(1.1);
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: #f59e0b;
    transition: color 0.3s ease;
}

.benefit-card-item:hover .benefit-icon-wrapper i {
    color: #ffffff;
}

.benefit-card-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.benefit-card-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .membership-cta-section-pro {
        padding: 80px 0;
    }
    
    .membership-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .membership-info-section {
        padding-right: 0;
        text-align: center;
    }
    
    .membership-badge-main {
        margin-left: auto;
        margin-right: auto;
    }
    
    .membership-quick-benefits {
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .membership-main-title {
        font-size: 2rem;
    }
    
    .membership-description {
        font-size: 1rem;
    }
    
    .membership-cta-card {
        padding: 30px 25px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .btn-text-main {
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-benefits-section {
        padding: 40px 25px;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
}


/* Newsletter Section - White Background */
.newsletter-section-white {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.newsletter-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-container {
    position: relative;
    z-index: 1;
}

.newsletter-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
}

.newsletter-badge-white i {
    font-size: 1rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.newsletter-title-white {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.newsletter-subtitle-white {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form-white {
    max-width: 600px;
    margin: 0 auto 25px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.newsletter-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.newsletter-input-icon {
    position: absolute;
    left: 24px;
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
}

.newsletter-input-white {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    font-weight: 500;
}

.newsletter-input-white::placeholder {
    color: #94a3b8;
}

.newsletter-submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.newsletter-submit-btn i {
    transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover i {
    transform: translateX(3px);
}

.newsletter-privacy-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.newsletter-privacy-white i {
    color: #10b981;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-title-white {
        font-size: 2rem;
    }
    
    .newsletter-subtitle-white {
        font-size: 1rem;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }
    
    .newsletter-input-icon {
        position: static;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .newsletter-input-white {
        padding: 14px 20px;
        text-align: center;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .newsletter-privacy-white {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .newsletter-badge-white {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
    
    .newsletter-title-white {
        font-size: 1.6rem;
    }
}


/* Footer Light Background Overrides */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    color: #0f172a !important;
}

.footer h5,
.footer h6,
.footer .footer-brand-name {
    color: #0f172a !important;
}

.footer p,
.footer a,
.footer .btn-link {
    color: #475569 !important;
}

.footer a:hover,
.footer .btn-link:hover {
    color: #3b82f6 !important;
}

.footer .footer-brand-tagline {
    color: #64748b !important;
}

.footer .btn-square {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.footer .btn-square:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
}

.footer .copyright {
    border-top: 1px solid #cbd5e1 !important;
    color: #64748b !important;
}

.footer .trust-badges {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.06)) !important;
    border-left: 4px solid #3b82f6 !important;
}

.footer .trust-badges i {
    color: #3b82f6 !important;
}

.footer-logo {
    border: 2px solid #cbd5e1 !important;
}


/* Newsletter Section - Modern Two Column Layout */
.newsletter-section-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    padding: 5rem 0 !important;
}

@media (max-width: 991px) {
    .newsletter-section-modern {
        padding: 3rem 0 !important;
    }
}

/* Left Side - Content */
.newsletter-content {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .newsletter-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.newsletter-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

@media (max-width: 991px) {
    .newsletter-icon-box {
        margin-left: auto;
        margin-right: auto;
    }
}

.newsletter-icon-box i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.newsletter-badge-modern i {
    font-size: 0.9rem;
    animation: ring 2s ease-in-out infinite;
}

.newsletter-title-modern {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-subtitle-modern {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 991px) {
    .newsletter-features {
        align-items: center;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

/* Right Side - Form Card */
.newsletter-form-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
}

@media (max-width: 576px) {
    .newsletter-form-card {
        padding: 2rem 1.5rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Newsletter Form */
.newsletter-form-modern {
    margin-bottom: 1.5rem;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 6px;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-icon {
    position: absolute;
    left: 20px;
    color: #94a3b8;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.newsletter-input-modern {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
    color: #0f172a;
    outline: none;
    font-weight: 500;
}

.newsletter-input-modern::placeholder {
    color: #94a3b8;
}

.newsletter-btn-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.newsletter-btn-modern:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.newsletter-btn-modern i {
    transition: transform 0.3s ease;
}

.newsletter-btn-modern:hover i {
    transform: translateX(5px);
}

.newsletter-privacy-modern {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-privacy-modern i {
    color: #10b981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
        padding: 12px;
    }
    
    .input-icon {
        position: static;
        margin-bottom: 8px;
    }
    
    .newsletter-input-modern {
        padding: 14px 20px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .newsletter-btn-modern {
        width: 100%;
        justify-content: center;
    }
}
