/* About Page Styles */
.main-header .logo-box .logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.main-header .header-lower {
    min-height: 80px;
}

.page-title {
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.page-title .auto-container {
    position: relative;
    z-index: 1;
}

.page-title h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bread-crumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bread-crumb li {
    color: white;
}

.bread-crumb li a {
    color: white;
    text-decoration: none;
}

.bread-crumb li a:hover {
    color: #8BB449;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.about-content h3 {
    color: #58892A;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #8BB449, #58892A);
    border-radius: 2px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Video Section */
.video-section {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.video-section h3 {
    color: #58892A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Carousel Section */
.gallery-section {
    background: white;
    padding: 50px 50px 80px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-section h3 {
    color: #58892A;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-carousel {
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 180, 73, 0.3);
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 180, 73, 0.7), rgba(88, 137, 42, 0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Swiper Navigation */
.gallery-carousel .swiper-button-next,
.gallery-carousel .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #58892A;
}

.gallery-carousel .swiper-button-next:after,
.gallery-carousel .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.gallery-carousel .swiper-button-next:hover,
.gallery-carousel .swiper-button-prev:hover {
    background: #58892A;
    color: white;
}

/* Swiper Pagination */
.gallery-carousel .swiper-pagination {
    bottom: 0;
}

.gallery-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.gallery-carousel .swiper-pagination-bullet-active {
    background: #58892A;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content,
    .video-section,
    .gallery-section {
        padding: 30px;
    }

    .about-content h3 {
        font-size: 26px;
    }

    .gallery-carousel .swiper-button-next,
    .gallery-carousel .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}
