:root {
  --text-color: #232529;
  --btn-primary: #FF6A00;
  --btn-primary-hover: #FF8C00;
  --btn-primary-active: #E86100;
  --link-color: rgba(48, 64, 154, 0.8);
  --link-color-hover: rgba(48, 64, 154, 1);
  --text-pill: rgba(25, 25, 25, 0.7);
  --border-navbar: rgba(255, 255, 255, 0.2);
  --border-footer: rgba(197, 203, 235, 0.2);
  --theme-bg: #67B7D2;
  --background-gradient:
    linear-gradient(180deg, #67B7D2 0%, rgba(103, 183, 210, 0.00) 7.83%),
    linear-gradient(180deg, rgba(255, 174, 83, 0.00) 78.85%, rgba(255, 174, 83, 0.10) 100%),
    radial-gradient(36.95% 42.4% at 50% 50%, rgba(250, 249, 247, 0.70) 0%, rgba(250, 249, 247, 0.00) 100%),
    radial-gradient(78.13% 97.22% at 50% -17.36%, #5DB3CF 22.39%, rgba(145, 201, 220, 0.56) 58.43%, rgba(145, 201, 220, 0.00) 85.73%),
    radial-gradient(72.21% 79.49% at 50% 0%, #8FC6D9 0%, rgba(143, 198, 217, 0.00) 100%),
    linear-gradient(180deg, #22C9FF 0%, #FAF9F7 23.98%);
  --black: #000000;
  --white: #ffffff;
  --off-white: #FBFBFB;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.home {
  background: var(--background-gradient);
}

nav {
  background: #67B7D2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

nav .logo {
  max-width: 140px;
}

.home nav {
  background: transparent;
}

nav .navbar-brand,
nav .nav-link,
footer a,
footer p {
  color: var(--link-color) !important;
}

nav .nav-link:hover,
footer a:hover {
  color: var(--link-color-hover) !important;
}

.content {
  background: var(--off-white);
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
}

.home .content {
  background: transparent;
}

.container.main {
  padding-top: 20px;
}

/* HERO */

.home .item-content h1 {
  color: var(--black);
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 24px;
  text-align: center;
}

.home .item-content h4 {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  text-align: center;
}

.home .item-content p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .home .item-content p br {
    display: none;
  }
}


/* SEARCH BAR */

.searchbar {
  background: var(--background-gradient);
  padding: 14px 0;
}

.searchbar form {
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  gap: 6px;
  padding: 4px;
  max-width: 820px;
  margin: 0 auto;
}

.searchbar form input {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  height: 36px;
  padding: 0 14px;
  font-size: 0.95rem;
}

.searchbar form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.searchbar form button {
  border: none;
  border-radius: 16px;
  height: 36px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--btn-primary);
  color: var(--white) !important;
  white-space: nowrap;
}

.searchbar form button:hover,
.searchbar form button:focus {
  background: var(--btn-primary-hover);
}

.searchbar form button:active {
  background: var(--btn-primary-active) !important;
}

/* CHATBOT CONTAINER */
.ez.dawn {
  position: relative;
  background: rgba(255, 255, 255, .50);
  border-radius: 24px;
  padding: 24px 24px 20px;
  margin: 40px auto 32px;
}

@media (max-width: 992px) {
  .ez.dawn {
    border-radius: 24px;
    padding: 8px 8px 8px;
    margin: 40px auto 32px;
  }
}


/* FOOTER */

footer {
  background: #FFF;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(197, 203, 235, 0.20);
}

.home footer {
  background: transparent;
}

footer .footer-links {
  justify-content: center;
}

footer .footer-links a {
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.85rem;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

footer .footer-copy {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.9;
}


@media (max-width: 992px) {
  .navbar-toggler {
    border: none;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: var(--link-color);
    position: relative;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--link-color);
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }

  .navbar-collapse {
    background: var(--white);
    margin-top: 1rem;
    padding: 1.5rem 1rem;
    border-radius: 8px;
  }

  nav {
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }

  nav .nav-item {
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
  }

  nav .nav-link {
    font-size: 1.05rem;
    display: block;
    width: 100%;
  }

  .home .item-content h4 {
    font-size: 16px;
  }

  .home .item-content p {
    text-align: center;
  }

  .item-sublist a {
    text-decoration: none;
    margin-bottom: 8px;
  }

}

@media (max-width: 576px) {
  .searchbar {
    padding: 6px 12px;
  }

  .searchbar form button {
    height: 34px;
    font-size: 0.85rem;
    padding: 0 12px;
  }

}

/* ===== CONTACT FORM ===== */
#contact-form {
  padding: 32px 16px
}

#contact-form .contactus {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, .05), 0 2px 6px rgba(15, 23, 42, .04);
  padding: 24px 20px;
}

#contact-form h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #0f172a;
  text-align: center
}

#contact-form .layout>p {
  margin: 6px 0;
  color: #475569;
  font-size: 18px
}

#contact-form .contact {
  margin-top: 12px
}

#contact-form .contact p {
  margin: 12px 0
}

#contact-form input[type="email"],
#contact-form input[type="text"],
#contact-form input[name="name"],
#contact-form textarea,
#contact-form button[type="submit"] {
  width: 100%;
  display: block;
  box-sizing: border-box
}

#contact-form input[type="email"],
#contact-form input[type="text"],
#contact-form input[name="name"],
#contact-form textarea {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 16px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

#contact-form input[type="email"],
#contact-form input[type="text"],
#contact-form input[name="name"] {
  height: 52px;
  padding: 0 16px
}

#contact-form textarea {
  min-height: 140px;
  padding: 12px 16px;
  resize: vertical
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #94a3b8
}

#contact-form input:focus,
#contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .15)
}

#contact-form button[type="submit"] {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  color: #fff;
  background: #FF6A00;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 6px 14px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: transform .06s ease, filter .2s ease, box-shadow .2s ease;
  text-align: center;
}

#contact-form button[type="submit"]:hover {
  filter: brightness(1.05)
}

#contact-form button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .2) inset, 0 4px 10px rgba(0, 0, 0, .18)
}

@media (min-width:768px) {
  #contact-form .contactus {
    padding: 32px 28px
  }

  #contact-form h1 {
    font-size: 52px
  }
}