:root {
    --primary: #2d6a4f;
    --secondary: #40916c;
    --accent: #52b788;
    --dark: #1b4332;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Top Bar */
#top-bar {
    font-size: 14px;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Hero Section */
.hero-section .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Product Card */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(45, 106, 79, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Section Titles */
section h6 {
    letter-spacing: 2px;
    font-size: 14px;
}

/* Cards */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/page-header.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.breadcrumb-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-section .breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

/* Footer */
footer a:hover {
    color: var(--accent) !important;
}

/* Back to Top */
#back-to-top {
    z-index: 999;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* Page Content */
.page-content h1, .page-content h2, .page-content h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 20px;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .swiper-slide {
        min-height: 400px !important;
    }
    
    .breadcrumb-section {
        padding: 50px 0;
    }
    
    .breadcrumb-section h1 {
        font-size: 1.8rem;
    }
}
