* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvatica-reg, sans-serif;
}
@font-face {
  font-family: Helvatica-reg; /* set name */
  src: url(../fonts/Helvetica.ttf); /* url of the font */
}
body {
  overflow-x: hidden;
}

:root {
  --primary: #2d9be4;
  --text-main: #23254c;
  --text-light: #77788f;
  --bg-light: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
}

.navbar .logo {
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links .nav-link-item {
  text-decoration: none;
  font-weight: 400;
  position: relative;
  color:var(--text-light);
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--bg-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
}

/* Arrow (cone shape) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.dropdown-menu a {
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.dropdown-menu a:hover {
  background: #e2f8fd;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-btn {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 6px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}

/* Mobile */
.hamburger {
  display: none;
  font-size: 22px;
  color: black;
  cursor: pointer;
}
/* ----------------------------------------------
MAIN CONTENT
---------------------------------------------- */

.main-content {
    padding-top: 100px;
}

.container {
    max-width: 992px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Make all h1 tags in page headers look the same */
.page-title {
  color: var(--text-main);
  font-size: 2.8rem;
}
.page-subtitle {
  font-size: 1.3rem;
  color: var(--text-main);
  font-weight: 400;
  margin-bottom: .6rem;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.help-centre-header {
    text-align: center;
    margin-bottom: 60px;
}


.page-description {
    font-size: 16px;
    color: #666;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-section {
    margin-bottom: 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    padding: 20px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0px 30px 113px 0px rgba(37, 41, 66, 8%);
}

.plan-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.price {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #333;
}

.price-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.price-large {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.btn-plan {
    background: #36D1DC;
    color: white;
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
    display: inline-block;
}

.plan-features {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 992px;
    margin: 0 auto;
}

.faq-item {
    border-left: 4px solid #36D1DC;
    padding-left: 20px;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 60px;
}

.contact-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.contact-link {
    color: #36D1DC;
    text-decoration: none;
    font-weight: 500;
}
/* ----------------------------------------------
FOOTER
---------------------------------------------- */

.footer {
  background-color: #0b0b19; /* Dark background */
  color: #ffffff;
  padding: 60px 40px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 140px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.copyright {
  color: #cccccc;
  font-size: 13px;
  margin-top: auto;
}

.footer-right {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-section h4 {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

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

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section p a {
  color: #cccccc;
  text-transform: none;
  font-size: 14px;
}

/* Social icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #ffffffff;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 992px) {
  .navbar {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    position: absolute;
    top: 70px;
    right: 5%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    width: 90%; /* full responsive width */
  }

  .nav-links .nav-link-item,
  .nav-links .nav-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }

  .nav-links .nav-btn {
    margin-top: 6px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    border: none;
  }

  .nav-links .nav-link-item:last-child,
  .nav-links .nav-btn:last-child {
    border-bottom: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* --- Submenu always visible under More --- */
  .dropdown {
    width: 100%;
  }
  .dropdown .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown .dropdown-menu a {
    padding: 12px 30px; /* indent to show submenu visually */
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }

  .dropdown-toggle::after {
    display: none; /* remove arrow on mobile */
  }

  .dropdown-menu::before {
    display: none;
  }

  /*Main Content*/
     .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-title {
        font-size: 36px;
    }

  /*Footer*/
  .footer-left {
    min-height: 0px;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer-right {
    justify-content: left;
    gap: 40px;
    flex-direction: column;
    width: 100%;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
}
