:root {
    --evershine-primary: #0073db;
    --evershine-secondary: #264653;
    --evershine-accent: #E9C46A;
    --evershine-text-dark: #333333;
    --evershine-text-light: #666666;
    --evershine-background: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    list-style-type: none;
    text-decoration: none;
}

body {
    background-color: var(--evershine-background);
    color: var(--evershine-text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body, h1, h2, p {
    margin: 0;
    padding: 0;
}
  
h1 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color3);
    font-weight: 600;
    line-height: 1;
}

html, body {width: auto!important; overflow-x: hidden!important} 

.evershine-nav {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.evershine-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--evershine-primary);
    text-decoration: none;
}

.evershine-nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.evershine-nav-links a {
    text-decoration: none;
    color: var(--evershine-text-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Improved dropdown styles */
.evershine-dropdown {
  position: relative;
  display: inline-block;
}

.evershine-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.evershine-dropdown-trigger:hover {
  background-color: rgba(0, 115, 219, 0.1);
}

.evershine-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.evershine-dropdown.active .evershine-arrow {
  transform: rotate(180deg);
}

.evershine-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 1rem); /* Adjust to remove gap */
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  min-width: 300px;
  padding: 1rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 12px;
  overflow: hidden;
  z-index: 1000;
}

/* Add padding to create hoverable area */
.evershine-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1rem;
  background: transparent;
}

.evershine-dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background-color: white;
  box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.evershine-dropdown-content a {
  color: var(--evershine-text-dark);
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.evershine-dropdown-content a:hover {
  background-color: rgba(0, 115, 219, 0.1);
  color: var(--evershine-primary);
  padding-left: 2rem;
}

.evershine-dropdown:hover .evershine-dropdown-content {
  display: block;
}

.evershine-book-now {
    background-color: var(--evershine-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.evershine-book-now:hover {
    background-color: #005cb2;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--evershine-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Media Queries */
@media (max-width: 1024px) {
    .evershine-nav {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .evershine-nav {
        padding: 1rem 1.5rem;
    }

    .evershine-logo a {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 100;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .evershine-nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 99;
    }

    .evershine-nav-links.active {
        display: flex;
    }

    .evershine-dropdown {
        width: 100%;
        text-align: center;
    }

    .evershine-dropdown-trigger {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .evershine-dropdown-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        min-width: 100%;
        max-height: 0;
        padding: 0;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        transition: max-height 0.3s ease;
        display: block;
        overflow: hidden;
    }

    .evershine-dropdown.active .evershine-dropdown-content {
        max-height: 400px;
        padding: 1rem 0;
    }

    .evershine-dropdown-content::before {
        display: none;
    }

    .evershine-dropdown-content a {
        padding: 1rem;
        text-align: center;
    }

    .evershine-dropdown-content a:hover {
        padding-left: 1rem;
    }
}

@import url(https://necolas.github.io/normalize.css/8.0.1/normalize.css);

html {
  scroll-behavior: smooth;
}

  /* Footer Styles */
.site-footer {
  margin-top: 5rem;
}

/* FAQ Section */
.faq-section {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  color: #333333;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0 1.25rem 0.3rem;
}

.faq-container {
  margin: 2rem auto;
  max-width: 800px;
}

.faq-item {
  padding: 1rem 1.5rem;
  position: relative;
  border-bottom: 2px solid #242629;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #005bb5, #0073db);
  transition: width 0.7s ease;
}

.faq-item:hover::after,
.faq-item.active::after {
  width: 100%;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333333;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  color: #666666;
  padding: 0;
  transition: all 0.4s ease;
  opacity: 0;
  text-align: left;
}

.faq-answer.active {
  max-height: 500px;
  padding: 1rem 0 0;
  opacity: 1;
}

.arrow-icon {
  font-size: 1.2rem;
  color: #0073db;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
  transform: rotate(90deg);
}

.inline-link {
  color: #0073db;
  text-decoration: underline;
}

/* Footer Content */
.footer-content {
  display: flex;
  justify-content: space-evenly;
  margin-top: 8rem;
  padding: 0 2rem;
}

.footer-section {
  flex: 1;
  max-width: 300px;
}

.footer-title {
  color: #333333;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #0073db;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav a {
  color: #666666;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #0073db;
}

.footer-cta {
  display: block;
  width: 200px;
  text-align: center;
  background-color: #0073db;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  transition: all 0.5s ease;
}

.footer-cta:hover {
  letter-spacing: 1px;
  background-color: #005bb5;
  box-shadow: 0 7px 29px rgba(0, 115, 219, 0.5);
}

.footer-contact {
  margin-top: 1rem;
}

.contact-link {
  display: block;
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.contact-link i {
  color: #0073db;
  margin-right: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-link {
  color: #0073db;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #005bb5;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #333333;
  padding: 2.5rem 1rem 1.5rem;
  text-align: center;
}

.scroll-top {
  position: relative;
  height: 0;
}

.scroll-top-button {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0073db;
  color: #fff;
  padding: 1rem 1rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.scroll-top-button:hover {
  background-color: #005bb5;
}

.copyright {
  color: #666666;
  font-size: 1.2rem;
}

.copyright a {
  color: #5d18dc;
  font-weight: 700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      gap: 3rem;
      align-items: flex-start;
  }

  .footer-section {
      width: 100%;
      max-width: none;
  }

  .faq-container {
      padding: 0 1rem;
  }

  .faq-question {
      font-size: 1rem;
  }

  .faq-answer {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 2rem;
  }

  .footer-cta {
      width: 100%;
      text-align: center;
  }

  .social-links {
      justify-content: center;
  }
}