/*--------------------------------------------------------------
# Navuli Brand Theme
# Overrides the Sailor template's color tokens with Navuli's brand
# palette: #005B96 (primary blue) and #EE2A7B (accent pink).
--------------------------------------------------------------*/
:root {
  --background-color: #ffffff;
  --default-color: #4a5568;
  --heading-color: #12263a;
  --accent-color: #005B96;
  --accent-color-2: #EE2A7B;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #12263a;
  --nav-hover-color: #EE2A7B;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #12263a;
  --nav-dropdown-hover-color: #EE2A7B;
}

.light-background {
  --background-color: #f5f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0b2540;
  --default-color: #dce6f0;
  --heading-color: #ffffff;
  --surface-color: #123258;
  --contrast-color: #ffffff;
}

/* Brand gradient + accent utilities */
.text-gradient {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-gradient-brand {
  background: linear-gradient(135deg, var(--accent-color) 0%, #003f6b 55%, var(--accent-color-2) 130%);
}

.badge-brand-pink {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color-2), transparent 88%);
  color: var(--accent-color-2);
  border: 1px solid color-mix(in srgb, var(--accent-color-2), transparent 70%);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: .3s;
  border: 2px solid var(--accent-color);
}

.btn-brand:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  border-color: color-mix(in srgb, var(--accent-color), black 12%);
  color: #fff;
}

.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--accent-color);
  transition: .3s;
}

.btn-brand-outline:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-brand-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color-2);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--accent-color-2);
  transition: .3s;
}

.btn-brand-pink:hover {
  background: color-mix(in srgb, var(--accent-color-2), black 12%);
  border-color: color-mix(in srgb, var(--accent-color-2), black 12%);
  color: #fff;
}

.btn-brand-outline-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-color-2);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--accent-color-2);
  transition: .3s;
}

.btn-brand-outline-pink:hover {
  background: var(--accent-color-2);
  color: #fff;
}

/* Header */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--accent-color-2);
  border-radius: 50px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: color-mix(in srgb, var(--accent-color-2), black 10%);
}

.header .logo img {
  max-height: 42px;
}

/* Icon boxes reused across feature/service sections */
.icon-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: .3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 91, 150, .1);
  border-color: transparent;
}

.icon-box .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 26px;
  margin-bottom: 20px;
}

.icon-box:nth-child(3n+2) .icon {
  background: color-mix(in srgb, var(--accent-color-2), transparent 90%);
  color: var(--accent-color-2);
}

.icon-box h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/* Modules-by-plan grid (pricing page) */
.module-grid-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.module-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--accent-color-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color-2);
  font-size: 20px;
}

.module-label {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 140px 0 90px;
  overflow: hidden;
  color: #fff;
}

.hero-section .hero-eyebrow {
  color: #ffd9ec;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 14px;
  text-transform: uppercase;
}

.hero-section h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-section h1 span {
  color: #ffe0ee;
}

.hero-section p.lead {
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stats .stat h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 2px;
}

.hero-stats .stat span {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.hero-visual {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(6px);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 110px 0 60px;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 34px;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .stat {
    flex: 1 1 auto;
    min-width: 100px;
  }
  .hero-visual {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 28px;
  }
  .hero-section p.lead {
    font-size: 16px;
  }
  .hero-stats {
    gap: 22px;
  }
  .hero-stats .stat h3 {
    font-size: 24px;
  }
}

/* Section eyebrow badge above section titles */
.section-title .badge-brand-pink {
  margin-bottom: 14px;
}

/* Our markup uses the badge as the eyebrow, so the heading/description
   roles are reversed from the template's default h2 (eyebrow) / p (title) */
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  color: var(--heading-color);
  padding-bottom: 0;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--accent-color-2);
  margin: 18px auto 0;
}

.section-title p {
  font-size: 17px;
  font-weight: 400;
  text-transform: none;
  color: var(--default-color);
  max-width: 640px;
  margin: 16px auto 0;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 26px;
  }
}

/* Pricing */
.pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 32px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: .3s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 91, 150, .12);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color-2);
  box-shadow: 0 25px 50px rgba(238, 42, 123, .14);
}

.pricing-card .plan-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--accent-color-2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.pricing-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent-color);
}

.pricing-card .price {
  font-size: 34px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 10px 0 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.pricing-card .price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.pricing-card .price-note {
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.pricing-card p.desc {
  font-size: 14.5px;
  color: var(--default-color);
  min-height: 90px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.pricing-card ul li:first-child {
  border-top: none;
}

.pricing-card ul li i {
  color: var(--accent-color);
  margin-top: 3px;
}

/* Sign In / Get Started links inside the mobile nav dropdown (hamburger menu) */
#navmenu .navmenu-signin {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  margin-top: 10px;
  padding-top: 20px;
}

#navmenu .navmenu-getstarted {
  color: #fff;
  background: var(--accent-color-2);
  border-radius: 8px;
  margin: 6px 20px 0;
  padding: 12px 20px;
  justify-content: center;
}

#navmenu .navmenu-getstarted:hover {
  color: #fff;
  background: color-mix(in srgb, var(--accent-color-2), black 12%);
}

/* Floating WhatsApp / Contact quick-action buttons, stacked above Scroll-to-top */
.floating-action-btn {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.floating-action-btn i {
  font-size: 22px;
  color: var(--contrast-color);
  line-height: 0;
}

.floating-action-btn.active {
  visibility: visible;
  opacity: 1;
}

.floating-message-btn {
  bottom: 65px;
  background-color: var(--accent-color);
}

.floating-message-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.floating-call-btn {
  bottom: 115px;
  background-color: #25d366;
}

.floating-call-btn:hover {
  background-color: color-mix(in srgb, #25d366, transparent 20%);
}

/* Web App / Both Web & Mobile App pricing package switch */
.package-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-color);
  border-radius: 50px;
  padding: 14px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.package-toggle-label {
  font-weight: 700;
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: .25s;
}

.package-toggle-label.active {
  color: var(--heading-color);
  border-bottom-color: var(--accent-color-2);
}

.package-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.package-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.package-switch-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50px;
  transition: .25s;
}

.package-switch-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: var(--heading-color);
  border-radius: 50%;
  transition: .25s;
}

.package-switch input:checked + .package-switch-slider::before {
  transform: translateX(20px);
}

/* Timeline used on About page */
.brand-timeline {
  border-left: 3px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  padding-left: 30px;
  margin-left: 10px;
}

.brand-timeline .timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.brand-timeline .timeline-item:before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-color-2);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color-2), transparent 60%);
}

/* Value cards */
.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 28px;
}

/* FAQ accordion tweaks */
.accordion-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 10px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--heading-color);
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Resource cards */
.resource-card {
  display: block;
  background: var(--surface-color);
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: .3s;
}

.resource-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

/* Contact page */
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 20px;
}

/* CTA band */
.cta-band {
  border-radius: 24px;
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cta-band {
    padding: 40px 24px;
    text-align: center;
  }
}

.cta-band .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, .6);
  transition: .3s;
}

.cta-band .btn-outline-white:hover {
  background: #fff;
  color: var(--accent-color);
  border-color: #fff;
}

/* Footer logo sizing */
.footer .footer-about .logo img {
  max-height: 46px;
}

/* footer-top only had padding-top, so the tallest column (usually
   footer-about, ending in the social icons) sat flush against the
   copyright bar's border-top divider */
.footer .footer-top {
  padding-bottom: 40px;
}

.footer .social-links {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .footer .footer-top .row > div {
    text-align: center;
  }
  .footer .footer-about .logo {
    justify-content: center;
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer .footer-links ul {
    margin-bottom: 0;
  }
}

/* Brand-wide hyperlink hover/active color. Kept at element-level specificity
   so the more specific .btn-brand / .btn-brand-pink / .btn-brand-outline /
   .header .btn-getstarted button-style hover rules above still win and keep
   their white-on-color hover treatment. */
a:hover,
a:active {
  color: var(--accent-color-2);
}

.footer .social-links a:hover {
  color: var(--accent-color-2);
  border-color: var(--accent-color-2);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color-2);
}

/* Footer "Developed by" credit link: resting color matches the other
   footer-links list links, hover turns brand pink, and the clicked/active
   state keeps the blue it had before this link got a hover effect. */
.footer .credits a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.footer .credits a:hover {
  color: var(--accent-color-2);
}

.footer .credits a:active {
  color: var(--accent-color);
}

/* Subscribe (account registration) page — brought in line with the
   marketing site's Bootstrap/theme.css look instead of the old
   Metronic admin theme it used to borrow. */
.subscribe-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--accent-color);
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.subscribe-card {
  border-top: 3px solid var(--accent-color) !important;
}

.radio-card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  cursor: pointer;
  transition: .2s;
  background: var(--surface-color);
}

.radio-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.radio-card .radio-card-icon {
  font-size: 26px;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.radio-card-input:checked + .radio-card .radio-card-icon {
  color: var(--accent-color-2);
}

.radio-card .radio-card-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--heading-color);
}

.radio-card .radio-card-desc {
  font-size: 13.5px;
  color: var(--default-color);
}

.radio-card-input:checked + .radio-card {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  box-shadow: 0 0 0 1px var(--accent-color);
}

.radio-card-input:disabled + .radio-card {
  opacity: .5;
  cursor: not-allowed;
}

.radio-card-input:disabled + .radio-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.group-invalid .radio-card {
  border-color: #dc3545;
}

.group-invalid .radio-card-input:checked + .radio-card {
  border-color: #dc3545;
  background: color-mix(in srgb, #dc3545, transparent 94%);
  box-shadow: 0 0 0 1px #dc3545;
}

.form-label.required::after,
label.required::after {
  content: "*";
  color: var(--accent-color-2);
  margin-left: 4px;
  font-weight: 700;
}

.required-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.required-note .required-note-star {
  color: var(--accent-color-2);
  font-weight: 700;
}

.validation-summary-alert {
  border: none;
  border-left: 4px solid var(--accent-color-2);
  background: color-mix(in srgb, var(--accent-color-2), transparent 92%);
  border-radius: 8px;
  padding: 18px 22px;
}

.validation-summary-alert .validation-summary-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.validation-summary-alert p {
  margin-bottom: 0;
  color: var(--default-color);
}

.billing-cycle-tabs {
  list-style: none;
  padding: 5px;
  margin: 0;
  display: inline-flex;
  gap: 5px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px;
}

.billing-cycle-tabs .nav-item {
  display: flex;
}

.billing-cycle-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--default-color);
  border-radius: 8px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 14px;
  transition: .2s;
}

.billing-cycle-tabs .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.billing-cycle-tabs .nav-link.active {
  background: var(--accent-color-2);
  color: #fff;
  box-shadow: 0 3px 8px color-mix(in srgb, var(--accent-color-2), transparent 65%);
}

.billing-cycle-tabs .badge-save {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  background: var(--accent-color-2);
  color: #fff;
}

.billing-cycle-tabs .nav-link.active .badge-save {
  background: #fff;
  color: var(--accent-color-2);
}
