/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #009970;
  text-decoration: none;
}

a:hover {
  color: #00cc95;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009970;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #00c28e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 20px;
}

#header .header-container {
  background: #fff;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 16px 30px 12px 30px;
  background: #fff;
}

#header .logo h1 {
  font-size: 26px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #fff;
  }

  #header.header-scrolled,
  #header .header-container {
    background: #fff;
  }

  #header .logo {
    padding-left: 0;
  }

  #header .logo h1 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #36343a;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #009970;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #009970;
  padding: 10px 25px;
  margin-left: 30px;
  margin-right: 15px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #00b383;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #009970;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #009970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 28, 31, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #36343a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #009970;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #009970;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f6f7;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #009970;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f0f2;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9f8f9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00c28e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #009970;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #009970;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #00664b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #009970;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00805d;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  background: linear-gradient(135deg, #0e1d1a, #1d4034, #0d3228);
  min-height: 100vh;
  padding: 60px 0;
  overflow: hidden;
}

.hero-section .text-brand {
  background: linear-gradient(to right, #00b389, #009970);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .btn-brand {
  background-color: #009970;
  border: none;
  color: white;
}

.hero-section .btn-brand:hover {
  background-color: #007e5f;
  color: white;
}

.hero-section .hero-image {
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  background-color: #f2f2f2; 
}

/*--------------------------------------------------------------
# Content Section
--------------------------------------------------------------*/
/* Buttons */
.btn {
  transition: all 0.3s ease-in-out;
}

.btn-success {
  background-color: #009970;
  border-color: #009970;
}

.btn-success:hover {
  background-color: #007e5f;
  border-color: #007e5f;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

/* Table styles */
.table th, .table td {
  vertical-align: middle;
}

.table th {
  background-color: #009970;
  color: #fff;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* Lists */
ul, ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

ul li, ol li {
  margin-bottom: 6px;
}


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
/* Accordion custom styles */
.accordion-custom .accordion-button {
  background-color: #fff;
  color: #111;
  font-weight: 600;
  padding: 1rem 1.25rem;
  box-shadow: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #009970;
  color: #fff;
}

.accordion-custom .accordion-button:not(.collapsed) .icon {
  transform: rotate(45deg);
  color: #fff;
}

/* Icon styling */
.accordion-button .icon {
  font-size: 1.2rem;
  font-weight: bold;
  color: #009970;
  transition: all 0.3s ease;
  display: inline-block;
}

/*--------------------------------------------------------------
# Destination Section
--------------------------------------------------------------*/
.destination-tile {
  display: block;
  text-align: center;
  padding: 1rem;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #222;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  min-height: 140px;
  font-family: 'Segoe UI', sans-serif;
}

.destination-tile:hover {
  background-color: #fff;
  border-color: #007bff;
  color: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.15);
}

.destination-tile div {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.destination-tile strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.destination-tile small {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 576px) {
  .destination-tile {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}

.destination-section {
  background: linear-gradient(135deg, #eafaf4, #f7f9f9);
}

.destination-section .section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #009970;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*--------------------------------------------------------------
# Contant Section
--------------------------------------------------------------*/
.contact-section h2{
  color: #fff;
}
.contact-section .contact-text {
  color: #fff;
}

.contact-section .section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #009970;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.contact-section form .form-control:focus {
  border-color: #009970;
  box-shadow: 0 0 0 0.2rem rgba(0, 153, 112, 0.25);
}

.contact-section .btn-success {
  background-color: #009970;
  border: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-section .btn-success:hover {
  background-color: #007e5f;
}

/*--------------------------------------------------------------
# Auto-Open form 
--------------------------------------------------------------*/
/* Glass-style card with soft shadow */
.contact-modal {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Green theme label underline */
.modal-title {
  color: #009970;
}

.form-control.custom-input {
  border-radius: 10px;
  border: 2px solid #e3e3e3;
  transition: all 0.3s ease-in-out;
}

.form-control.custom-input:focus {
  border-color: #009970;
  box-shadow: 0 0 0 0.2rem rgba(0, 153, 112, 0.25);
}

/* WhatsApp button */
.btn-whatsapp {
  background-color: #009970;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.btn-whatsapp:hover {
  background-color: #007e5f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 153, 112, 0.3);
}

.custom-close {
  background-color: #009970;
  color: white;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.custom-close:hover {
  background-color: #007e5f;
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Sticky Buttons
--------------------------------------------------------------*/
.sticky-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-btn {
  background-color: #dc3545; /* Red - Bootstrap danger */
}

.whatsapp-btn {
  background-color: #25d366; /* WhatsApp green */
}

.sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  color: #d6d6d6;
}
