* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif; 
}

body { color: #222222; }

/* ==== Navbar ==== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  background: #16a085;
  backdrop-filter: blur(12px);
  padding: 10px 25px;
  box-shadow: 0 3px 8px hsla(0, 0%, 11%, 0.637);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #16a085;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.logo img { height: 45px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover { color: #00f7ff; }

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ==== Hero Slider ==== */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(0, 0%, 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.animate-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  animation: fadeDown 1.5s ease forwards;
}

.animate-sub {
  font-size: 1.1rem;
  margin: 10px 0 20px;
  opacity: 0;
  animation: fadeUp 2s ease forwards;
  animation-delay: 0.5s;
}

.animate-btn {
  background: #16a085;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 1s;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==== Sections ==== */
.section { padding: 80px 10%; text-align: center; }

h2 { color: #1abc9c; font-size: 2rem; margin-bottom: 20px; }

/* Fade in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Vehicle & Destination styles */
.vehicle-container, .destination-container, .news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.vehicle-card, .destination-card, .news-card {
  background: hsl(73, 100%, 50%);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
}

.vehicle-card img, .destination-card img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}

.destination-card h3 {
  background: #118817;
  color: #fff;
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
}

/* Footer */
footer {
  background: hsl(155, 95%, 21%);
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1abc9c;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  transition: 0.3s;
}
#backToTop:hover { background: #1abc9c; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
}
.whatsapp-float img { width: 55px; height: 55px; }

/* Responsive */
@media(max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: rgba(255,255,255,0.95);
    flex-direction: column;
    width: 200px;
    text-align: right;
    padding: 15px;
    display: none;
  }
  .nav-links.active { display: flex; }
}
/* ==== Itinerary Section ==== */
.itinerary {
  background: #f8f9fa;
}

.itinerary-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.itinerary-day {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  color: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.itinerary-day:hover {
  transform: scale(1.02);
}

.itinerary-day .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.itinerary-day .day-content {
  position: absolute;
  bottom: 0;
  padding: 25px;
  z-index: 1;
}

.itinerary-day h3 {
  font-size: 1.5rem;
  color: #f1c40f;
  margin-bottom: 8px;
}

.itinerary-day p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive */
@media(max-width: 768px) {
  .itinerary-day {
    height: 250px;
  }
  .itinerary-day h3 {
    font-size: 1.2rem;
  }
  .itinerary-day p {
    font-size: 0.9rem;
  }
}

/* ==== Tour Plans Section ==== */
.tourplans {
  background: linear-gradient(to bottom, #f8f9fa, #eef9f6);
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.plan-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.plan-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.plan-content {
  padding: 20px;
}

.plan-content h3 {
  color: #1abc9c;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.plan-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.plan-content h4 {
  color: #3498db;
  font-weight: 600;
  margin-bottom: 15px;
}

.book-btn {
  display: inline-block;
  background: linear-gradient(to right, #1abc9c, #16a085);
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.book-btn:hover {
  background: linear-gradient(to right, #16a085, #138d75);
}

/* Responsive */
@media(max-width: 768px) {
  .plan-card img { height: 160px; }
  .plan-content { padding: 15px; }
  .plan-content h3 { font-size: 1.1rem; }
}
/* ==== Best Places to Visit Section ==== */
.places {
  background: linear-gradient(to bottom, #f0f8ff, #ffffff);
  text-align: center;
}

.places h2 {
  color: #1abc9c;
  font-size: 2rem;
  margin-bottom: 10px;
}

.places .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.places-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.place-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.place-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.place-info {
  padding: 20px;
}

.place-info h3 {
  color: #3498db;
  margin-bottom: 10px;
}

.place-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.place-btn {
  display: inline-block;
  background: linear-gradient(to right, #1abc9c, #16a085);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.place-btn:hover {
  background: linear-gradient(to right, #16a085, #138d75);
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .place-card img{ height:160px; }
  .places h2{ font-size:1.6rem; }
}

/* ==== All Sri Lanka Destinations Section ==== */
.allsrilanka {
  background: linear-gradient(to bottom, #ffffff, #e8f7f3);
  text-align: center;
}

.allsrilanka h2 {
  color: #16a085;
  font-size: 2rem;
  margin-bottom: 10px;
}

.allsrilanka .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.destinations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.destination-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.destination-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.destination-info {
  padding: 10px;
}

.destination-info h3 {
  color: #feffff;
  margin-bottom: 50px;
}

.destination-info p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.dest-btn {
  display: inline-block;
  background: linear-gradient(to right, #1abc9c, #16a085);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dest-btn:hover {
  background: linear-gradient(to right, #16a085, #138d75);
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .destination-card img{ height:140px; }
  .allsrilanka h2{ font-size:1.6rem; }
}
/* ==== Adventure & Nature Section ==== */
.adventure {
  background: linear-gradient(to bottom, #eef9f6, #ffffff);
  text-align: center;
}

.adventure h2 {
  color: #16a085;
  font-size: 2rem;
  margin-bottom: 10px;
}

.adventure .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.adventure-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.adventure-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.adventure-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.adventure-info {
  padding: 20px;
}

.adventure-info h3 {
  color: #3498db;
  margin-bottom: 10px;
}

.adventure-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.adventure-btn {
  display: inline-block;
  background: linear-gradient(to right, #1abc9c, #16a085);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.adventure-btn:hover {
  background: linear-gradient(to right, #16a085, #138d75);
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .adventure-card img{ height:160px; }
  .adventure h2{ font-size:1.6rem; }
}
/* ==== Contact Section ==== */
.contact {
  background: linear-gradient(to bottom, #ffffff, #e0f7f4);
  text-align: center;
  padding: 50px 20px;
}

.contact h2 {
  color: #16a085;
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  flex: 1 1 250px;
  max-width: 350px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.info-item i {
  font-size: 1.4rem;
  color: #1abc9c;
  margin-right: 15px;
}

/* WhatsApp Link */
.info-item a {
  color: #1abc9c;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  flex: 1 1 300px;
  max-width: 400px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  resize: none;
}

.contact-form button {
  background: linear-gradient(to right, #1abc9c, #16a085);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(to right, #16a085, #138d75);
  transform: scale(1.05);
}

/* Responsive */
@media(max-width:768px){
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}
/* ==== Footer ==== */
.footer {
  background: #16a085;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 1350px;
  margin: auto;
}
/*
.footer-section {
  flex: 1 1 250px;
}*/

.footer-menus
{
  align-items: flex-start !important;
  display: flex;
  flex-direction: column !important; 
  justify-content: flex-start;
  margin-top: 30px;


}

.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  margin-left: 40px !important;
}

.footer-logo img {
  width: 300px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.6;
  word-wrap: break-word;
  width: 300px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.footer-section p, .footer-section a {
  color: #e0f7f4;
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-section i {
  margin-right: 10px;
  font-size: 1rem;
  color: #fff;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #d1f0eb;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #e0f7f4;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* Responsive */
@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section p, .footer-section a {
    justify-content: center;
  }
}
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #e0f7f4;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 5px;
}

.footer-bottom a.footer-credit {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-bottom a.footer-credit:hover {
  text-decoration: underline;
  color: #c9cc0d;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.2s ease;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
/* ==== Why Choose Us Section ==== */
.why-choose {
  background: linear-gradient(to bottom, #eef9f6, #ffffff);
  text-align: center;
  padding: 60px 20px;
}

.why-choose h2 {
  color: #16a085;
  font-size: 2rem;
  margin-bottom: 10px;
}

.why-choose .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.choose-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.choose-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.choose-card i {
  font-size: 2rem;
  color: #16a085;
  margin-bottom: 15px;
}

.choose-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1abc9c;
}

.choose-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media(max-width:768px){
  .why-choose h2 { font-size: 1.6rem; }
}
.tripadvisor-widget {
  max-width: 100%;
  margin: auto;
}
.tripadvisor-widget iframe {
  width: 100% !important;
}
.booking-options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 50px 10px;
  background: #f9fbfc;
}

.option-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  width: 260px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.option-card i {
  font-size: 50px;
  color: #1abc9c;
  margin-bottom: 15px;
}

.option-card h3 {
  color: #14213d;
  font-size: 20px;
  margin-bottom: 5px;
}

.option-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.book-btn {
  background: linear-gradient(to right, #1abc9c, #16a085);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: linear-gradient(to right, #16a085, #138d75);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-options {
    flex-direction: column;
  }
}
.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-chat.left {
  left: 25px;
  flex-direction: row;
}

.chat-icon {
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.chat-text {
  background: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 30px;
  margin-left: 10px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.whatsapp-chat:hover .chat-text {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-chat:hover .chat-icon {
  background-color: #1ebe5d;
  transform: scale(1.05);
}
