:root {
    --color-primary: #2d5016;
    --color-secondary: #7fb069;
    --color-accent: #a0c997;
    --color-earth: #8b6f47;
    --color-sky: #4a90a4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.navbar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(45, 80, 22, 0.7), rgba(127, 176, 105, 0.7)),
        url('../img/map.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.btn-custom {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.05);
}

.table-custom {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.table-custom thead {
    background: var(--color-primary);
    color: white;
}

footer {
    background: var(--color-primary);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.carousel-caption {
    background: rgba(45, 80, 22, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

.social-icon {
    font-size: 1.5rem;
    color: white;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--color-accent);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.feature-box {
    background: var(--color-accent);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.05);
}

.feature-box i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.feature-box:hover i {
    color: white;
}

.price-badge {
    background: var(--color-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}