/*============================================================================
  #Override Stylesheet
  #Add Custom Styles Here 19march
==============================================================================*/

/* Color Variables - aligned with TEMPLATE/css/checkout.css */
:root {
  /* PRIMARY BRAND COLORS */
  --blue-dark: #0f2f5f;
  --blue-main: #1d6fd1;
  --blue: #2b82d9;

  /* GRADIENT COLORS (logo colors) */
  --blue-gradient-start: #1b4fa3;
  --blue-gradient-middle: #1e79c9;
  --blue-gradient-end: #35c2d4;

  /* CYAN / TURQUOISE */
  --cyan: #27b7d3;
  --turquoise: #42c6c3;

  /* LIGHT UI COLORS */
  --blue-light: #6fb6e6;
  --blue-soft: #a6d7f2;
  --blue-pale: #e6f3fb;

  /* BACKGROUNDS */
  --bg-light: #c8eaff;
  --bg-white: #ffffff;

  /* TEXT COLORS */
  --text-dark: #0f2f5f;
  --text-light: #124d8b;

  /* Legacy gold variables, remapped into teal/blue palette */
  --turquoise: #42c6c3;
  --turquoise-dark: #1d6fd1;
}

/* Page Background Gradient - aligned with checkout template */
body {
  background: linear-gradient(90deg, var(--blue-soft), var(--bg-white), var(--blue-pale)) !important;
  color: var(--text-dark);
}

.page-bg {
  background: linear-gradient(-90deg, var(--blue-soft), var(--bg-white), var(--blue-pale)) !important;
  background-attachment: fixed;
  color: var(--text-dark);
}

.reverse-bg {
  background: linear-gradient(-90deg, var(--blue-soft), var(--bg-white), var(--blue-pale)) !important;
  background-attachment: fixed;
  color: var(--text-dark);
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-light);
  font-weight: 700;
}

p {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.7;
}

.text-light {
  color: var(--text-light) !important;
}

.text---text-dark {
  color: var(--text-dark) !important;
}

/* Accent Highlight Text (was gold, now teal/blue gradient) */
.highlight-gold,
.text-gold {
  background: linear-gradient(180deg, #0186af 0%, var(--turquoise) 56%, var(--blue-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}


/* Buttons - primary CTA (aligned with checkout .btn-main) */
.btn,
.btn-primary,
.btn-gold {
  border-radius: 999px;
  border: none;
  padding: 0.9rem 1.9rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--bg-white);
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

.btn:hover,
.btn-primary:hover,
.btn-gold:hover {
  transform: translateY(-1px) scale(1.02);
  background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
}

/* Form Button Style (matches checkout CTAs) */
.form-btn,
.btn--solid {
  border-radius: 999px;
  border: none;
  padding: 0.9rem 1.9rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--bg-white) !important;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  cursor: pointer;
  margin-top: 0.5rem;
  z-index: 1;
}

.form-btn:hover,
.btn--solid:hover {
  background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
}

.form-btn,
.form-btn *,
.btn--solid,
.btn--solid * {
  position: relative;
  z-index: 2;
  color: var(--bg-white) !important;
}

/* Outline Button Style */
.btn-outline-light-rounded {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 1.7rem;
  font-weight: 500;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-light-rounded:hover {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-light);
  transform: translateY(-1px) scale(1.02);
  cursor: pointer;
}

/* Cards and Panels */
.panel,
.card,
.offer-card,
.value-card {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.panel:hover,
.card:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(66, 198, 195, 0.3);
}

.panel__body {
  color: var(--text-light);
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select,
.form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  color: var(--text-light) !important;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus,
.form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(66, 198, 195, 0.6) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 198, 195, 0.2);
  color: var(--text-light) !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(200, 215, 255, 0.5) !important;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container,
.container--main {
  color: var(--text-light);
}

.container--main {
  background: transparent;
}

.content-wrap {
  background: transparent;
}

.section-wrap {
  background: transparent;
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.section--search {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search__input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px;
  padding: 0.85rem 1.2rem 0.85rem 3rem;
  color: var(--text-light) !important;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.search__input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(66, 198, 195, 0.6) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 198, 195, 0.2);
}

.search__input::placeholder {
  color: rgba(200, 215, 255, 0.5) !important;
}

.search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

.search__icon--close {
  right: 1rem;
  left: auto;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.3s ease;
}

.search__icon--close:hover {
  color: var(--turquoise);
}

.input-group.search {
  position: relative;
}

.input-group-addon.search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  z-index: 3;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs,
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.breadcrumb-item,
.breadcrumbs a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover,
.breadcrumbs a:hover {
  color: var(--turquoise);
}

.breadcrumb-item.active {
  color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: var(--text-dark);
  padding: 0 0.5rem;
}

/* ============================================
   SIDEBAR
   ============================================ */
.section__sidebar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   USER DROPDOWN
   ============================================ */
.user-dropdown,
.dropdown-menu {
  background: var(--bg-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.user-dropdown a,
.dropdown-menu a {
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.user-dropdown a:hover,
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--turquoise);
}

/* Links */
a {
  transition: color 0.3s ease;
}

a:hover {
  color: var(--turquoise);
}

/* ============================================
   HEADER STYLES
   ============================================ */
.header,
.site-header {
  z-index: 100;
  padding: 0;
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, var(--blue-soft), var(--bg-white), var(--blue-pale));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
  .header,
  .site-header {
    padding: 0.7rem 0;
  }
}

@media (max-width: 575.98px) {
  .header,
  .site-header {
    padding: 0.6rem 0;
  }
}

.header__content--desktop {
  padding: 12px 0;
}

.header__content--desktop .link-list .link-list__link {
  color: var(--text-light);
}
.header__content--desktop .link-list .link-list__link:hover {
  color: var(--turquoise);
}

/* Header Container */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo Styles */
.logo,
.logo--text,
.logo--image {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.logo img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

.logo--text h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo--text a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo--text a:hover {
  color: var(--turquoise);
}

@media (max-width: 991.98px) {
  .logo img {
    max-width: 150px;
  }
}

@media (max-width: 767.98px) {
  .logo img {
    max-width: 130px;
  }
}

@media (max-width: 575.98px) {
  .logo img {
    max-width: 120px;
  }
}

/* Header Menu */
.header-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.header-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
}

.header-menu a:hover {
  color: var(--turquoise);
  transform: translateY(-1px);
}

.header-menu a.search__toggle {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.header-menu a.search__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu */
.header-ham {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.header-ham span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header-ham:hover span {
  background: var(--turquoise);
}

@media (max-width: 767.98px) {
  .header-ham {
    display: flex;
  }

  .header-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
  }

  .header-menu.active {
    display: flex;
  }
}

/* Header CTA Buttons */
.header-menu .btn,
.header-menu .btn-gold {
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .header-menu .btn,
  .header-menu .btn-gold {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .header-menu .btn,
  .header-menu .btn-gold {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }
}

/* Header Alignment Variants */
.header--left {
  text-align: left;
}

.header--center {
  text-align: center;
}

.header--center .container {
  flex-direction: column;
  gap: 1rem;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer,
.site-footer {
  background: var(--blue-dark);
  position: relative;
  color: var(--text-dark);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(270deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
}

/* Footer Container */
.footer .container {
  text-align: center;
}

/* Footer Text Container */
.footer__text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Footer Logo */
.footer__logo {
  max-width: 180px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer__logo:hover {
  opacity: 1;
}

/* Footer Copyright */
.footer__copyright {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0;
}

/* Footer Menu */
.footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.footer__menu-item {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer__menu-item:hover {
  color: var(--turquoise);
}

.footer__menu-item:not(:last-child)::after {
  content: "|";
  margin-left: 1rem;
  color: var(--text-dark);
  opacity: 0.5;
}

/* Footer Powered By */
.footer__powered-by {
  font-size: 0.85rem;
  color: var(--text-dark);
  opacity: 0.7;
  margin-top: 1rem;
}

.footer__powered-by a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__powered-by a:hover {
  color: var(--turquoise);
}

/* Footer Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
  background: rgba(66, 198, 195, 0.2);
  color: var(--turquoise);
  border-color: var(--turquoise);
  transform: translateY(-2px);
}

.social-icons--square a {
  border-radius: 8px;
}

.social-icons--none a {
  background: transparent;
  border: none;
}

.social-icons--left {
  justify-content: flex-start;
}

.social-icons--center {
  justify-content: center;
}

.social-icons--right {
  justify-content: flex-end;
}

/* Footer Alignment Variants */
.footer--left {
  text-align: left;
}

.footer--center {
  text-align: center;
}

.footer--center .footer__text-container {
  align-items: center;
}

.footer--center .footer__menu {
  justify-content: center;
}

/* Footer Color Variants */
.footer--light {
  color: var(--text-light);
}

.footer--dark {
  color: var(--text-dark);
}

@media (max-width: 767.98px) {
  .footer {
    padding: 2rem 0;
  }

  .footer__menu {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__menu-item:not(:last-child)::after {
    display: none;
  }

  .footer__logo {
    max-width: 150px;
  }
}

@media (max-width: 575.98px) {
  .footer {
    padding: 1.5rem 0;
  }

  .footer__copyright {
    font-size: 0.8rem;
  }

  .footer__menu-item {
    font-size: 0.85rem;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }
}

/* Feature Band Style */
.feature-band {
  padding: 1rem 0;
  background: var(--blue-dark);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.58);
}

/* Section Titles */
.section-title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
  margin: 1rem auto 0;
}

/* Section Title with Left Accent */
.section-title.start {
  text-align: left;
}

.section-title.start::after {
  margin-left: 0;
}

.section-subtitle {
  color: var(--blue-dark) !important;
  max-width: 720px;
  margin: 0 auto;
  margin-top: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Kicker/Badge Style */
.kicker {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1.8rem;
  border: none !important;
  border-radius: 28px;
}

/* List Items */
ul li,
ol li {
  color: var(--text-light);
}

/* Text Muted */
.text---text-dark {
  color: var(--text-dark) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
    margin-bottom: 1.5rem;
  }

  .btn,
  .btn-primary,
  .btn-gold {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.4rem;
  }

  p {
    font-size: 16px;
  }
}

/* ============================================
   INDEX HERO SECTION (Homepage Hero)
   ============================================ */
.index-hero.hero {
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.index-hero.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.index-hero .hero-text {
  max-width: 620px;
}

.index-hero .hero-headline {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark) !important;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.index-hero .hero-lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.index-hero .hero-note {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

  .index-hero .kicker {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bg-white);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  width: fit-content;
  background: radial-gradient(circle at 0 0, var(--blue-gradient-start) 0%, var(--turquoise) 35%, var(--turquoise) 68%, var(--blue-main) 100%);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: kicker-pulse 2s ease-in-out infinite;
}

@keyframes kicker-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.index-hero .kicker strong {
  color: var(--blue-dark) !important;
  font-weight: 700;
}

.index-hero .d-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Bootstrap gap utility fallback */
.gap-3 {
  gap: 1rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.index-hero .btn-outline-light-rounded {
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue-dark);
  color: var(--blue-dark) !important;
  cursor: pointer;
}

.index-hero .btn-outline-light-rounded:hover {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
  color: var(--bg-white) !important;

}

@media (max-width: 1199.98px) {
  .index-hero .hero-headline {
    font-size: clamp(1.9rem, 3.7vw, 2.7rem);
  }
}

@media (max-width: 991.98px) {
  .index-hero.hero {
    text-align: left;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .index-hero .hero-headline {
    font-size: clamp(1.7rem, 3.7vw, 2.4rem);
  }

  .index-hero .hero-lead {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .index-hero.hero {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .index-hero .hero-headline {
    font-size: clamp(1.5rem, 4.7vw, 2.1rem);
    margin-bottom: 0.8rem;
  }

  .index-hero .hero-lead {
    font-size: 1.2rem;
  }

  .index-hero .hero-note {
    font-size: 0.9rem;
  }

  .index-hero .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .index-hero .btn-gold,
  .index-hero .btn-outline-light-rounded {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .index-hero.hero {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .index-hero .hero-headline {
    font-size: clamp(1.3rem, 5.7vw, 1.8rem);
    line-height: 1.2;
  }

  .index-hero .hero-lead {
    font-size: 1.1rem;
  }

  .index-hero .hero-note {
    font-size: 0.85rem;
  }

  .index-hero .kicker {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   PROOF SECTION
   ============================================ */
.proof {
  position: relative;
  z-index: 2;
}

.proof .section-subtitle {
  color: #fff;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.1rem;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--blue-dark);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(0deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%);
  transform: scaleY(0);
  transition: transform 0.4s;
}

.proof-item:hover::before {
  transform: scaleY(1);
}

.proof-item > span:first-child {
  flex-shrink: 0;
}

.proof-item > span:last-child {
  flex: 1;
}

.proof-main-text {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1.4;
  color: var(--blue-dark) !important;
}

.proof-sub-text {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.5;
  color: var(--blue-dark) !important;
}

.proof-item:hover {
  background: var(--bg-white);
  border-color: rgba(66, 198, 195, 0.4);
  transform: scale(1.02);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

.proof-bullet {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--turquoise);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--turquoise);
  background: rgba(66, 198, 195, 0.1);
  flex-shrink: 0;
  margin-top: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

.proof-item:hover .proof-bullet {
  transform: rotate(360deg) scale(1.15);
  background: rgba(66, 198, 195, 0.2);
  box-shadow: 0 0 15px rgba(66, 198, 195, 0.5);
}

/* Scroll Animation */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
}

/* Responsive Proof Section */
@media (max-width: 991.98px) {
  .proof-list {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .proof-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .proof-item {
    padding: 0.9rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .proof-main-text {
    font-size: 1.1rem;
  }

  .proof-sub-text {
    font-size: 0.9rem;
    display: none;
  }
}

@media (max-width: 575.98px) {
  .proof-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .proof-item {
    padding: 0.8rem;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
  }

  .proof-bullet {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .proof-main-text {
    font-size: 1rem;
  }
}

/* ============================================
   FEATURE CARD (General Reusable Card)
   ============================================ */
.feature-card {
  background: var(--bg-light) !important;
  border-radius: 18px;
  padding: 1.8rem 1.2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
}


.feature-card:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: #fff !important;
  border: 1px solid var(--blue-dark) !important;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.feature-card h5 {
  text-align: center;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
}

.feature-card p {
  text-align: center;
  margin-bottom: 0.9rem;
  color: var(--blue-dark) !important;
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-dark);
  background-color: #fff;
  border: 1px solid var(--blue-dark);
  filter: none;
  transition: all 0.3s ease;
}

/* Responsive Feature Cards */
@media (max-width: 991.98px) {
  .feature-card {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .feature-card {
    padding: 1.4rem 1rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-card h5 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .feature-card {
    padding: 1.2rem 0.9rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.8rem;
  }

  .feature-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
  }
}

/* Utility Classes for Bootstrap Grid */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.g-4 {
  gap: 1.5rem;
}

.h-100 {
  height: 100%;
}

.mb-0 {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

/* ============================================
   ALREADY MEMBER SECTION
   ============================================ */
.already-member {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

.already-member:hover {
  background: var(--bg-light);
  border-color: rgba(66, 198, 195, 0.3);
}

.already-member p {
  margin-bottom: 1rem !important;
  font-size: 0.95rem !important;
  font-weight: 400;
  color: var(--text-dark) !important;
}

.already-member .btn-outline-light-rounded {
  padding: 0.85rem 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: var(--bg-white);
  color: var(--blue-dark) !important;
  border: 1px solid var(--bg-white) !important;
  display: inline-block;
}

.already-member .btn-outline-light-rounded:hover {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue-main) 50%, var(--cyan) 100%) !important;
  border: 1px solid var(--bg-white) !important;
  color: var(--bg-white) !important;
  transform: scale(1.02);
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .already-member {
    padding: 1.8rem 2rem;
    max-width: 450px;
  }
}

@media (max-width: 767.98px) {
  .already-member {
    padding: 1.5rem 1.8rem;
    max-width: 100%;
  }

  .already-member p {
    font-size: 0.9rem !important;
    margin-bottom: 0.9rem !important;
  }

  .already-member .btn-outline-light-rounded {
    width: 100%;
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 575.98px) {
  .already-member {
    padding: 1.5rem 1.5rem;
  }

  .already-member p {
    font-size: 0.85rem !important;
    margin-bottom: 0.75rem !important;
  }

  .already-member .btn-outline-light-rounded {
    padding: 0.75rem 1.2rem !important;
    font-size: 0.85rem !important;
  }
}

/* ============================================
   GUARANTEE BOX SECTION
   ============================================ */
.guarantee-box {
  padding: 2rem 2.5rem;
  border-radius: 18px;
  border: 2px dashed rgba(66, 198, 195, 0.9);
  background: var(--bg-light) !important;
  font-size: 1.2rem;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  animation: guarantee-pulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  text-align: left;
}

.guarantee-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(66, 198, 195, 0.25) 0%, transparent 45%);
  animation: rotate-glow 12s linear infinite;
}

@keyframes guarantee-pulse {
  0%,
  100% {
    border-color: rgba(66, 198, 195, 0.9);
  }
  50% {
    border-color: rgba(66, 198, 195, 1);
  }
}

@keyframes rotate-glow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.guarantee-image {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.guarantee-box img {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}

.guarantee-content {
  flex: 1;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--turquoise);
  line-height: 1.3;
}

.guarantee-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text-light);
  word-wrap: break-word;
}

.guarantee-box > * {
  position: relative;
  z-index: 2;
}

/* Responsive Guarantee Box */
@media (max-width: 991.98px) {
  .guarantee-box {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 1.8rem 2rem;
  }

  .guarantee-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .guarantee-box img {
    width: 180px;
    margin: 0 auto;
  }

  .guarantee-content {
    width: 100%;
  }

  .guarantee-title {
    font-size: 1.4rem;
  }

  .guarantee-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}

@media (max-width: 767.98px) {
  .guarantee-box {
    padding: 1.5rem 1.2rem;
    gap: 1.2rem;
  }

  .guarantee-box img {
    width: 160px;
  }

  .guarantee-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .guarantee-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .guarantee-box {
    padding: 1.2rem 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .guarantee-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .guarantee-box img {
    width: 140px;
  }

  .guarantee-content {
    width: 100%;
  }

  .guarantee-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .guarantee-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
  }
}

/* ============================================
   PRODUCT CARD SECTION
   ============================================ */
.product {
  background: var(--bg-light) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100% !important;
  position: relative;
}

.product:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 198, 195, 0.3);
}

.product__image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
}

.product__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.product__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.product__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product__title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: var(--text-light) !important;
  transition: color 0.3s ease;
}

.product__title a {
  color: var(--text-light) !important;
  text-decoration: none;
  background: linear-gradient(180deg, #0186af 0%, var(--turquoise) 56%, var(--blue-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.product__title a:hover {
  background: linear-gradient(180deg, #0186af 0%, var(--turquoise) 56%, var(--blue-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress {
  margin: 0.5rem 0;
}

.progress__outer {
  width: 100%;
  height: 6px;
  background: linear-gradient(180deg, #0186af 0%, var(--turquoise) 56%, var(--blue-main) 100%);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}


.product__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.product__button {
  margin-top: auto;
  padding-top: 0.5rem;
}

.product__button .btn--solid {
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.product__button .btn--solid:hover {
  color: #081e36 !important;
}

.product__button .btn--small {
  padding: 0.75rem 1.3rem;
  font-size: 0.9rem;
}

.product__button .btn--full {
  width: 100%;
}

/* Responsive Product Card */
@media (max-width: 991.98px) {
  .product__content {
    padding: 1.3rem;
  }

  .product__title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  }

  .product__body {
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .product__content {
    padding: 1.2rem;
    gap: 0.9rem;
  }

  .product__title {
    font-size: 1.2rem;
  }

  .product__body {
    font-size: 0.9rem;
  }

  .product__button .btn--solid {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .product__content {
    padding: 1rem;
    gap: 0.75rem;
  }

  .product__title {
    font-size: 1.1rem;
  }

  .product__body {
    font-size: 0.85rem;
  }

  .product__button .btn--solid {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   PAGINATION LINKS
   ============================================ */
.pag__link {
  color: var(--text-light) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pag__link:hover {
  color: var(--turquoise) !important;
}

.pag__link--current {
  background: linear-gradient(180deg, #0186af 0%, var(--turquoise) 56%, var(--blue-main) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  font-weight: 700;
}


.block a.card h1.card__title {
  color: var(--text-light) !important;
}

#section-1748335386524 .block.background-light h4,
#section-1598906021426 .block.background-light h4,
#section-1755353298921 .block.background-light h4 {
  color: var(--text-light) !important;
}

#section-1748335386524 .block.background-light h5.card__price,
#section-1598906021426 .block.background-light h5.card__price,
#section-1755353298921 .block.background-light h5.card__price {
  color: var(--turquoise) !important;
}

.background-dark h1,
.background-dark h2,
.background-dark h3,
.background-dark h4,
.background-dark h5,
.background-dark h6 {
  color: var(--blue-dark) !important;
}