/* Home Page Styles */

/* Hero Section */
.hero-section-full {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-background-image.active {
    opacity: 1;
}

.hero-overlay-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.7) 0%, rgba(25, 118, 210, 0.6) 50%, rgba(255, 111, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content-full {
    position: relative;
    z-index: 3;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
}

.hero-title-full {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-full {
    font-size: 1.5rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-section-full {
        min-height: 300px;
    }
    
    .hero-title-full {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-full {
        font-size: 1.2rem;
    }
}

/* Section Wrapper */
.section-wrapper {
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 50%, #FFF3E0 100%);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: '🎨 🎭 🎪';
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 2rem;
    opacity: 0.3;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.stat-icon:hover {
    transform: scale(1.2) rotate(10deg);
}

.stat-icon.green {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #F8B500, #FF6B9D);
}

.stat-icon.blue {
    background: linear-gradient(135deg, #A8E6CF, #88D8A3);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #F3E5F5 50%, #E1F5FE 100%);
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '✨ 🎨 🎭 🎪 ✨';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    padding: 2rem;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: wiggle 0.5s ease-in-out;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.feature-icon.green {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.feature-icon.orange {
    background: linear-gradient(135deg, #F8B500, #FF6B9D);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #A8E6CF, #88D8A3);
}

/* Programs Section */
.programs-section {
    background: linear-gradient(135deg, #FFE0B2 0%, #C5E1A5 25%, #B2EBF2 50%, #F8BBD0 75%, #FFE0B2 100%);
    padding: 6rem 0;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '🎨 🎭 🎪 🎨';
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 2rem;
    opacity: 0.2;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

.program-card-new {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: wiggle 0.5s ease-in-out;
}

.program-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.program-card-new:hover .program-emoji {
    transform: scale(1.2) rotate(10deg);
}

.program-title-new {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
}

.program-desc-new {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.program-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.program-points li {
    padding: 0.55rem 0 0.55rem 2.2rem;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    margin-bottom: 0.4rem;
    transition: all 0.2s ease;
}

.program-points li:hover {
    color: #333;
    transform: translateX(3px);
}

.program-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 1.35rem;
    height: 1.35rem;
    background: #4ECDC4;
    color: white;
    font-weight: 900;
    font-size: 0.7rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.35rem;
    box-shadow: 0 2px 6px rgba(78, 205, 196, 0.35);
    flex-shrink: 0;
}

.program-card-2 .program-points li::before {
    background: #FF6B9D;
    box-shadow: 0 2px 5px rgba(255, 107, 157, 0.3);
}

.program-card-3 .program-points li::before {
    background: #F8B500;
    box-shadow: 0 2px 5px rgba(248, 181, 0, 0.3);
}

.program-card-4 .program-points li::before {
    background: #7ED321;
    box-shadow: 0 2px 5px rgba(126, 211, 33, 0.3);
}

.program-card-1 {
    border-top: 5px solid #4ECDC4;
}

.program-card-2 {
    border-top: 5px solid #FF6B9D;
}

.program-card-3 {
    border-top: 5px solid #F8B500;
}

.program-card-4 {
    border-top: 5px solid #7ED321;
}

/* Achievements Section */
.achievements-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50 0%, #2196F3 50%, #FF9800 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.achievements-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Elegant Achievements Slider */
.achievements-slider-wrapper {
    position: relative;
    padding: 3rem 0;
    margin: 0 auto;
    max-width: 1400px;
    overflow: hidden; /* Hide overflow for clean edges */
}

.achievements-slider-container {
    position: relative;
    overflow: hidden; /* Hide overflow to show only visible slides */
    padding: 2rem 0;
    margin: 0 4rem;
}

.achievements-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.achievement-slide-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: relative;
    z-index: 1;
}

.achievement-slide-item:not(.active) {
    opacity: 0.7;
    transform: scale(0.95);
}

.achievement-slide-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.achievement-slide-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.achievement-slide-item.active .achievement-slide-card {
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.achievement-slide-item:hover .achievement-slide-card {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 175, 80, 0.2);
}

.achievement-slide-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    pointer-events: none;
}

.achievement-slide-image img {
    pointer-events: none;
}

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

.achievement-slide-item:hover .achievement-slide-image img {
    transform: scale(1.1);
}

.achievement-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE082 0%, #FFB74D 50%, #FF8A65 100%);
}

.achievement-slide-placeholder i {
    font-size: 5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.achievement-slide-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

.achievement-slide-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    pointer-events: none;
}

.achievement-slide-content * {
    pointer-events: none;
}

.achievement-slide-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.875rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.achievement-slide-description {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
    font-weight: 400;
}

.achievement-slide-date {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #7a7a7a;
    font-weight: 500;
    margin-top: auto;
}

.achievement-slide-date i {
    color: #4CAF50;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.achievements-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
    z-index: 100;
    left: 0;
    right: 0;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
    z-index: 100;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.slider-nav-btn:hover {
    background: #4CAF50;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-nav-btn:hover {
    background: #4CAF50;
    color: #ffffff;
    border-color: #4CAF50;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

/* Responsive Slider */
@media (max-width: 1200px) {
    .achievement-slide-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .achievements-slider-container {
        margin: 0 3rem;
    }
}

@media (max-width: 768px) {
    .achievement-slide-item {
        flex: 0 0 calc(100% - 0.5rem);
    }
    
    .achievements-slider-container {
        margin: 0 2rem;
    }
    
    .achievement-slide-image {
        height: 250px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .achievements-slider-container {
        margin: 0 1rem;
    }
    
    .achievement-slide-image {
        height: 220px;
    }
}

.empty-achievements {
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media (max-width: 992px) {
    .achievement-image-elegant {
        height: 260px;
    }
    
    .achievements-grid-wrapper {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 4rem 0;
    }
    
    .achievement-image-elegant {
        height: 240px;
    }
    
    .achievement-content-elegant {
        padding: 1.5rem;
    }
    
    .achievement-title-elegant {
        font-size: 1.2rem;
    }
    
    .achievements-grid-wrapper {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .achievements-section {
        padding: 3rem 0;
    }
    
    .achievement-image-elegant {
        height: 220px;
    }
    
    .achievement-content-elegant {
        padding: 1.25rem;
    }
    
    .achievement-title-elegant {
        font-size: 1.15rem;
    }
}

.achievements-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 3rem 0;
    overflow: hidden;
}

.achievements-carousel-container {
    overflow: visible;
    width: 100%;
    position: relative;
    padding: 3rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    will-change: transform;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.achievement-slide {
    flex: 0 0 auto;
    width: 280px;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    opacity: 0.7;
    transform: scale(0.9);
    pointer-events: auto;
    visibility: visible !important;
}

.achievement-slide.active {
    opacity: 1 !important;
    transform: scale(1.35) !important;
    z-index: 10;
    visibility: visible !important;
}

.achievement-slide.prev,
.achievement-slide.next {
    opacity: 0.8 !important;
    transform: scale(0.95) !important;
    visibility: visible !important;
}

.achievement-slide:not(.active):not(.prev):not(.next) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.achievement-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 3px solid transparent;
}

.achievement-slide.active .achievement-card {
    box-shadow: 0 25px 70px rgba(46, 125, 50, 0.35);
    border-color: #4CAF50;
    animation: glow 2s ease-in-out infinite;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.achievement-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #E8F5E9, #E3F2FD);
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE082 0%, #FFB74D 100%);
}

.achievement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
}

.achievement-slide.active .achievement-badge {
    transform: scale(1.2);
    animation: bounce 0.6s ease-in-out infinite;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.15);
}

.achievement-content {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.achievement-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 3.5rem;
}

.achievement-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.achievement-date {
    color: #999;
    font-size: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.achievement-date i {
    color: #2E7D32;
}

/* Achievement animations */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 25px 70px rgba(46, 125, 50, 0.35);
    }
    50% {
        box-shadow: 0 25px 70px rgba(46, 125, 50, 0.5);
    }
}

.empty-achievements {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .achievement-slide {
        width: 280px;
    }
    .achievement-slide.active {
        transform: scale(1.35);
    }
}

@media (max-width: 992px) {
    .achievement-slide {
        width: 260px;
    }
    .achievement-slide.active {
        transform: scale(1.3);
    }
    .achievements-carousel-track {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .achievement-slide {
        width: 240px;
    }
    .achievement-slide.active {
        transform: scale(1.25);
    }
    .achievements-carousel-track {
        gap: 1.5rem;
    }
    .achievements-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .achievement-slide {
        width: 220px;
    }
    .achievement-slide.active {
        transform: scale(1.2);
    }
    .achievements-carousel-track {
        gap: 1rem;
    }
    .achievements-section {
        padding: 3rem 0;
        border-radius: 20px;
    }
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, #FFF3E0 0%, #F1F8E9 50%, #E0F2F1 100%);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.news-section::after {
    content: '📰 ✨ 📝';
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.2;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: pulse 0.6s ease-in-out;
}

.news-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1976D2, #2196F3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.news-placeholder span {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.empty-news {
    padding: 3rem;
    text-align: center;
}

/* Featured Post Styles for Home Page (Smaller) */
.card-featured-home {
    border: none;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-featured-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.featured-image-wrapper-home {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.featured-image-wrapper-home .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-featured-home:hover .featured-image-wrapper-home .card-img-top {
    transform: scale(1.08);
}

.featured-card-body-home {
    padding: 1.5rem;
}

.featured-title-home {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-title-home:hover {
    color: #007bff;
}

.featured-excerpt-home {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-featured-home {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Sidebar Posts for Home Page */
.sidebar-posts-home {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.sidebar-posts-home .sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1rem;
}

.sidebar-posts-home .sidebar-post-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.sidebar-posts-home .sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sidebar-posts-home .sidebar-post-image {
    width: 90px;
    height: 70px;
}

.sidebar-posts-home .sidebar-post-title {
    font-size: 0.9rem;
}

.sidebar-posts-home .sidebar-post-date {
    font-size: 0.75rem;
}

/* Responsive for Home Page */
@media (max-width: 992px) {
    .sidebar-posts-home {
        position: static;
        margin-top: 2rem;
    }
    
    .featured-image-wrapper-home {
        height: 250px;
    }
    
    .featured-title-home {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .featured-image-wrapper-home {
        height: 220px;
    }
    
    .featured-card-body-home {
        padding: 1.25rem;
    }
    
    .featured-title-home {
        font-size: 1.25rem;
    }
    
    .featured-excerpt-home {
        font-size: 0.95rem;
    }
    
    .btn-featured-home {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .sidebar-posts-home {
        padding: 1rem;
    }
    
    .sidebar-posts-home .sidebar-post-image {
        width: 80px;
        height: 60px;
    }
    
    .sidebar-posts-home .sidebar-post-title {
        font-size: 0.85rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #E1F5FE 50%, #FFF9C4 100%);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '📞 ✨ 💌';
    position: absolute;
    top: 5%;
    left: 5%;
    font-size: 2rem;
    opacity: 0.2;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Profile Cards */
.profile-card {
    position: relative;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    background: white;
}

.profile-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    top: -80px;
    right: -50px;
    opacity: 0.6;
}

.profile-card.peach-card {
    background: linear-gradient(135deg, #FFF3EA 0%, #FFE0F4 100%);
}

.profile-card.mint-card {
    background: linear-gradient(135deg, #E4FBF1 0%, #E0F3FF 100%);
}

.floating-emoji {
    font-size: 3rem;
    position: absolute;
    right: 30px;
    top: 25px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.35;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.profile-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.75rem;
}

.profile-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.profile-card.mint-card .profile-title {
    color: #0C6D7C;
}

.profile-subtitle {
    color: #5c5c5c;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.7);
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.8rem;
    color: #5c5c5c;
    display: block;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-chip {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    color: #fff;
}

.chip-green {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.chip-orange {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.chip-purple {
    background: linear-gradient(135deg, #8E24AA, #BA68C8);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-info-block .contact-item {
    display: flex;
    gap: 0.85rem;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 0.9rem 1.1rem;
    align-items: center;
}

.icon-bubble {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4DD0E1, #4DB6AC);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-block .contact-item small {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #6c6c6c;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-actions .btn {
    font-weight: 600;
}

.contact-actions .btn-light {
    background: rgba(255,255,255,0.9);
    border: none;
    color: #0C6D7C;
}

