:root {
    /* Color palette for Eco-Tours */
    --primary-color: #4CAF50;    /* Green */
    --secondary-color: #FFA000;  /* Amber */
    --accent-color: #00796B;     /* Teal */
    --neutral-color: #607D8B;    /* Blue Grey */
    --highlight-color: #E64A19;  /* Deep Orange */
    
    /* Light and dark shades */
    --primary-light: #81C784;
    --primary-dark: #388E3C;
    --secondary-light: #FFB74D;
    --secondary-dark: #F57C00;
    --accent-light: #4DB6AC;
    --accent-dark: #00695C;
    --neutral-light: #B0BEC5;
    --neutral-dark: #455A64;
    --highlight-light: #FF8A65;
    --highlight-dark: #D84315;
}

/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Section padding */
section {
    padding: 5rem 0;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../BEN_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About section */
.about-feature {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-feature i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Services section */
.services-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.services-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.services-item-img {
    height: 200px;
    object-fit: cover;
}

.services-item-content {
    padding: 1.5rem;
}

.services-item-price {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
}

.services-item-features {
    list-style: none;
    padding-left: 0;
}

.services-item-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.services-item-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Features section */
.features-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.features-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

/* Price plans */
.priceplan-item {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.priceplan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.priceplan-item-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.priceplan-item-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.priceplan-item-content {
    padding: 2rem;
}

.priceplan-item-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.priceplan-item-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.priceplan-item-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Team section */
.team-member {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-content {
    padding: 1.5rem;
    text-align: center;
}

.team-member-name {
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--neutral-color);
    font-weight: 500;
}

/* Reviews section */
.reviews-slider {
    padding: 3rem 0;
}

.reviews-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.reviews-item-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviews-item-author {
    font-weight: 600;
}

/* Core info section */
.coreinfo-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.coreinfo-item i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
}

/* Contact section */
.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    margin-bottom: 1.5rem;
}

/* Blog section */
.blog-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item-content {
    padding: 1.5rem;
}

/* FAQ section */
.faq-accordion .accordion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Gallery section */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.gallery-item img {
    transition: all 0.3s ease;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
}

footer a {
    color: var(--neutral-light);
}

footer a:hover {
    color: #fff;
}

footer p {
    margin-bottom: 0.5rem;
}

#site-copyright {
    display: block;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Decorative elements */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s linear infinite alternate;
}

.shape-2 {
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-light);
    opacity: 0.1;
    border-radius: 50% 50% 70% 30% / 30% 30% 70% 70%;
    animation: morph 10s linear infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Additional page styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../BEN_images/page-header.webp');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3rem;
} 