/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #2C5530;
    --secondary-color: #4A7C59;
    --accent-color: #8BC34A;
    --light-green: #E8F5E8;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #2C5530 0%, #4A7C59 100%);
    --gradient-accent: linear-gradient(135deg, #8BC34A 0%, #CDDC39 100%);
    --shadow-soft: 0 10px 40px rgba(44, 85, 48, 0.1);
    --shadow-medium: 0 15px 60px rgba(44, 85, 48, 0.15);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background: rgba(44, 85, 48, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--primary-color);
    padding: 0.5rem 0;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2C5530 0%, #4A7C59 50%, #8BC34A 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/banner.jpg') center/cover;
    opacity: 0.3;
    z-index: -2;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 195, 74, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: var(--dark-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Highlights Section */
.highlights-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.highlight-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.highlight-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Interactive Map */
.map-section {
    padding: 5rem 0;
}

.interactive-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.hotspot-marker {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    animation: pulse 2s infinite;
}

.hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.map-hotspot:hover .hotspot-tooltip {
    opacity: 1;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.feature-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--light-green);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #555;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Seasonal Section */
.seasonal-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.seasonal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.seasonal-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.seasonal-badge {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

#backToTop{
    display: none!important;
}

.seasonal-content {
    padding: 2rem;
    position: relative;
}

.seasonal-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.seasonal-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.seasonal-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.seasonal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Featured Package */
.featured-package {
    padding: 5rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.featured-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path fill="rgba(255,255,255,0.05)" d="M0,0 C300,50 700,150 1000,100 L1000,0 Z"/></svg>') no-repeat center top;
    background-size: cover;
}

.package-content {
    position: relative;
    z-index: 2;
}

.package-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.package-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 1rem;
    opacity: 0.8;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 1rem;
    opacity: 0.8;
}

.package-image {
    position: relative;
    z-index: 2;
}

.package-image img {
    box-shadow: var(--shadow-medium);
}

/* Newsletter */
.newsletter-section {
    padding: 5rem 0;
    background: white;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 50px 0 0 50px;
    padding: 1rem 1.5rem;
    border-right: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
    color: white;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Contact Page Styles */
.contact-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0 5rem;
    margin-top: 76px;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-info-card {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Page Styles */
.about-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0 5rem;
    margin-top: 76px;
    position: relative;
}

.story-section {
    padding: 5rem 0;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    width: 45%;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 55%;
}

/* .timeline-item:nth-child(even) .timeline-content {
    right: 55%;
} */

.timeline-year {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 5px solid var(--light-green);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Policy Pages */
.policy-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0 3rem;
    margin-top: 76px;
}

.policy-content {
    padding: 3rem 0;
}

.policy-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-family: 'Playfair Display', serif;
}

.policy-content ul, .policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin: 0.5rem 0;
}

/* Form Styles */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.invalid-feedback {
    display: block;
    font-size: 0.9rem;
    color: #dc3545;
    margin-top: 0.25rem;
}

.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
        right: auto !important;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: none;
    }
    
    .package-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .newsletter-form .form-control {
        border-radius: 10px;
        border-right: 2px solid #e0e0e0;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn {
        border-radius: 10px;
        width: 100%;
    }

    .contact-hero{
        padding-top: 100px;
    }

    .contact-hero img{
        margin-top: 20px;
    }
}