 :root {
     --primary: #0D4F67;
     /* Deep ocean blue */
     --secondary: #D4AF37;
     /* Golden yellow - temple gold */
     --accent: #2E8B57;
     /* Sea green - lush vegetation */
     --light: #F8F4E9;
     /* Cream - sandy beaches */
     --dark: #1A2F3C;
     /* Dark teal - deep forests */
     --text: #2C3E50;
     /* Charcoal blue-gray */
     --light-text: #FFFFFF;
     --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Source Sans Pro', sans-serif;
     line-height: 1.7;
     color: var(--text);
     background-color: var(--light);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Playfair Display', serif;
     margin-bottom: 1rem;
     font-weight: 600;
     line-height: 1.3;
 }

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .section-title {
     margin-bottom: 3rem;
     font-size: 2.5rem;
     color: var(--primary);
     position: relative;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -12px;
     left: 0;
     width: 100px;
     height: 4px;
     background: linear-gradient(to right, var(--secondary), var(--accent));
     border-radius: 2px;
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     background-color: rgba(255, 255, 255, 0.97);
     box-shadow: var(--shadow);
     z-index: 1000;
     transition: var(--transition);
     padding: 0.8rem 0;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo h1 {
     font-size: 1.8rem;
     color: var(--primary);
     margin: 0;
 }

 .logo span {
     color: var(--secondary);
 }

 .nav-menu {
     display: flex;
     list-style: none;
 }

 .nav-menu li {
     margin-left: 2rem;
     position: relative;
 }

 .nav-menu a {
     text-decoration: none;
     color: var(--dark);
     font-weight: 600;
     transition: var(--transition);
     font-size: 1.05rem;
 }

 .nav-menu a:hover {
     color: var(--secondary);
 }

 .nav-menu a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--secondary);
     transition: var(--transition);
 }

 .nav-menu a:hover::after {
     width: 100%;
 }

 /* Dropdown Menu */
 .dropdown {
     position: relative;
 }

 .dropdown-content {
     display: none;
     position: absolute;
     background-color: white;
     min-width: 220px;
     box-shadow: var(--shadow);
     border-radius: 8px;
     z-index: 1001;
     top: 100%;
     left: 0;
     padding: 0.5rem 0;
     margin-top: 0.5rem;
 }

 .dropdown-content a {
     display: block;
     padding: 0.8rem 1.5rem;
     color: var(--text);
     text-decoration: none;
     transition: var(--transition);
     font-weight: 500;
 }

 .dropdown-content a:hover {
     background-color: rgba(212, 175, 55, 0.1);
     color: var(--secondary);
     padding-left: 2rem;
 }

 .dropdown:hover .dropdown-content {
     display: block;
 }

 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .bar {
     width: 25px;
     height: 3px;
     background-color: var(--dark);
     margin: 3px 0;
     transition: var(--transition);
     border-radius: 2px;
 }

 /* Hero Section */
 .hero {
     height: 60vh;
     background: linear-gradient(rgba(13, 79, 103, 0.7), rgba(13, 79, 103, 0.5)),
         url('https://images.unsplash.com/photo-1564510711644-6b2b36e6bb38?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--light-text);
     padding: 0 1rem;
     margin-top: 60px;
 }

 .hero-content {
     max-width: 800px;
     animation: fadeIn 1.5s ease;
 }

 .hero-content h2 {
     font-size: 3.5rem;
     margin-bottom: 1.5rem;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
     line-height: 1.2;
 }

 .hero-content p {
     font-size: 1.3rem;
     margin-bottom: 2.5rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 300;
 }

 /* Description Section */
 .description {
     padding: 5rem 0;
     background-color: #fff;
 }

 .description-content {
     max-width: 900px;
     margin: 0 auto;
 }

 .description-content p {
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
 }

 .highlight {
     background-color: rgba(212, 175, 55, 0.1);
     padding: 2rem;
     border-radius: 8px;
     border-left: 4px solid var(--secondary);
     margin: 2rem 0;
 }

 .highlight h3 {
     color: var(--primary);
     margin-bottom: 1rem;
 }

 /* Cities Section */
 .features {
     padding: 3rem 0;
     background: linear-gradient(to bottom, #fff, var(--light));
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
 }

 .feature-card {
     background-color: #fff;
     border-radius: 12px;
     padding: 2rem;
     box-shadow: var(--shadow);
     transition: var(--transition);
     text-align: center;
     position: relative;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
 }

 .feature-badge {
     position: absolute;
     top: 10px;
     right: 20px;
     background-color: var(--accent);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
 }

 .feature-icon {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: var(--accent);
 }

 .feature-card h3 {
     color: var(--primary);
     margin-bottom: 1rem;
 }

 .feature-features {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-top: 1rem;
 }

 .feature-feature {
     background-color: rgba(13, 79, 103, 0.1);
     padding: 4px 8px;
     border-radius: 12px;
     font-size: 0.8rem;
     color: var(--primary);
 }

 /* Accommodations Section */
 .accommodations {
     padding: 5rem 0;
     background: linear-gradient(to bottom, var(--light), #fff);
 }

 .accommodation-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2.5rem;
 }

 .accommodation-card {
     background-color: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     position: relative;
 }

 .accommodation-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .card-image {
     height: 240px;
     overflow: hidden;
     position: relative;
 }

 .card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .accommodation-card:hover .card-image img {
     transform: scale(1.1);
 }

 .card-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background-color: var(--accent);
     color: white;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
 }

 .card-content {
     padding: 1.8rem;
 }

 .card-content h3 {
     color: var(--primary);
     margin-bottom: 0.8rem;
     font-size: 1.5rem;
 }

 .card-content p {
     margin-bottom: 1.2rem;
     color: var(--text);
 }

 .rating {
     color: var(--secondary);
     margin-bottom: 1rem;
 }

 .price {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--accent);
     margin: 1rem 0;
 }

 /* Tours Section */
 .tours {
     padding: 5rem 0;
     background-color: #fff;
 }

 .tour-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2.5rem;
 }

 .tour-card {
     background-color: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     position: relative;
 }

 .tour-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .tour-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background-color: var(--secondary);
     color: white;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     z-index: 2;
 }

 .tour-details {
     display: flex;
     justify-content: space-between;
     margin: 1rem 0;
     font-size: 0.9rem;
     color: var(--text);
 }

 .tour-details span {
     display: flex;
     align-items: center;
 }

 .tour-details i {
     margin-right: 5px;
     color: var(--secondary);
 }

 /* Affiliate Links - CRO Optimized */
 .affiliate-link {
     display: inline-block;
     background: linear-gradient(135deg, var(--primary), var(--dark));
     color: var(--light-text);
     padding: 10px 20px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     transition: var(--transition);
     margin-top: 10px;
     text-align: center;
     width: 100%;
     position: relative;
     overflow: hidden;
 }

 .affiliate-link:hover {
     background: linear-gradient(135deg, var(--dark), var(--primary));
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(13, 79, 103, 0.3);
 }

 .affiliate-link i {
     margin-left: 8px;
     transition: var(--transition);
 }

 .affiliate-link:hover i {
     transform: translateX(4px);
 }

 /* Call to Action */
 .cta-section {
     padding: 4rem 0;
     background: linear-gradient(135deg, var(--accent), var(--primary));
     color: var(--light-text);
     text-align: center;
 }

 .cta-content {
     max-width: 700px;
     margin: 0 auto;
 }

 .cta-content h2 {
     font-size: 2.3rem;
     margin-bottom: 1rem;
     color: var(--light-text);
 }

 .cta-content p {
     margin-bottom: 2rem;
     font-size: 1.1rem;
 }

 .cta-button {
     display: inline-block;
     background: linear-gradient(135deg, var(--secondary), #E8C547);
     color: var(--light-text);
     padding: 15px 35px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: var(--transition);
     border: none;
     cursor: pointer;
     font-size: 1.1rem;
     box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
 }

 /* Footer */
 .footer {
     background-color: var(--dark);
     color: var(--light-text);
     padding: 4rem 0 1.5rem;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 2.5rem;
     margin-bottom: 2.5rem;
 }

 .footer-section h3 {
     color: var(--secondary);
     margin-bottom: 1.5rem;
     font-size: 1.4rem;
 }

 .footer-section h4 {
     color: var(--secondary);
     margin-bottom: 1.2rem;
     font-size: 1.1rem;
 }

 .footer-section ul {
     list-style: none;
 }

 .footer-section ul li {
     margin-bottom: 0.8rem;
 }

 .footer-section a {
     color: var(--light-text);
     text-decoration: none;
     transition: var(--transition);
 }

 .footer-section a:hover {
     color: var(--secondary);
     padding-left: 5px;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     transition: var(--transition);
 }

 .social-links a:hover {
     background-color: var(--secondary);
     transform: translateY(-3px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 1.5rem;
     text-align: center;
     font-size: 0.9rem;
 }

 .footer-bottom a {
     color: var(--secondary);
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 992px) {
     .hero-content h2 {
         font-size: 3rem;
     }

     .accommodation-grid,
     .tour-grid {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background-color: white;
         width: 100%;
         text-align: left;
         transition: var(--transition);
         box-shadow: var(--shadow);
         padding: 1rem 0;
         height: calc(100vh - 70px);
         overflow-y: auto;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-menu li {
         margin: 0;
         width: 100%;
     }

     .nav-menu a {
         display: block;
         padding: 1rem 2rem;
         border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     }

     /* Remove the hover underline effect on mobile */
     .nav-menu a::after {
         display: none;
     }

     /* Dropdown toggle styles */
     .dropdown-toggle {
         display: flex;
         justify-content: space-between;
         align-items: center;
         cursor: pointer;
         position: relative;
     }

     .dropdown-toggle::after {
         content: '▼';
         font-size: 0.7rem;
         transition: var(--transition);
         margin-left: 0.5rem;
     }

     .dropdown.active .dropdown-toggle::after {
         transform: rotate(180deg);
     }

     .dropdown-content {
         position: static;
         box-shadow: none;
         display: none;
         background-color: rgba(0, 0, 0, 0.02);
         padding: 0;
         margin-top: 0;
         min-width: 100%;
     }

     .dropdown.active .dropdown-content {
         display: block;
     }

     .dropdown-content a {
         padding: 0.8rem 3rem;
         border-bottom: 1px solid rgba(0, 0, 0, 0.05);
         font-size: 0.95rem;
     }

     .dropdown-content a:hover {
         padding-left: 3.5rem;
         background-color: rgba(212, 175, 55, 0.1);
     }

     .hamburger {
         display: flex;
     }

     .hamburger.active .bar:nth-child(2) {
         opacity: 0;
     }

     .hamburger.active .bar:nth-child(1) {
         transform: translateY(8px) rotate(45deg);
     }

     .hamburger.active .bar:nth-child(3) {
         transform: translateY(-8px) rotate(-45deg);
     }

     /* Remove the default hover behavior for dropdown on mobile */
     .dropdown:hover .dropdown-content {
         display: none;
     }

     /* Only show dropdown when active class is present */
     .dropdown.active .dropdown-content {
         display: block;
     }

     .hero-content h2 {
         font-size: 2.5rem;
     }

     .section-title {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     .hero-content h2 {
         font-size: 2rem;
     }

     .hero-content p {
         font-size: 1.1rem;
     }

     .accommodation-grid,
     .tour-grid {
         grid-template-columns: 1fr;
     }
 }