/* Breadcrumb */
.breadcrumb-section {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 25px 0;
    border-bottom: 2px solid #e8f5e3;
    margin-top: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: #113505;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #1a5208;
    transform: translateX(2px);
}

.breadcrumb .separator {
    color: #b8d4ac;
    font-weight: 300;
}

.breadcrumb .current {
    color: #495057;
    font-weight: 600;
}

/* Program Header */
.program-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #113505 0%, #1a5208 50%, #2d7a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.program-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.program-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-tag i {
    font-size: 16px;
}

.program-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.program-description {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
}

.program-header-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.program-header-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.program-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Program Content Section */
.program-content-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 70px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-block {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8f5e3;
    transition: all 0.3s ease;
}

.content-block:hover {
    box-shadow: 0 8px 30px rgba(17, 53, 5, 0.1);
    transform: translateY(-3px);
}

.content-block h2 {
    font-size: 32px;
    color: #113505;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 4px solid #2d7a1a;
    font-weight: 700;
    position: relative;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #113505, #2d7a1a);
}

.program-text {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(191, 239, 180, 0.08), rgba(191, 239, 180, 0.15));
    border-radius: 12px;
    border-left: 4px solid #2d7a1a;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(45, 122, 26, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(17, 53, 5, 0.15);
    background: linear-gradient(135deg, rgba(191, 239, 180, 0.15), rgba(191, 239, 180, 0.25));
    border-left-color: #113505;
}

.feature-item i {
    color: #2d7a1a;
    font-size: 24px;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item span {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 500;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, #113505 0%, #1a5208 50%, #2d7a1a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.cta-block h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-block h2::after {
    background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
}

.cta-block p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::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 ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary {
    background: white;
    color: #113505;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8f5e3;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 8px 30px rgba(17, 53, 5, 0.12);
    transform: translateY(-3px);
}

.sidebar-card h3 {
    font-size: 22px;
    color: #113505;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e8f5e3;
    font-weight: 700;
    position: relative;
}

.sidebar-card h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #113505, #2d7a1a);
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e8f5e3;
    transform: translateX(5px);
}

.info-item i {
    color: #2d7a1a;
    font-size: 20px;
    margin-top: 3px;
}

.info-item > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 11px;
    color: #718096;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: #2d3748;
    font-weight: 600;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.share-btn:hover::before {
    width: 200px;
    height: 200px;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #006097);
}

.share-btn.email {
    background: linear-gradient(135deg, #113505, #2d7a1a);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #113505 0%, #1a5208 50%, #2d7a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.contact-card h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.contact-card h3::after {
    background: linear-gradient(to right, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 300;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    background: white;
    color: #113505;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sidebar-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Related Programs */
.related-programs {
    padding: 90px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.related-programs h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #113505;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.related-programs h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #113505, #2d7a1a);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8f5e3;
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(17, 53, 5, 0.15);
    border-color: #2d7a1a;
}

.related-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.related-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.related-card:hover .related-image::after {
    opacity: 1;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 30px;
}

.related-content h3 {
    font-size: 22px;
    color: #113505;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.related-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.related-link {
    color: #2d7a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.related-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d7a1a;
    transition: width 0.3s ease;
}

.related-link:hover::after {
    width: calc(100% - 25px);
}

.related-link:hover {
    gap: 15px;
    color: #113505;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .program-header-content {
        gap: 50px;
    }
    
    .program-header h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        margin-top: 70px;
        padding: 20px 0;
    }
    
    .program-header {
        padding: 50px 0;
    }
    
    .program-header-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .program-header h1 {
        font-size: 36px;
    }
    
    .program-description {
        font-size: 17px;
    }
    
    .program-header-image {
        transform: none;
    }
    
    .content-block {
        padding: 30px;
    }
    
    .content-block h2 {
        font-size: 26px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .program-content-section {
        padding: 60px 0;
    }
    
    .related-programs {
        padding: 60px 0;
    }
    
    .related-programs h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .program-header h1 {
        font-size: 30px;
    }
    
    .program-description {
        font-size: 16px;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .content-block h2 {
        font-size: 22px;
    }
    
    .related-programs h2 {
        font-size: 28px;
    }
    
    .related-content h3 {
        font-size: 20px;
    }
}