/* ============================================ */
/* SIMPLE PROGRAMS DISPLAY - HOME PAGE VERSION  */
/* Clean, minimal, with subtle animations       */
/* ============================================ */

.simple-programs {
    width: 100%;
    padding: 50px 20px;
    background: #ffffff;
    font-family: 'Inter', 'Source Sans Pro', sans-serif;
}

.simple-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.simple-header {
    text-align: center;
    margin-bottom: 40px;
}

.simple-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 10px;
    color: #0B4F66;
    animation: fadeInDown 0.6s ease-out;
}

.simple-header .t-accent {
    color: #F57B2C;
}

.simple-underline {
    display: block;
    width: 100px;
    height: 4px;
    background: #F57B2C;
    margin: 15px auto;
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out forwards;
}

.simple-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ===== PROGRAMS GRID ===== */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.simple-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(11, 79, 102, 0.1);
    transition: all 0.3s ease;
    animation: cardFadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.simple-card:nth-child(1) { animation-delay: 0.1s; }
.simple-card:nth-child(2) { animation-delay: 0.2s; }
.simple-card:nth-child(3) { animation-delay: 0.3s; }

.simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 123, 44, 0.15);
    border-color: rgba(245, 123, 44, 0.3);
}

/* Card Image */
.simple-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.simple-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.simple-card:hover .simple-card-image img {
    transform: scale(1.05);
}

.simple-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0B4F66;
    color: white;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.simple-badge i {
    font-size: 0.9rem;
}

/* Card Content */
.simple-card-content {
    padding: 20px;
}

.simple-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0B4F66;
    margin: 0 0 10px;
    line-height: 1.3;
}

.simple-card-desc {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Simple Features List */
.simple-features {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.simple-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #2d3748;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(11, 79, 102, 0.1);
}

.simple-features li i {
    color: #F57B2C;
    font-size: 0.9rem;
}

/* Simple Button */
.simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #0B4F66;
    border: 2px solid #0B4F66;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.simple-btn i {
    transition: transform 0.3s ease;
}

.simple-btn:hover {
    background: #F57B2C;
    color: white;
    border-color: #F57B2C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 123, 44, 0.3);
}

.simple-btn:hover i {
    transform: translateX(5px);
}

/* ===== VIEW ALL LINK ===== */
.simple-view-all {
    text-align: center;
    margin-top: 30px;
}

.simple-view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0B4F66;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 40px;
    background: rgba(11, 79, 102, 0.05);
    transition: all 0.3s ease;
}

.simple-view-link i {
    transition: transform 0.3s ease;
}

.simple-view-link:hover {
    background: #F57B2C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 123, 44, 0.3);
}

.simple-view-link:hover i {
    transform: translateX(5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .simple-programs {
        padding: 40px 15px;
    }
    
    .simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .simple-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .simple-header h2 {
        font-size: 1.8rem;
    }
    
    .simple-subtitle {
        font-size: 1rem;
    }
    
    .simple-card-title {
        font-size: 1.2rem;
    }
    
    .simple-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* CLIMATE PROFILE FEATURE - IMAGE + DESCRIPTION SIDE BY SIDE */
/* ============================================ */
.climate-profile-feature {
    margin: 50px 0 60px;
    background: linear-gradient(135deg, #f0f7fa 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(11, 79, 102, 0.1);
    border: 1px solid rgba(11, 79, 102, 0.1);
    animation: featureAppear 0.8s ease-out;
}

.climate-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Left Side - Image */
.climate-profile-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 350px;
    animation: slideInLeft 0.8s ease-out;
}

.climate-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.climate-profile-feature:hover .climate-profile-image img {
    transform: scale(1.05);
}

.climate-profile-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(11, 79, 102, 0.9);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
    animation: badgeFloat 3s infinite alternate;
}

.climate-profile-badge i {
    color: #F57B2C;
}

.climate-profile-quote {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 16px;
    border-left: 4px solid #F57B2C;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s ease-out 0.3s forwards;
}

.climate-profile-quote i {
    color: #F57B2C;
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 5px;
}

.climate-profile-quote p {
    margin: 0;
    color: #0B4F66;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Right Side - Content */
.climate-profile-content {
    animation: slideInRight 0.8s ease-out;
}

.climate-profile-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0B4F66;
    margin: 0 0 15px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.climate-profile-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #F57B2C;
    animation: expandWidth 0.8s ease-out 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.climate-profile-desc {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 20px 0 25px;
}

/* Video */
.climate-profile-video {
    margin: 25px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.climate-profile-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(245, 123, 44, 0.2);
}

.climate-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #0B4F66;
}

.climate-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.5s ease;
}

.climate-profile-video:hover iframe {
    transform: scale(1.02);
}

.climate-video-caption {
    padding: 12px 15px;
    background: #0B4F66;
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.climate-video-caption i {
    color: #F57B2C;
    animation: playPulse 2s infinite;
}

/* Stats */
.climate-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.climate-stat {
    text-align: center;
    padding: 15px 10px;
    background: rgba(11, 79, 102, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.climate-stat:hover {
    background: #F57B2C;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 123, 44, 0.2);
}

.climate-stat:hover .climate-stat-number,
.climate-stat:hover .climate-stat-label {
    color: white;
}

.climate-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0B4F66;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.climate-stat-label {
    display: block;
    font-size: 0.8rem;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Action Buttons */
.climate-profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.climate-btn {
    background: linear-gradient(135deg, #0B4F66, #14776D);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(11, 79, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.climate-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.climate-btn:hover {
    background: linear-gradient(135deg, #F57B2C, #ff8c42);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(245, 123, 44, 0.4);
}

.climate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.climate-btn i {
    transition: transform 0.3s ease;
}

.climate-btn:hover i {
    transform: translateX(5px);
}

.climate-btn-outline {
    background: transparent;
    color: #0B4F66;
    border: 2px solid #0B4F66;
    padding: 10px 23px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.climate-btn-outline:hover {
    background: #F57B2C;
    color: white;
    border-color: #F57B2C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 123, 44, 0.3);
}

.climate-btn-outline i {
    transition: transform 0.3s ease;
}

.climate-btn-outline:hover i {
    transform: scale(1.2);
}

/* Animations */
@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

@keyframes badgeFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes playPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .climate-profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .climate-profile-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .climate-profile-feature {
        padding: 20px;
    }
    
    .climate-profile-stats {
        grid-template-columns: 1fr;
    }
    
    .climate-profile-actions {
        flex-direction: column;
    }
    
    .climate-btn,
    .climate-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .climate-profile-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .climate-profile-image {
        min-height: 250px;
    }
    
    .climate-profile-quote {
        padding: 12px;
    }
    
    .climate-profile-quote p {
        font-size: 0.85rem;
    }
}