/* Additional Styles for New Pages */
.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.category-icon {
    color: var(--primary-color);
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    text-align: center;
}

.value-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    color: white;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 0;
    padding: 0.75rem 0;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}


:root {
    --primary-color: #2e7d32;
    --secondary-color: #7cb342;
    --accent-color: #ff9800;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 15px !important;
}

.hero-section {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(124, 179, 66, 0.8)), url('assets/images/dewan.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 33px;
    padding: -1px 25px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

/*.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 527px;
    height: 3px;
    background: var(--primary-color);
}*/

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 10px 0 1px;
}

.footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.social-icons {
    font-size: 1.5rem;
}

.social-icons a {
    margin: 0 10px;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .top-bar span {
        display: block;
        margin: 5px 0;
    }
    
    .top-bar .text-end {
        text-align: left !important;
    }
}