:root {
    --primary: #1b4332; 
    --secondary: #2d6a4f;
    --accent: #d4a373; 
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
html { scroll-behavior: smooth;}


section {
    scroll-margin-top: 80px; 
}


nav { background: var(--white); padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.5rem; color: var(--primary); text-transform: uppercase; }
.logo span { color: var(--dark); font-weight: 400; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }


.menu-toggle, .burger { display: none; } 


@media (max-width: 768px) {

    .burger {
        display: block;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        height: 20px;
        position: relative;
    }
    
    .burger span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--primary);
        margin-bottom: 5px;
        transition: 0.3s;
    }


    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }


    .menu-toggle:checked ~ .nav-links {
        right: 0;
    }

 
    .menu-toggle:checked + .burger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle:checked + .burger span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle:checked + .burger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu-toggle { display: none; }
}


.hero { background: linear-gradient(rgba(27, 67, 50, 0.85), rgba(27, 67, 50, 0.85)), url('https://images.unsplash.com/photo-1592595896551-12b371d546d5?auto=format&fit=crop&w=1200&q=80'); background-size: cover; background-position: center; color: var(--white); padding: 100px 0; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.9; }
.badge { background: var(--accent); color: var(--dark); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; display: inline-block; }


.packages { padding: 80px 0; background: var(--light); }
.section-title { text-align: center; font-size: 2.5rem; }
.section-subtitle { text-align: center; margin-bottom: 50px; color: #666; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 40px; border-radius: 12px; border: 1px solid #ddd; display: flex; flex-direction: column; position: relative; }
.card.featured { border: 3px solid var(--primary); transform: scale(1.05); }
.popular { position: absolute; top: 0; right: 0; background: var(--primary); color: white; padding: 5px 15px; font-size: 0.7rem; border-radius: 0 8px 0 8px; }
.card h3 { margin-bottom: 10px; }
.card .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.card ul { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.card ul li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary); font-weight: bold; }


.btn-primary { background: var(--primary); color: white; padding: 15px 30px; border-radius: 6px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; border: none; cursor: pointer; text-align: center; }
.btn-secondary { background: var(--white); color: var(--primary); padding: 15px 30px; border-radius: 6px; text-decoration: none; font-weight: 700; display: inline-block; margin-left: 10px; }
.btn-card { background: #eee; color: var(--dark); padding: 12px; text-align: center; text-decoration: none; font-weight: 700; border-radius: 6px; }

.contact { padding: 80px 0; }
.contact-box { max-width: 600px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select, textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; }
.ohnohoney { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .form-group { grid-template-columns: 1fr; }
    .card.featured { transform: none; margin-bottom: 20px; }
}