
/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #8b5e34; /* Earth Brown */
    --primary-color-rgba: rgba(139, 94, 52, 0.8);
    --primary-dark: #6f4e37;
    --secondary-color: #9ae6b4; /* Sage Green */
    --accent-color: #ecc94b; /* Warm Yellow */
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #fefcbf;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        h1, h2, h3 {
            line-height: 1.2;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .btn-block {
            width: 100%;
            text-align: center;
        }

        /* --- HEADER & NAV --- */
        header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-color);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(139, 94, 52, 0.9), rgba(139, 94, 52, 0.8)), url('../img/hero.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 140px 0;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            font-weight: 600;
        }

        .hero-features span {
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 20px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-cta .btn {
            background: var(--white);
            color: var(--primary-color);
        }
        
        .hero-cta .btn-secondary {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        .hero-cta .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
        }

        /* --- ABOUT US --- */
        .about {
            background-color: var(--bg-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .about-image {
            background: #e0e0e0;
            height: 300px;
            border-radius: 10px;
            background-image: url('../img/about.jpg');
            background-size: cover;
            background-position: center;
        }

        /* --- SERVICES --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        /* --- WHY CHOOSE US --- */
        .why-us {
            background-color: var(--bg-light);
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .feature-item i {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-top: 4px;
        }

        /* --- PLANS --- */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .plan-card {
            background: var(--white);
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .plan-card.popular {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(139, 94, 52, 0.15);
            z-index: 2;
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 15px 0;
        }

        .plan-features {
            text-align: left;
            margin: 20px 0;
        }

        .plan-features li {
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .plan-features i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        /* --- BOOKING FORM --- */
        .booking-section {
            background: linear-gradient(135deg, #8b5e34 0%, #6f4e37 100%);
            color: var(--white);
        }

        .booking-section h2, .booking-section p {
            color: var(--white);
        }

        .form-container {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-dark);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(139, 94, 52, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        #booking-status {
            margin-top: 15px;
            font-weight: 600;
            text-align: center;
            display: none;
        }

        .success-msg {
            color: #00b894;
            background: #e0fbf6;
            padding: 15px;
            border-radius: 5px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: relative;
        }

        .stars {
            color: #f2994a;
            margin-bottom: 15px;
        }

        .quote {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .author {
            font-weight: 700;
            color: var(--primary-color);
        }

        /* --- CONTACT & NEWSLETTER --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: var(--white);
        }

        .contact-info-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-item i {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #eee;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .checkbox-group input {
            width: auto;
            margin-top: 4px;
        }

        #newsletter-status {
            display: none;
            margin-top: 10px;
            font-weight: 600;
        }

        /* --- LEGAL & FOOTER --- */
        .legal-section {
            background: #2d3436;
            color: #b2bec3;
            padding: 40px 0;
        }

        .legal-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .legal-item {
            margin-bottom: 30px;
        }

        .legal-item h3 {
            color: var(--white);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .legal-item p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        footer {
            background: #1e272e;
            color: #dfe6e9;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid #34495e;
            padding-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #636e72;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem !important; }
            h2 { font-size: 1.8rem !important; }

            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
                text-align: center;
            }

            .nav-links.mobile-active {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }

            .hero { padding: 80px 0; }
            .about-content, .contact-grid, .form-row { grid-template-columns: 1fr; }
            .plan-card.popular { transform: scale(1); }
        }
    