:root {
    --primary: #2E7D32;
    --secondary: #FBC02D;
    --tertiary: #42A5F5;
    --light-bg: #F5F5F5;
    --dark-bg: #181818;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
}

.primary-btn {
    background-color: var(--secondary);
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #e3a900;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

.tertiary-btn {
    background-color: var(--tertiary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tertiary-btn:hover {
    background-color: #1976D2;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.package-card {
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Mobile Menu */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Dark mode styles */
.dark body {
    background-color: var(--dark-bg);
    color: #f5f5f5;
}

.dark .bg-white {
    background-color: #333;
    color: #f5f5f5;
}

.dark .bg-gray-100 {
    background-color: #222;
    color: #f5f5f5;
}

.dark .text-gray-800 {
    color: #f5f5f5;
}

.dark .text-gray-700 {
    color: #e0e0e0;
}

.dark .text-gray-600 {
    color: #bdbdbd;
}

.dark .border-gray-200 {
    border-color: #555;
}

.dark .shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* Accordion for FAQ */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-icon {
    transition: transform 0.3s ease;
}