
        :root {
            --color-primary: #6B8E23;
            --color-primary-dark: #556B2F;
            --color-secondary: #D2691E;
            --color-accent: #F4A460;
            --color-bg: #FFFEF7;
            --color-surface: #FFFFFF;
            --color-text: #2C3E27;
            --color-text-light: #5A6C55;
            --color-border: #E8E5D8;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--color-text);
            background: var(--color-bg);
        }

        /* Navigation */
        nav {
            background: var(--color-surface);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-primary);
            text-decoration: none;
            display: flex;
            align-items: center;

        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-text);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--color-primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--color-text);
        }

        /* Page Container */
        .page {
            display: none;
            animation: fadeIn 0.5s;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Hero Section */
        .hero {
            position: relative;
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Carousel Styles */
        .carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3));
        }

        /* HD Real Nature Images */
        .slide-1 {
            background-image: url('../img/farm13ai.png');
            background-size: cover;
            background-position: center;
        }

        .slide-2 {
            background-image: url('../img/farm11ai.png');
            background-size: cover;
            background-position: center;
        }

        .slide-3 {
            background-image: url('../img/farm10ai.png');
            background-size: cover;
            background-position: center;
        }

        .slide-4 {
            background-image: url('../img/farm1.jpg');
            background-size: cover;
            background-position: center;
        }

        .slide-5 {
            background-image: url('../img/farm5.jpg');
            background-size: cover;
            background-position: center;
        }

        .slide-6 {
            background-image: url('../img/farm2.jpg');
            background-size: cover;
            background-position: center;
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.8rem;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid rgba(255,255,255,0.8);
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(5px);
        }

        .carousel-arrow:hover {
            background: rgba(255,255,255,0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-arrow.prev {
            left: 2rem;
        }

        .carousel-arrow.next {
            right: 2rem;
        }

        .hero-content {
            position: relative;
            z-index: 5;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--color-secondary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--color-primary);
        }

        /* Content Sections */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            color: var(--color-text-light);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* Grid Layouts */
        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

        /* Cards */
        .card {
            background: var(--color-surface);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .card-img {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            overflow: hidden;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            display: block;
        }

        .card h3 {
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .card p {
            color: var(--color-text-light);
            line-height: 1.6;
        }

        .card-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-secondary);
            margin: 1rem 0;
        }

        /* Stats Section */
        .stats {
            background: var(--color-primary);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 12px;
            margin: 3rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-item {
            background: var(--color-surface);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--color-primary);
            box-shadow: var(--shadow-sm);
        }

        .timeline-year {
            color: var(--color-primary);
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        /* Activity List */
        .activity-list {
            display: grid;
            gap: 1.5rem;
        }

        .activity-item {
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .activity-icon {
            width: 60px;
            height: 60px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            height: 200px;
            background: linear-gradient(135deg, 
                var(--color-primary) 0%, 
                var(--color-accent) 50%,
                var(--color-secondary) 100%);
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item::after {
            content: '🖼️';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            opacity: 0.5;
        }

        /* Form */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--color-text);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--color-border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        /* Contact Info */
        .contact-info {
            background: var(--color-surface);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* FAQ */
        .faq-item {
            background: var(--color-surface);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            font-weight: bold;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .faq-answer {
            color: var(--color-text-light);
            line-height: 1.6;
        }

        /* Map */
        .map-container {
            height: 400px;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 2rem 0;
        }

        /* Footer */
        footer {
            background: var(--color-text);
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--color-accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--color-accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }

        /* Newsletter */
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 4px;
        }

        .newsletter-form button {
            padding: 0.8rem 1.5rem;
            background: var(--color-secondary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }

        .newsletter-form button:hover {
            background: var(--color-primary);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-surface);
                flex-direction: column;
                padding: 1rem 2rem;
                box-shadow: var(--shadow-md);
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Accommodation Badge */
        .badge {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: var(--color-accent);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Feature List */
        .feature-list {
            list-style: none;
            margin: 1rem 0;
        }

        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-primary);
            font-weight: bold;
        }

        /* Pricing Grid - 2 cards per row */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        @media (max-width: 968px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Pricing Card with Animation */
        .pricing-card {
            background: var(--color-surface);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            animation: slideUp 0.6s ease-out backwards;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:nth-child(2) { animation-delay: 0.2s; }
        .pricing-card:nth-child(3) { animation-delay: 0.3s; }
        .pricing-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card .badge {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            background: var(--color-secondary);
            box-shadow: var(--shadow-sm);
        }

        /* Pricing Image */
        .pricing-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
            transition: opacity 0.3s;
        }

        .pricing-card:hover .pricing-image::before {
            opacity: 0.7;
        }

        .pricing-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .pricing-card:hover .pricing-image::after {
            width: 300px;
            height: 300px;
        }

        /* Pricing Content */
        .pricing-content {
            padding: 2rem;
        }

        .pricing-content h2 {
            color: var(--color-primary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            transition: color 0.3s;
        }

        .pricing-card:hover .pricing-content h2 {
            color: var(--color-secondary);
        }

        .pricing-content p {
            color: var(--color-text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .pricing-content .feature-list {
            margin: 1.5rem 0;
        }

        .pricing-content .feature-list li {
            font-size: 0.95rem;
            padding: 0.6rem 0;
            opacity: 0;
            animation: fadeInLeft 0.5s ease-out forwards;
        }

        .pricing-card:hover .feature-list li {
            animation: fadeInLeft 0.3s ease-out forwards;
        }

        .pricing-content .feature-list li:nth-child(1) { animation-delay: 0.1s; }
        .pricing-content .feature-list li:nth-child(2) { animation-delay: 0.15s; }
        .pricing-content .feature-list li:nth-child(3) { animation-delay: 0.2s; }
        .pricing-content .feature-list li:nth-child(4) { animation-delay: 0.25s; }
        .pricing-content .feature-list li:nth-child(5) { animation-delay: 0.3s; }
        .pricing-content .feature-list li:nth-child(6) { animation-delay: 0.35s; }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Pricing Footer */
        .pricing-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--color-border);
        }

        .price-tag {
            display: flex;
            flex-direction: column;
        }

        .price-amount {
            font-size: 2rem;
            font-weight: bold;
            color: var(--color-secondary);
            line-height: 1;
            transition: transform 0.3s;
        }

        .pricing-card:hover .price-amount {
            transform: scale(1.1);
        }

        .price-period {
            font-size: 0.9rem;
            color: var(--color-text-light);
            margin-top: 0.3rem;
        }

        .btn-book {
            padding: 0.9rem 2rem;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-book::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-book:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Team Member */
        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .team-name {
            font-weight: bold;
            color: var(--color-primary);
            margin-bottom: 0.3rem;
        }

        .team-role {
            color: var(--color-text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Menu Item */
        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: start;
            padding: 1rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-name {
            font-weight: bold;
            color: var(--color-text);
            margin-bottom: 0.3rem;
        }

        .menu-description {
            color: var(--color-text-light);
            font-size: 0.9rem;
        }

        .menu-price {
            color: var(--color-secondary);
            font-weight: bold;
            white-space: nowrap;
            margin-left: 1rem;
        }
   