 /* <style> */
 :root {
     --primary: #2C5530;
     --primary-light: #3A7D44;
     --secondary: #D4A574;
     --light: #F8F5F0;
     --dark: #1A1A1A;
     --gray: #6C757D;
     --gray-light: #E9ECEF;
     --white: #FFFFFF;
     --transition: all 0.3s ease;
 }

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

 body {
     font-family: 'Inter', sans-serif;
     color: var(--dark);
     background: var(--white);
     line-height: 1.6;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Playfair Display', serif;
     font-weight: 600;
     color: var(--primary);
 }

 .section-padding {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     position: relative;
     display: inline-block;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     width: 60px;
     height: 3px;
     background: var(--secondary);
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
 }

 .section-title p {
     color: var(--gray);
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
 }

 /* Header Styles */
 .main-header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     z-index: 1000;
     padding: 15px 0;
     transition: var(--transition);
 }

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

 .logo {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--primary);
     text-decoration: none;
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 50px;
     margin-right: 10px;
 }

 .main-nav ul {
     display: flex;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .main-nav li {
     margin: 0 20px;
     position: relative;
 }

 .main-nav a {
     color: var(--dark);
     text-decoration: none;
     font-weight: 500;
     font-size: 1rem;
     transition: var(--transition);
     padding: 5px 0;
 }

 .main-nav a:hover {
     color: var(--primary);
 }

 .main-nav a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: var(--primary);
     bottom: 0;
     left: 0;
     transition: var(--transition);
 }

 .main-nav a:hover::after {
     width: 100%;
 }

 .nav-dropdown {
     position: relative;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--white);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     min-width: 220px;
     padding: 15px 0;
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: var(--transition);
 }

 .nav-dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .dropdown-menu li {
     margin: 0;
 }

 .dropdown-menu a {
     padding: 10px 25px;
     display: block;
     white-space: nowrap;
 }

 .mobile-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--primary);
 }

 .header-actions {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .btn {
     padding: 12px 28px;
     border-radius: 4px;
     font-weight: 500;
     text-decoration: none;
     display: inline-block;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1rem;
 }

 .btn-primary {
     background: var(--primary);
     color: var(--white);
 }

 .btn-primary:hover {
     background: var(--primary-light);
     color: var(--white);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(44, 85, 48, 0.2);
 }

 .btn-outline {
     border: 2px solid var(--primary);
     color: var(--primary);
     background: transparent;
 }

 .btn-outline:hover {
     background: var(--primary);
     color: var(--white);
 }

 /* Hero Section */
 .hero {
     padding: 160px 0 100px;
     position: relative;
     color: var(--white);
     text-align: center;
     overflow: hidden;
 }

 .hero-slideshow {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
 }

 .hero-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;
 }

 .hero-slide.active {
     opacity: 1;
 }

 .hero-slide::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
     z-index: 1;
 }

 .hero .container {
     position: relative;
     z-index: 2;
 }

 .hero h1 {
     font-size: 3.5rem;
     color: var(--white);
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 40px;
     opacity: 0.9;
 }

 .hero-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 /* Features Section */
 .features {
     background: var(--light);
 }

 .feature-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: 8px;
     text-align: center;
     transition: var(--transition);
     height: 100%;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     background: var(--primary);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 1.8rem;
 }

 .feature-card h3 {
     margin-bottom: 15px;
     font-size: 1.5rem;
 }

 /* Tours Section */
 .tour-card {
     background: var(--white);
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: var(--transition);
     height: 100%;
 }

 .tour-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .tour-img {
     height: 250px;
     overflow: hidden;
 }

 .tour-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

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

 .tour-content {
     padding: 25px;
 }

 .tour-content h3 {
     margin-bottom: 10px;
     font-size: 1.3rem;
 }

 .tour-meta {
     display: flex;
     gap: 15px;
     margin: 15px 0;
     color: var(--gray);
     font-size: 0.9rem;
 }

 .tour-meta i {
     margin-right: 5px;
 }

 .tour-price {
     color: var(--primary);
     font-weight: 600;
     font-size: 1.2rem;
     margin: 15px 0;
 }

 .tour-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px solid var(--gray-light);
     gap: 15px;
 }

 .price-display {
     display: flex;
     flex-direction: column;
 }

 .price-amount {
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--primary);
 }

 .price-label {
     font-size: 0.85rem;
     color: var(--gray);
 }

 .currency-symbol {
     font-size: 1rem;
     font-weight: 400;
     color: var(--gray);
 }

 .tour-cta {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     align-items: center;
 }

 .btn-secondary {
     background: var(--white);
     color: var(--primary);
     border: 2px solid var(--primary);
     padding: 12px 24px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: var(--transition);
     cursor: pointer;
     font-size: 0.95rem;
     font-family: 'Inter', sans-serif;
     white-space: nowrap;
 }

 .btn-secondary:hover {
     background: var(--primary);
     color: var(--white);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
 }

 /* Contact Modal */
 .modal-overlay {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 9999;
     justify-content: center;
     align-items: center;
     animation: fadeIn 0.3s ease;
 }

 .modal-overlay.active {
     display: flex;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .modal-content {
     background: var(--white);
     border-radius: 12px;
     max-width: 600px;
     width: 90%;
     max-height: 90vh;
     overflow-y: auto;
     position: relative;
     animation: slideUp 0.3s ease;
 }

 @keyframes slideUp {
     from {
         transform: translateY(30px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .modal-header {
     padding: 30px;
     border-bottom: 1px solid var(--gray-light);
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h3 {
     font-size: 1.8rem;
     color: var(--primary);
     margin: 0;
 }

 .modal-close {
     background: none;
     border: none;
     font-size: 2rem;
     color: var(--gray);
     cursor: pointer;
     line-height: 1;
     padding: 0;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: var(--transition);
 }

 .modal-close:hover {
     background: var(--gray-light);
     color: var(--primary);
 }

 .modal-body {
     padding: 30px;
 }

 .modal-tour-info {
     background: var(--light);
     padding: 20px;
     border-radius: 8px;
     margin-bottom: 25px;
 }

 .modal-tour-info h4 {
     color: var(--primary);
     margin-bottom: 10px;
     font-size: 1.2rem;
 }

 .modal-tour-info p {
     color: var(--gray);
     margin: 0;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .form-group label {
     font-weight: 500;
     color: var(--dark);
     font-size: 0.95rem;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     padding: 14px 18px;
     border: 1px solid var(--gray-light);
     border-radius: 8px;
     font-family: 'Inter', sans-serif;
     font-size: 1rem;
     transition: var(--transition);
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .modal-footer {
     padding: 25px 30px;
     border-top: 1px solid var(--gray-light);
     display: flex;
     gap: 15px;
     justify-content: flex-end;
 }

 .btn-contact {
     padding: 14px 30px;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1rem;
     font-family: 'Inter', sans-serif;
     justify-content: center;
 }

 .btn-contact.btn-primary {
     background: var(--primary);
     color: var(--white);
 }

 .btn-contact.btn-primary:hover {
     background: var(--primary-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
 }

 .btn-contact.btn-secondary {
     background: var(--gray-light);
     color: var(--dark);
 }

 .btn-contact.btn-secondary:hover {
     background: var(--gray);
 }

 /* CTA Section */
 .cta-section {
     background: var(--primary);
     color: var(--white);
     text-align: center;
     padding: 80px 0;
 }

 .cta-section h2 {
     color: var(--white);
     margin-bottom: 20px;
 }

 .cta-section p {
     max-width: 700px;
     margin: 0 auto 40px;
     opacity: 0.9;
 }

 /* Footer */
 .main-footer {
     background: var(--dark);
     color: var(--white);
     padding: 80px 0 30px;
 }

 .footer-logo {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--white);
     text-decoration: none;
     margin-bottom: 20px;
     display: inline-block;
 }

 .footer-about {
     margin-bottom: 30px;
 }

 .footer-about p {
     opacity: 0.8;
     margin-bottom: 20px;
 }

 .footer-title {
     color: var(--white);
     margin-bottom: 25px;
     font-size: 1.3rem;
 }

 .footer-links ul {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--secondary);
     padding-left: 5px;
 }

 .footer-contact p {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
     opacity: 0.8;
 }

 .footer-contact i {
     margin-right: 10px;
     color: var(--secondary);
     margin-top: 5px;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     text-decoration: none;
     transition: var(--transition);
 }

 .social-links a:hover {
     background: var(--secondary);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: 60px;
     padding-top: 30px;
     text-align: center;
     opacity: 0.7;
 }

 .footer-bottom span {
     color: var(--secondary);
     font-weight: 600;
 }

 /* Mobile menu improvements */
 .mobile-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: var(--primary);
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .section-title h2 {
         font-size: 2.2rem;
     }

     .container {
         padding: 0 20px;
     }
 }

 @media (max-width: 992px) {
     .mobile-toggle {
         display: block;
     }

     .main-nav {
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background: var(--white);
         padding: 20px;
         box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
         transform: translateY(-100%);
         opacity: 0;
         visibility: hidden;
         transition: var(--transition);
         max-height: calc(100vh - 70px);
         overflow-y: auto;
     }

     .main-nav.active {
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
     }

     .main-nav ul {
         flex-direction: column;
     }

     .main-nav li {
         margin: 10px 0;
     }

     .dropdown-menu {
         position: static;
         box-shadow: none;
         padding-left: 20px;
         opacity: 1;
         visibility: visible;
         transform: none;
         display: none;
     }

     .nav-dropdown:hover .dropdown-menu {
         display: block;
     }

     .header-actions {
         flex-wrap: wrap;
         gap: 8px;
     }

     .header-actions .btn {
         font-size: 0.85rem;
         padding: 8px 15px;
     }

     .hero {
         padding: 140px 0 80px;
     }

     .hero h1 {
         font-size: 2.5rem;
         line-height: 1.3;
     }

     .hero p {
         font-size: 1.1rem;
     }

     .hero-buttons {
         flex-direction: column;
         align-items: center;
         gap: 15px;
     }

     .hero-buttons .btn {
         width: 100%;
         max-width: 300px;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .section-title p {
         font-size: 1rem;
     }

     .tour-footer {
         flex-direction: column;
         align-items: flex-start;
     }

     .tour-cta {
         width: 100%;
     }

     .tour-cta .btn {
         width: 100%;
         justify-content: center;
     }
 }

 @media (max-width: 768px) {
     .section-padding {
         padding: 50px 0;
     }

     .section-title {
         margin-bottom: 40px;
     }

     .section-title h2 {
         font-size: 1.8rem;
     }

     .section-title p {
         font-size: 0.95rem;
         padding: 0 15px;
     }

     .hero {
         padding: 120px 0 60px;
     }

     .hero h1 {
         font-size: 1.8rem;
         line-height: 1.3;
         padding: 0 15px;
     }

     .hero p {
         font-size: 1rem;
         padding: 0 20px;
     }

     .feature-card {
         margin-bottom: 25px;
         padding: 30px 20px;
     }

     .feature-icon {
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
     }

     .feature-card h3 {
         font-size: 1.3rem;
     }

     .tour-card {
         margin-bottom: 20px;
     }

     .tour-content {
         padding: 20px;
     }

     .tour-content h3 {
         font-size: 1.2rem;
     }

     .tour-meta {
         flex-direction: column;
         gap: 8px;
     }

     .logo img {
         max-height: 45px;
     }

     .header-actions {
         display: none;
     }

     .cta-section h2 {
         font-size: 1.8rem;
     }

     .cta-section p {
         font-size: 1rem;
     }

     .main-footer {
         padding: 50px 0 30px;
     }

     .footer-title {
         font-size: 1.2rem;
         margin-bottom: 20px;
     }

     .footer-bottom {
         margin-top: 40px;
         padding-top: 20px;
         font-size: 0.9rem;
     }
 }

 @media (max-width: 576px) {
     .container {
         padding: 0 15px;
     }

     .section-padding {
         padding: 40px 0;
     }

     .section-title h2 {
         font-size: 1.5rem;
     }

     .section-title p {
         font-size: 0.9rem;
     }

     .hero {
         padding: 100px 0 50px;
     }

     .hero h1 {
         font-size: 1.5rem;
     }

     .hero p {
         font-size: 0.9rem;
     }

     .hero-buttons .btn {
         font-size: 0.9rem;
         padding: 12px 20px;
     }

     .main-header {
         padding: 10px 0;
     }

     .logo {
         font-size: 1.5rem;
     }

     .logo img {
         max-height: 40px;
     }

     .mobile-toggle {
         font-size: 1.3rem;
     }

     .feature-card {
         padding: 25px 15px;
     }

     .tour-img {
         height: 200px;
     }

     .tour-footer {
         gap: 10px;
     }

     .price-amount {
         font-size: 1.3rem;
     }

     .btn {
         font-size: 0.9rem;
         padding: 10px 20px;
     }

     .cta-section {
         padding: 50px 0;
     }

     .cta-section h2 {
         font-size: 1.5rem;
         padding: 0 15px;
     }

     .cta-section p {
         font-size: 0.9rem;
         padding: 0 15px;
     }

     .main-footer {
         padding: 40px 0 20px;
     }

     .footer-logo {
         font-size: 1.5rem;
         margin-bottom: 15px;
     }

     .footer-about p {
         font-size: 0.9rem;
     }

     .footer-title {
         font-size: 1.1rem;
         margin-bottom: 15px;
         margin-top: 20px;
     }

     .footer-links li {
         margin-bottom: 10px;
     }

     .footer-contact p {
         font-size: 0.9rem;
         margin-bottom: 12px;
     }

     .social-links {
         justify-content: center;
         margin-top: 15px;
     }

     .social-links a {
         width: 38px;
         height: 38px;
         font-size: 0.9rem;
     }

     .footer-bottom {
         margin-top: 30px;
         padding-top: 15px;
         font-size: 0.85rem;
     }

     .col-lg-4, .col-lg-3, .col-lg-2, .col-md-6 {
         text-align: center;
     }

     .footer-links ul, .footer-contact {
         text-align: center;
     }

     .footer-contact p {
         justify-content: center;
     }
 }

 /* </style> */
