:root {
    --primary-color: #16a34a; /* Green */
    --secondary-color: #eab308; /* Yellow */
    --accent-color: #f59e0b; /* Amber/Dark Yellow */
    --bg-light: #ffffff; /* Pure White */
    --text-dark: #1f2937;
    --text-light: #ffffff;
    --gradient-bg: linear-gradient(135deg, #16a34a, #22c55e);
    --gradient-btn: linear-gradient(135deg, #eab308, #f59e0b);
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.main-header {
    background: var(--gradient-bg);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--text-light);
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
}
.menu-icon {
    display: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: var(--bg-light);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: #fff;
    line-height: 1.3;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-hero:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-btn);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 20, 0.6);
}

.destinations {
    padding: 4rem 0;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

footer {
    background: #222;
    color: #ccc;
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-content h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content a {
    color: #ccc;
}

.footer-content a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--gradient-bg);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 1000;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .main-nav ul li {
        width: 100%;
    }
    .main-nav ul li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav ul li:last-child a {
        border-bottom: none;
    }
    .menu-toggle:checked ~ .main-nav {
        display: block;
    }
}

/* NEW SECTIONS CSS */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}
.section-subtitle {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}
.text-center { text-align: center; }
.bg-light { background-color: #f9fafb; padding: 4rem 0; }

.about-section, .services-section, .pricing-section, .commitments-section {
    padding: 5rem 0;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-list {
    list-style: none;
    margin-top: 1rem;
}
.about-list li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Pricing */
.pricing-table-wrapper {
    overflow-x: auto;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}
.pricing-table th, .pricing-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.pricing-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}
.pricing-table tr:hover {
    background: #f8fbff;
}

/* Button small */
.btn-sm {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-sm:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid var(--primary-color);
}
.stars {
    margin-bottom: 1rem;
}
.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}
.reviewer {
    font-weight: bold;
    color: var(--primary-color);
}

/* Commitments */
.commitments-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.commit-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 3rem 1rem;
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .btn-primary-hero, .btn-outline-hero {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
}
