/********** Neonraum Unified Theme (Burgundy & Dark Yellow) **********/

@import url("https://fonts.googleapis.com/css2?family=Inclusive+Sans:ital@0;1&display=swap");

/* ========== 1) CSS Variables ========== */
:root {
  --primary: #0b0f14; /* ink black-blue */
  --secondary: #15212b; /* deep slate */
  --accent: #4fa89a; /* muted teal */
  --accent-hover: #3a8f82;
  --accent-light: rgba(79, 168, 154, 0.14);
  --success: #7fb069; /* moss */
  --warning: #d1a25a; /* warm ochre */
  --danger: #b14d4d; /* muted brick */
  --info: #7a8bd6; /* soft indigo */

  --light: #ffffff;
  --dark: #0a0f13;
  --bg: #0b0f14; /* app background */
  --surface: #141a21; /* cards/surfaces */
  --light-text: #f2f5f7; /* headings on dark */
  --muted-text: #cfd8e3; /* body on dark */
  --border: rgba(255,255,255,0.12);

  --gray-100: #0e1318;
  --gray-200: #151b22;
  --gray-300: #1c242d;
  --gray-400: #27313c;
  --gray-500: #344351;
  --gray-600: #4b5d6c;
  --gray-700: #6b8191;
  --gray-800: #9ab0bd;
  --gray-900: #cfe0e8;

  --gradient-primary: linear-gradient(135deg, #4fa89a 0%, #15212b 100%);
  --gradient-secondary: linear-gradient(135deg, #15212b 0%, #0b0f14 100%);
  --gradient-accent: linear-gradient(135deg, #4fa89a 0%, #3a8f82 100%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.18);
  --shadow: 0 8px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.5);

  --header-height: 80px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --header-bg: rgba(11, 15, 20, 0.9);
}

/* ========== 2) Base Reset & Typography ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inclusive Sans', sans-serif;
  color: var(--muted-text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}
p { margin: 0 0 1rem 0; }
.lead { color: var(--accent); font-weight: 500; }

/* ========== 3) Header (Fully Redesigned) ========== */
.modern-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  display: flex; align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 1px solid var(--accent-light);
}
.modern-header.scrolled { height: 60px; box-shadow: var(--shadow); }

/* Logo */
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; }
.logo-container { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 50px; height: 50px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  background: var(--accent-light);
}
.logo-icon:hover { border-color: var(--accent-hover); transform: scale(1.05); }
.logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-text);
}
.logo-text span { color: var(--accent); }

/* Navigation */
.navbar-nav { display: flex; gap: 0.5rem; align-items: center; }
.nav-link {
  color: var(--muted-text);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: var(--accent-light);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 30px; }

/* CTA Button in Nav */
.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 0.5rem;
}
.cta-button:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Navbar Toggler */
.navbar-toggler {
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  background: var(--accent-light);
}
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(79, 168, 154, 0.25); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234fa89a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Mobile nav (collapsed) */
@media (max-width: 991.98px) {
  /* ensure toggler stays above the slide-down panel */
  .navbar-toggler { position: relative; z-index: 1101; }

  /* collapsed panel as a blurred overlay under header */
  .navbar-collapse {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(20, 26, 33, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow);
    padding: 12px 14px 16px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  /* adjust offset when header shrinks on scroll */
  .modern-header.scrolled .navbar-collapse { top: 60px; }

  /* vertical list with nicer hit targets */
  .navbar-nav { flex-direction: column; gap: 8px; }
  .nav-link {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  }
  .nav-link::after { bottom: 6px; }

  /* CTA full-width */
  .navbar-nav .cta-button { width: 100%; text-align: center; margin-left: 0; }
}

/* ========== 4) Footer (Fully Redesigned) ========== */
.modern-footer {
  background: var(--primary);
  padding: 4rem 0 0;
  position: relative;
  border-top: 3px solid;
  border-image: var(--gradient-primary) 1;
  margin-top: 4rem;
}

/* Footer Brand */
.footer-brand { margin-bottom: 2rem; }
.footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-text);
}
.footer-logo-icon {
  width: 50px; height: 50px;
  border: 2px solid var(--accent);
  border-radius: 12px; padding: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light);
}
.footer-logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.footer-description { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.6; }

/* Footer Contact */
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.contact-item i { color: var(--accent); width: 20px; font-size: 1.1rem; }
.contact-item:hover { color: var(--accent); }

/* Footer Section */
.footer-section h5 {
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: inline-block;
  padding: 0.25rem 0;
  position: relative;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.footer-links a::before {
  content: "";
  position: absolute;
  left: -10px; top: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.footer-links a:hover::before { width: 4px; }

/* Newsletter */
.newsletter-form { margin-bottom: 1.5rem; }
.newsletter-form .input-group {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.newsletter-form .form-control {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form .btn {
  border: none; background: var(--accent); color: #fff;
  padding: 12px 20px;
}

/* Social Icons */
.social-links h6 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icon {
  width: 44px; height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: var(--transition);
  font-size: 1.2rem;
}
.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px) scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
}
.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-legal a:hover {
  color: var(--accent);
}

/* ========== 5) Components ========== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 0.9rem;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}
.badge-accent { background: var(--accent); color: #fff; }
.badge-secondary { background: var(--secondary); color: #fff; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.card-body { padding: 1.25rem; }
.card-title { color: var(--light-text); font-size: 1.25rem; margin-bottom: 0.5rem; }

/* ========== 6) Sections ========== */
/* Hero */
.hero-section {
  position: relative;
  padding: 140px 0 120px;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(79,168,154,0.12) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(1000px 500px at 90% 20%, rgba(21,33,43,0.45) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0b0f14 0%, #141a21 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-background { position: absolute; inset: 0; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(800px 200px at 50% -10%, rgba(207,224,232,0.12), rgba(0,0,0,0)); z-index: 1; }
.hero-pattern { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(700px 350px at 50% 0%, #000 40%, transparent 70%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--light-text); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.hero-title { font-size: 3.2rem; margin-bottom: 1.25rem; line-height: 1.15; letter-spacing: 0.2px; }
.hero-description { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.9; max-width: 680px; color: var(--gray-800); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-container { position: relative; z-index: 2; }
.hero-image-wrapper { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.08); }
.hero-image { width: 100%; height: 520px; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.floating-card { position: absolute; z-index: 3; background: rgba(20,26,33,0.8); color: var(--light-text); border: 1px solid rgba(255,255,255,0.1); padding: 10px 14px; border-radius: 12px; box-shadow: var(--shadow); backdrop-filter: blur(6px); display: inline-flex; align-items: center; gap: 8px; }
.floating-card i { color: var(--accent); }
.floating-card.card-1 { left: 14px; top: 14px; }
.floating-card.card-2 { right: 16px; top: 40%; }
.floating-card.card-3 { left: 20%; bottom: 16px; }
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title { font-size: 2.4rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.methods-section .section-title,
.advantages-section .section-title,
.testimonials-section .section-title { color: var(--light-text); }
.methods-section .section-description,
.advantages-section .section-description,
.testimonials-section .section-description { color: var(--gray-800); }
.section-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* About */
.about-section { padding: 100px 0; position: relative; }
.about-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 200px;
  background: var(--accent-light);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}
.about-content { position: relative; z-index: 2; }
.about-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.about-card-title { font-size: 1.5rem; color: #222; margin-bottom: 0.5rem; }
.about-card-icon {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--accent);
  opacity: 0.15;
  font-size: 3rem;
}

/* Programs */
.programs-section { padding: 100px 0; background: #fff; position: relative; }
.programs-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 150px; height: 150px;
  background: var(--accent-light);
  border-radius: 50%;
  z-index: 1;
}
.programs-section::after {
  content: "";
  position: absolute;
  bottom: 50px; left: 50px;
  width: 100px; height: 100px;
  background: var(--accent-light);
  border-radius: 50%;
  z-index: 1;
}
.program-card {
  border-radius: 8px;
  background: var(--bg);
  color: var(--light-text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.program-card-header {
  background: var(--accent);
  color: #fff;
  padding: 20px;
  border-radius: 8px 8px 0 0;
}
.program-card-body { padding: 25px; }
.program-feature { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; }
.program-feature-icon { color: var(--accent); font-size: 1.25rem; }
.program-number {
  position: absolute;
  top: 15px; right: 15px;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.2);
  font-weight: 700;
}

/* Methods */
.methods-section { padding: 100px 0; background: var(--bg); }
/* Enhanced table styles inside methods/specs */
.methods-section .table-responsive { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-sm); }
.methods-section table { width: 100%; border-collapse: separate; border-spacing: 0; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); color: var(--light-text); }
.methods-section thead th { position: sticky; top: 0; z-index: 2; background: rgba(20,26,33,0.9); color: var(--light-text); font-weight: 700; letter-spacing: .3px; border-bottom: 1px solid rgba(255,255,255,0.12) !important; }
.methods-section tbody td, .methods-section thead th { padding: 14px 16px; border-right: 1px solid rgba(255,255,255,0.06); }
.methods-section tbody td:last-child, .methods-section thead th:last-child { border-right: none; }
.methods-section tbody tr { transition: background .25s ease; }
.methods-section tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.methods-section tbody tr:hover { background: rgba(79,168,154,0.08); }
.methods-section tbody td { color: var(--gray-800); }
.methods-section .table-striped > tbody > tr:nth-of-type(odd) > * { color: var(--gray-800); }
.methods-section .table-striped > tbody > tr:nth-of-type(even) > * { color: var(--gray-800); }
.methods-section table.table-dark.table-striped.table-bordered { border: none; }
.methods-section table.table-dark.table-striped.table-bordered > :not(caption) > * > * { border-bottom-color: rgba(255,255,255,0.08); }
.methods-section table caption { caption-side: top; padding: 12px 16px; color: var(--gray-800); font-weight: 600; }
.method-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  padding: 30px;
  text-align: center;
}
.method-card.featured { border: 2px solid var(--accent); transform: scale(1.02); }
.method-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.method-header { padding: 1.5rem 1.5rem 0; position: relative; }
.method-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.method-icon i, .method-icon span { font-size: 2.5rem; color: var(--accent); }
.method-card:hover .method-icon { background: var(--accent); transform: scale(1.1); }
.method-card:hover .method-icon i, .method-card:hover .method-icon span { color: #fff; }
.method-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.method-badge.popular { background: var(--success); }
.method-content { padding: 0 1.5rem 1.5rem; }
.method-content h3 { font-size: 1.25rem; color: #111; margin-bottom: 1rem; }
.method-features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.method-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.method-features i { color: var(--success); }
.method-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #666;
}

/* Pricing */
.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.pricing-card.featured { border: 2px solid var(--accent); transform: scale(1.02); }
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.pricing-header { padding: 30px 25px; text-align: center; position: relative; }
.pricing-title { font-size: 1.5rem; margin-bottom: 5px; }
.pricing-subtitle { color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.pricing-img-container { width: 100%; height: 180px; overflow: hidden; position: relative; }
.pricing-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.pricing-card:hover .pricing-img { transform: scale(1.05); }
.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin: 25px 0 15px;
}
.pricing-features { padding: 30px 25px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.pricing-feature-icon { color: var(--accent); flex-shrink: 0; }
.pricing-cta { padding: 0 25px 30px; text-align: center; }
.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

/* Testimonials (Redesigned) */
.testimonials-section {
  padding: 110px 0;
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(79,168,154,0.12) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(900px 450px at 90% 20%, rgba(21,33,43,0.5) 0%, rgba(0,0,0,0) 60%),
    var(--bg);
  position: relative;
}
.testimonials-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,33,0) 0%, rgba(20,26,33,0.4) 100%);
  pointer-events: none;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991.98px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767.98px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  height: 100%;
  z-index: 1;
}
.testimonial-card::after {
  content: "";
  position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  background: radial-gradient(600px 120px at 20% -10%, rgba(79,168,154,0.15), rgba(0,0,0,0));
  opacity: .6;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79,168,154,0.25); }

/* Align CSS with existing HTML classes and fix layering */
.testimonial-quote-icon {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 2px solid var(--accent);
  opacity: .5;
  z-index: 2;
  background: rgba(20,26,33,0.9);
}
.testimonial-quote { /* text block */
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted-text);
  margin: 0 0 18px 0;
}
.testimonial-rating { display: flex; gap: 6px; margin-bottom: 14px; position: relative; z-index: 2; }
.testimonial-rating i { color: var(--warning); font-size: 1.05rem; }

.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 8px;
}
.testimonial-avatar, .testimonial-author-img {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  position: relative; z-index: 2; background: #000;
}
.testimonial-info h4, .testimonial-author-name { color: var(--light-text); font-weight: 700; margin-bottom: 2px; }
.testimonial-info p, .testimonial-author-title { color: rgba(255,255,255,.7); font-size: 0.9rem; margin: 0; }

/* Carousel dots override (if used) */
.owl-dots { text-align: center; margin-top: 1.5rem; }
.custom-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.25); margin: 0 6px; display: inline-block; transition: var(--transition); cursor: pointer; }
.custom-dot.active { background: var(--accent); transform: scale(1.15); }
.custom-dot:hover { background: var(--accent-hover); }

/* Advantages */
.advantages-section { padding: 100px 0; background: linear-gradient(180deg, #0b0f14 0%, #141a21 100%); position: relative; }
.advantages-section::before { content: none; }
/* Dark cards redesign to match existing HTML structure */
.advantage-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 26px 26px 22px; box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); height: 100%; transition: var(--transition); overflow: hidden; }
.advantage-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 100px at 10% -10%, rgba(79,168,154,0.15), rgba(0,0,0,0)); pointer-events: none; }
.advantage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(79,168,154,0.25); }
.advantage-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(79,168,154,0.15); color: var(--accent); margin-bottom: 14px; border: 1px solid rgba(79,168,154,0.35); }
.advantage-icon i { font-size: 1.6rem; }
.advantage-card h4 { color: var(--light-text); font-weight: 700; margin: 4px 0 8px; }
.advantage-card p { color: var(--gray-800); margin: 0; }
.advantage-number { position: absolute; right: 16px; bottom: 12px; font-weight: 800; font-size: 1.25rem; color: rgba(255,255,255,0.2); }
.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: var(--secondary);
  color: var(--light);
  border-radius: 2rem;
  padding: 3rem;
}
.advantage-item {
  display: flex;
  gap: 15px;
  background: var(--muted-text);
  color: var(--dark);
  padding: 2rem;
  border-radius: 2rem;
}
.advantage-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.advantage-icon span { color: var(--accent); font-size: 1.5rem; }
.advantage-text h4 { color: var(--dark); font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.advantage-text p { color: var(--dark); margin: 0; line-height: 1.6; }

/* CTA - Fully Redesigned Dark Theme */
.cta-section {
  padding: 110px 0;
  background:
    radial-gradient(900px 450px at 20% 10%, rgba(79,168,154,0.1) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(1000px 500px at 80% 30%, rgba(21,33,43,0.4) 0%, rgba(0,0,0,0) 60%),
    var(--bg);
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,33,0) 0%, rgba(20,26,33,0.3) 100%);
  pointer-events: none;
}
.cta-section .section-title { color: var(--light-text); }
.cta-section .section-description { color: var(--gray-800); }

.cta-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  height: 100%;
  backdrop-filter: blur(8px);
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 120px at 0% 10%, rgba(79,168,154,0.1), rgba(0,0,0,0));
  opacity: .6;
  pointer-events: none;
}
.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(79,168,154,0.3);
}

.cta-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: rgba(20,26,33,0.4);
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(0.75) saturate(1.1);
}
.cta-card:hover .cta-image img { transform: scale(1.08); }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(79,168,154,0.15) 0%, rgba(20,26,33,0.6) 100%);
  display: flex; align-items: center; justify-content: center;
}
.cta-icon {
  width: 64px; height: 64px;
  background: rgba(79,168,154,0.2);
  backdrop-filter: blur(8px);
  border: 2px solid var(--accent);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 2rem;
  transition: var(--transition);
}
.cta-card:hover .cta-icon {
  background: var(--accent);
  color: var(--light-text);
  transform: rotate(5deg) scale(1.1);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 24px;
  background: transparent;
}
.cta-content h3 {
  color: var(--light-text);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cta-content p {
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-800);
  font-size: 0.9rem;
  transition: var(--transition);
}
.cta-card:hover .feature-item { color: var(--gray-700); }
.feature-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item span {
  line-height: 1.4;
}

.cta-content .btn {
  width: 100%;
  margin-top: 4px;
}

/* Contact */
.contact-section { padding: 100px 0; background: #fff; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon span, .contact-icon i { color: var(--accent); font-size: 1.25rem; }
.contact-details h4 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 600; }
.contact-details p, .contact-details a {
  margin: 0; line-height: 1.6;
  color: #111;
}
.contact-details a:hover { color: var(--accent); }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Forms */
.form-section { padding: 0 0 100px; background: #fff; }
.form-container {
  background: var(--bg);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--light-text);
  font-weight: 600;
}
.form-control {
  width: 100%;
  background: #fff;
  color: #111;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(205,154,78,0.25);
}


/* ========== 8) Utilities & Helpers ========== */
.container-nr { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: rgba(255,255,255,0.7); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.shadow { box-shadow: var(--shadow); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }

/* Spacing Utilities */
.mt-0, .mt-1, .mt-2, .mt-3, .mt-4, .mt-5 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-0, .mb-1, .mb-2, .mb-3, .mb-4, .mb-5 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-0, .pt-3, .pt-5 { padding-top: 0; }
.pt-3 { padding-top: 1rem; }
.pt-5 { padding-top: 3rem; }
.pb-0, .pb-3, .pb-5 { padding-bottom: 0; }
.pb-3 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 3rem; }

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background: var(--accent);
  color: white;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* ========== 9) Responsive ========== */
@media (max-width: 1199.98px) {
  .container-nr { max-width: 1040px; }
}
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.5rem; }
  .hero-section, .about-section, .programs-section, .methods-section, .testimonials-section {
    padding: 70px 0;
  }
  .advantages-section, .cta-section, .contact-section, .form-section {
    padding: 70px 0;
  }
  .hero-image { height: 420px; }
  .advantages-list { grid-template-columns: 1fr; gap: 20px; }
  .cta-image-container { height: 300px; }
  .footer-legal { justify-content: flex-start; margin-top: 1rem; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .hero-section { padding: 140px 0 80px; }
  .pricing-price { font-size: 2rem; }
  .pricing-title { font-size: 1.3rem; }
  .testimonial-card { margin-bottom: 30px; }
  .cta-title { font-size: 1.8rem; }
  .form-container { padding: 30px 20px; }
  .modern-footer { padding: 3rem 0 0; }
  .footer-logo { font-size: 1.25rem; }
  .navbar-nav { flex-direction: column; gap: 0; }
}

/* ========== 10) Animations ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.floating-card { animation: float 3s ease-in-out infinite; }

/* ========== 11) Page-specific ========== */
.page-section { padding: 5rem 0; background: var(--bg); }
.policy-content {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
}
.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.policy-section:last-child { border-bottom: none; margin-bottom: 0; }
.policy-section h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.policy-section h3 i { color: var(--accent); font-size: 1.1rem; }
.policy-list { list-style: none; }
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #333;
}
.policy-list i { color: var(--success); }
.contact-link { color: var(--accent); transition: var(--transition); }
.contact-link:hover { color: var(--accent-hover); text-decoration: underline; }

/* Thanks Page */
body.thanks-page {
  background: linear-gradient(to bottom, #1a0a0e 0%, #2b1619 100%);
  background-attachment: fixed;
}
.thanks-wrapper-1 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thanks-wrapper-2 {
  padding: 30px;
  text-align: center;
}
.thanks-title {
  font-size: 4em;
  letter-spacing: 3px;
  color: var(--accent);
  margin: 0 0 20px;
}
.thanks-text {
  font-size: 1.3em;
  color: var(--light-text);
  letter-spacing: 1px;
}
.thanks-button {
  background: var(--accent);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 12px;
  padding: 14px 42px;
  margin-top: 42px;
  transition: var(--transition);
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
}
.thanks-button:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.thanks-footer {
  margin-top: auto;
  background: rgba(205,154,78,0.15);
  padding: 6px;
  text-align: center;
}
.thanks-footer p {
  margin: 0;
  padding: 4px;
  color: var(--accent);
}

/* Helpers */
.growth {
  background-image: url('img/background-image.png');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  padding: 100px 0;
}

@media (min-width: 600px) {
  .thanks-wrapper-1 {
    min-height: initial;
    max-width: 620px;
    margin: 50px auto 0;
    box-shadow: 4px 8px 40px 8px rgba(0,0,0,0.2);
    background: var(--dark);
    border-radius: 12px;
  }
}


/* cookie banner */

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  width: 100%;
  background: var(--gray-700);
  padding: 20px 25px 25px;
  transition: right 0.3s ease;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

.cookie-wrapper header i {
  color: var(--accent-color);
  font-size: 32px;
  text-align: center;
}

.cookie-wrapper header h2 {
  color: var(--heading-color);
  font-weight: 600;
  text-align: center;
  margin: 10px 0;
}

.data {
  text-align: center;
  margin: 15px 0;
}

.data p {
  color: var(--default-color);
  margin: 0;
}

.data p a {
  color: var(--accent-color);
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.buttons .cookie-button {
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  background: var(--gradient-primary);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 120px;
}

.buttons #acceptBtn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-secondary);
}

#declineBtn {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

#declineBtn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 772px) {
  .cookie-wrapper {
      width: 100%;
      bottom: 0px;
      left: 0px;
  }
  
  .buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .buttons .cookie-button {
      width: 100%;
      max-width: 200px;
  }
}