/* ================================
   HOMEPAGE REDESIGN - Pure CSS
   ================================ */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container Improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - First Section */
.first-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 50%, #e8f5f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.first-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23d4edda" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.site-intro {
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 3rem;
}

.site-intro .text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2d3748, var(--primary, #0d7232));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.site-intro .text p {
    font-size: 1.3rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.site-intro .image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.site-intro .image img:hover {
    transform: scale(1.02);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary, #0d7232), #0a5d2a);
    color: white;
    box-shadow: 0 8px 25px rgba(13, 114, 50, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 114, 50, 0.4);
    text-decoration: none;
    color: white;
}

.btn-rounded {
    border: 2px solid var(--primary, #0d7232);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-rounded:hover {
    background: var(--primary, #0d7232);
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Partners Section */
.sponsors {
    background: #fff;
    padding: 3rem 0;
    margin: 4rem 0;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sponsors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a, #047230);
}

.sponsors .w-100 span {
    color: var(--primary, #0d7232);
    font-weight: 600;
    font-size: 1.2rem;
}

.scroller {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.partner-image {
    width: 120px;
    height: auto;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1rem;
    background: #f8f9fa;
    margin: 0 1rem;
}

.partner-image:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Site Section */
.site-section {
    padding: 5rem 0;
    position: relative;
}

/* About Section */
.starting-container {
    align-items: center;
    gap: 4rem;
}

.starting-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.starting-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.starting-container .image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.starting-container .image {
    position: relative;
}

.starting-container .image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary, #0d7232), #0a5d2a);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Concept Cards */
.main-concepts-container {
    margin: 6rem 0;
}

.concept-item {
    background: #fff;
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr ;
    gap: 3rem;
    align-items: center;
}

.concept-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a, #047230);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.concept-item:hover::before {
    opacity: 1;
}

.concept-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13, 114, 50, 0.15);
}

.concept-item h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.concept-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.concept-item a {
    color: var(--primary, #0d7232);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.concept-item a:hover {
    text-decoration: none;
    transform: translateX(-5px);
}

.concept-item a::after {
    content: '←';
    transition: transform 0.3s ease;
}

.concept-item a:hover::after {
    transform: translateX(-3px);
}

.concept-item .image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.concept-item ul {
    list-style: none;
    padding: 0;
}

.concept-item ul li {
    margin-bottom: 1.5rem !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.concept-item ul li i {
    color: var(--primary, #0d7232);
    font-size: 1.2rem;
}
.concept-item ul li span {
    text-align-last: start;
}

/* Services Section */
.pt-4 {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
    border-radius: 25px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.pt-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a, #047230);
}

.main-service-item {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-service-item:hover::before {
    opacity: 1;
}

.main-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 114, 50, 0.15);
}

.main-service-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.main-service-item:hover img {
    transform: scale(1.1);
}

.main-service-item a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.main-service-item:hover a {
    color: var(--primary, #0d7232);
}

/* Section Title */
.section-title {
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d3748, var(--primary, #0d7232));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a);
    border-radius: 2px;
}

/* Statistics Section */
.statistics-container {
    background: linear-gradient(135deg, var(--primary, #0d7232), #0a5d2a);
    color: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.statistics-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

.statistics-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.statistics-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.statistics-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.statistics-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.statistics-item span:last-child {
    color: #a6f8ca;
    font-size: 1rem;
    font-weight: 500;
}

/* Members Section */
.member-item {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-item:hover::before {
    opacity: 1;
}

.member-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 114, 50, 0.15);
}

.image-container {
    position: relative;
    width: 150px;
    margin: 0 auto 1.5rem;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
}

.member-item:hover .member-image {
    border-color: var(--primary, #0d7232);
    transform: scale(1.05);
}

.dots-top-shape,
.dots-shape {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.3;
}

.dots-top-shape {
    top: -10px;
    right: -10px;
}

.dots-shape {
    bottom: -10px;
    left: -10px;
}

.member-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-item p {
    font-size: 1rem;
}

/* Title View More */
.title-view-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.title-view-more h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.title-view-more a {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.title-view-more a:hover {
    text-decoration: none;
    transform: translateX(-3px);
}

.title-view-more a::after {
    content: '←';
    transition: transform 0.3s ease;
}

.title-view-more a:hover::after {
    transform: translateX(-3px);
}

/* News & Media Section Container */
.news-media-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.news-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0d7232), #0a5d2a, #047230);
}

/* News Section */
.news-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-section:hover::before {
    opacity: 1;
}

.news-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.news-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 1rem;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover::before {
    opacity: 1;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.15);
}

.news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
}

.news-item:hover img {
    transform: scale(1.03);
}

.news-item .content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    color: #2d3748;
    transition: color 0.3s ease;
}

.news-item:hover h4 {
    color: #e74c3c;
}

.news-item .date {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    margin-top: auto;
}

.news-item .date i {
    color: #e74c3c;
    font-size: 0.9rem;
}

.news-item a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.news-item a:hover {
    text-decoration: none;
}

/* Media Section (Albums & Videos) */
.media-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-section:hover::before {
    opacity: 1;
}

.media-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Album Items */
.album-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1rem;
}

.album-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-item:hover::before {
    opacity: 1;
}

.album-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.15);
}

.album-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-item:hover img {
    transform: scale(1.03);
}

/* Video Items */
.video-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1rem;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover::before {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.15);
}

.video-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
}

.video-item:hover img {
    transform: scale(1.03);
}

.video-item::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.video-item:hover::after {
    background: rgba(155, 89, 182, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Default Box */
.default-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed #dee2e6;
}

/* Carousel Enhancements */
.owl-carousel .owl-nav button {
    background: linear-gradient(135deg, var(--primary, #0d7232), #0a5d2a) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(13, 114, 50, 0.3) !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

.owl-carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(13, 114, 50, 0.4) !important;
}

.owl-carousel .owl-nav .owl-prev {
    right: 60px !important;
    left: auto !important;
}

.owl-carousel .owl-nav .owl-next {
    right: 10px !important;
    left: auto !important;
}

/* Animation Classes */
.fade-up-init {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .site-intro .text h1 {
        font-size: 2.5rem;
    }
    
    .site-intro .text p {
        font-size: 1.1rem;
    }
    
    .concept-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .concept-item h3 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .title-view-more {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .statistics-container {
        padding: 3rem 2rem;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .site-intro .text h1 {
        font-size: 2rem;
    }
    
    .concept-item {
        padding: 1.5rem;
    }
    
    .main-service-item {
        padding: 1.5rem;
    }
    
    .member-item {
        padding: 1.5rem;
    }
    
    .statistics-container {
        padding: 2rem 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ================================
   FOOTER REDESIGN - Modern & Professional
   ================================ */

/* Footer Wrapper */
.footer-wrapper {
    position: relative;
    margin-top: 6rem;
}

/* Wave Animation */
.wave-bottom {
    position: relative;
    z-index: 1;
}

.wave-bottom svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Footer */
.site-footer {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2a 50%, #0f1f15 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></svg>') repeat;
    background-size: 40px 40px;
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Grid */
.site-footer .grid {
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Sections */
.footer-sm-gird-1 {
    position: relative;
}

/* Logo Section */
.logo-footer {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-footer:hover {
    transform: scale(1.05);
}

.footer-sm-gird-1 p {
    color: #a8d4b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Footer Headings */
.site-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
}

/* Footer Links */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-link-li:hover {
    transform: translateX(-5px);
}

.footer-link-li a {
    color: #a8d4b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-link-li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #4ade80;
}

.footer-link-li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-link-li a:hover {
    color: #4ade80;
    text-decoration: none;
    padding-left: 1rem;
}

/* Contact Info Items */
.footer-sm-gird-1 .flex.justify-center {
    align-items: flex-start;
    gap: 1rem;
}

.footer-sm-gird-1 p {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    width: 100%;
}

.footer-sm-gird-1 p:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-2px);
}

.footer-sm-gird-1 p i {
    color: #4ade80;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-sm-gird-1 p span,
.footer-sm-gird-1 p a {
    color: #a8d4b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-sm-gird-1 p a:hover {
    color: #4ade80;
    text-decoration: none;
}

/* Social Links */
.footer-social {
    margin-top: 2rem;
    justify-content: flex-start !important;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8d4b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: #4ade80;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
    border-color: #4ade80;
}

.footer-social a i {
    font-size: 1.2rem;
}

/* Site Credit */
.site-credit {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.site-credit span {
    color: #a8d4b8;
}

.site-credit a {
    color: #4ade80;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.site-credit a:hover {
    color: #22c55e;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

/* Enhanced Visual Effects */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(74, 222, 128, 0.03), transparent);
    animation: footerShine 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes footerShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Responsive Footer Design */
@media (max-width: 1024px) {
    .site-footer .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-sm-gird-1:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 0;
    }
    
    .site-footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-sm-gird-1:last-child {
        grid-column: span 1;
    }
    
    .site-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-link-li a:hover {
        padding-left: 0;
        transform: none;
    }
    
    .footer-link-li:hover {
        transform: none;
    }
    
    .footer-sm-gird-1 .flex.justify-center {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 0;
    }
    
    .site-footer .grid {
        gap: 1.5rem;
    }
    
    .logo-footer {
        width: 100px;
    }
    
    .site-footer h5 {
        font-size: 1.1rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .site-credit {
        padding: 1.5rem;
    }
}

/* Additional Enhancements */
.footer-sm-gird-1 {
    position: relative;
}

.footer-sm-gird-1::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(74, 222, 128, 0.1), transparent, rgba(74, 222, 128, 0.1));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-sm-gird-1:hover::before {
    opacity: 1;
}

/* Link Hover Effects */
.footer-link-li a {
    position: relative;
    overflow: hidden;
}

.footer-link-li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s ease;
}

.footer-link-li a:hover::after {
    width: 100%;
}

/* Contact Info Enhanced Styling */
.footer-sm-gird-1 p {
    position: relative;
    overflow: hidden;
}

.footer-sm-gird-1 p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-sm-gird-1 p:hover::before {
    left: 100%;
}