:root {
  --primary: #c8102e;
  --primary-dark: #a00d25;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --text: #ffffff;
  --text-muted: #999999;
  --text-light: #cccccc;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

[data-theme="light"] {
  --dark: #f5f5f5;
  --dark-2: #ffffff;
  --dark-3: #ebebeb;
  --dark-4: #e0e0e0;
  --text: #1a1a1a;
  --text-muted: #555555;
  --text-light: #333333;
}

/* Always-dark overrides */
.find-path-section .section-title,
.find-path-section .section-subtitle,
.find-path-section .section-desc {
  color: #ffffff !important;
}
.navbar,
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.25) !important;
  border-bottom-color: rgba(255,255,255,0.05) !important;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95) !important;
}
.navbar .nav-link,
.navbar .navbar-toggler,
.navbar .navbar-brand {
  color: #ffffff !important;
}
.navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.2) !important;
}
.navbar .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='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h23'/%3e%3c/svg%3e") !important;
}
.navbar .dropdown-menu-dark {
  background-color: #111111 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.navbar .dropdown-menu-dark .dropdown-item {
  color: #ffffff !important;
}
.navbar .dropdown-menu-dark .dropdown-item:hover {
  color: #c8102e !important;
  background-color: #1a1a1a !important;
}

[data-theme="light"] .footer {
  border-top: 1px solid rgba(0,0,0,0.1);
}
[data-theme="light"] .page-header .page-overlay {
  background: rgba(245, 245, 245, 0.7);
}
[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(245,245,245,0.85) 0%, rgba(245,245,245,0.6) 100%);
}

/* Keep card text white in light mode — cards have dark backgrounds */
[data-theme="light"] .content-card,
[data-theme="light"] .feature-card-bg,
[data-theme="light"] .step-card,
[data-theme="light"] .coach-card,
[data-theme="light"] .cta-content {
  color: #ffffff;
}
[data-theme="light"] .content-card p,
[data-theme="light"] .feature-card-bg p,
[data-theme="light"] .step-card p,
[data-theme="light"] .coach-card .coach-title,
[data-theme="light"] .cta-content p {
  color: #cccccc;
}
[data-theme="light"] .content-card h3,
[data-theme="light"] .content-card h4,
[data-theme="light"] .content-card h5,
[data-theme="light"] .feature-card-bg h4,
[data-theme="light"] .step-card h4,
[data-theme="light"] .coach-card .coach-name,
[data-theme="light"] .cta-content h2 {
  color: #ffffff;
}

/* Testimonial cards have light backgrounds — use dark text in light mode */
[data-theme="light"] .testimonial-card {
  color: var(--text);
}
[data-theme="light"] .testimonial-card p {
  color: var(--text-muted);
}
[data-theme="light"] .testimonial-card .author {
  color: var(--text-light);
}
[data-theme="light"] .testimonial-card .stars {
  color: var(--primary);
}

/* Pillar feature-cards have light backgrounds — use dark text in light mode */
[data-theme="light"] .feature-card {
  color: var(--text);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .feature-card h5 {
  color: var(--text);
}

/* Keep text light in hero & steps — they have dark parallax backgrounds */
[data-theme="light"] .hero-section .section-subtitle,
[data-theme="light"] .hero-section .section-desc,
[data-theme="light"] .hero-section .hero-desc,
[data-theme="light"] .hero-section h1,
[data-theme="light"] .hero-section .hero-subtitle {
  color: #ffffff;
}
[data-theme="light"] .hero-section .section-desc a {
  color: #ffffff;
  text-decoration: underline;
}
[data-theme="light"] .steps-section .section-subtitle,
[data-theme="light"] .steps-section .section-title,
[data-theme="light"] .steps-section .section-desc {
  color: #ffffff;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  color: var(--text);
  font-size: 1rem;
  padding: 0;
  margin-right: 20px;
}
.theme-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.theme-icon-light { display: none; }
.theme-icon-dark { display: inline-block; }
[data-theme="light"] .theme-icon-light { display: inline-block; }
[data-theme="light"] .theme-icon-dark { display: none; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

/* Navbar */
.navbar {
  background: rgba(10, 10, 10, 0.25);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand img {
  height: 75px;
}

.navbar .nav-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary) !important;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover .dropdown-menu,
.dropdown-submenu .dropdown-menu.show {
  display: block;
}

.dropdown-submenu .dropdown-toggle::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 0.75rem;
  top: 50%;
  margin-top: -2px;
}

@media (max-width: 991.98px) {
  .dropdown-submenu .dropdown-menu {
    top: auto;
    left: 0;
    margin-top: 0;
    margin-left: 1rem;
  }

  .dropdown-submenu .dropdown-toggle::after {
    transform: none;
    position: static;
    margin-top: 0;
  }
}

.navbar .btn-nav {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--text);
  border-radius: 0;
  transition: all 0.3s ease;
}

.navbar .btn-nav:hover {
  background: var(--primary);
  color: var(--text);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

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

.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='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 20px;
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/open.26.1-large-group.jpg') center center / cover no-repeat;
  filter: brightness(0.55);
  z-index: 0;
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-section .hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-section .hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-section .hero-desc strong {
  color: var(--text);
}

.btn-primary-custom {
  font-family: var(--font-heading);
  text-transform: uppercase;
  /* font-size: 0.85rem; */
  letter-spacing: 3px;
  padding: 0.9rem 2.5rem;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-outline-custom {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--dark-2);
}

.section-darker {
  background: var(--dark);
}

.section-gray {
  background: var(--dark-3);
}

.section-charcoal {
  background: var(--dark-4);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-subtitle {
  color: var(--primary);
  font-family: var(--font-heading);
  /*font-size: 0.9rem;*/
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.8;
  margin: 0 auto 3rem;
}

/* Features / Cards */
.feature-card {
  background: var(--dark-4);
  padding: 1rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card-bg {
  aspect-ratio: 1 / 1;
  padding: 1.5rem;
}

.feature-card-bg h4 {
  margin-top: auto;
}

.feature-card-bg p {
  margin-top: 0.5rem;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Steps Section */
.steps-section {
  position: relative;
  overflow: hidden;
}

.steps-bg {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: url('../images/murph2026-2nd-class.jpg') center/cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.steps-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1;
}

.steps-section .container {
  position: relative;
  z-index: 2;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.step-card {
  background: rgba(26, 26, 26, 0.80);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.55);
  height: 100%;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
  background: var(--dark-3);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
  transition: border-color 0.3s ease;
}

/* Card photo treatments */
.card-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Polaroid-style photo */
.card-photo-polaroid {
  width: 210px;
  height: 210px;
  overflow: hidden;
  border: 5px solid #f0f0f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transform: rotate(6deg);
  position: absolute;
  z-index: 2;
}

.card-photo-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-card:hover {
  border-color: var(--primary);
}

.testimonial-card .stars {
  color: #f5a623;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  /* line-height: 1.8; */
  font-style: italic;
  margin-bottom: 1.25rem;
  transition: max-height 0.4s ease;
}

.testimonial-card .author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,16,46,0.2);
  border-bottom: 1px solid rgba(200,16,46,0.2);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 44%, rgba(10,10,10,0.45) 55%, transparent 70%),
    url('../images/marni-flag.png') left 19%/103% auto no-repeat;
  background-color: var(--dark-2);
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .row {
  min-height: 500px;
}

.cta-content {
  position: relative;
  padding-left: 1rem;
}

.cta-accent {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Coach Cards */
.coach-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.coach-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.coach-card .coach-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--dark-4);
}

.coach-card .coach-info {
  padding: 1.25rem;
}

.coach-card .coach-name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 1px;
}

.coach-card .coach-title {
  color: var(--primary);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary);
}

.footer .contact-info {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-4);
  color: var(--text);
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer .social-links a:hover {
  background: var(--primary);
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Page Header */
.page-header {
  position: relative;
  padding: 11rem 0 5rem;
  overflow: hidden;
}

.page-header .page-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  filter: brightness(0.25);
  z-index: 0;
}

.page-header .page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
}

/* Content cards */
.content-card {
  background: rgba(26, 26, 26, 0.85);
  padding: 2.75rem;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease;
}



.content-card:hover {
  border-color: var(--primary);
}

.content-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.content-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: var(--primary);
}

.content-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.content-card ul {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  padding-left: 1.25rem;
}

.content-card ul li {
  margin-bottom: 0.5rem;
}

/* Program Icon */
.program-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.program-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}

/* Form Styles */
.form-control {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.form-control:focus {
  background: var(--dark-4);
  border-color: var(--primary);
  color: var(--text);
  box-shadow: 0 0 0 0.2rem rgba(200, 16, 46, 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

select.form-control option {
  background: var(--dark-4);
  color: var(--text);
}

/* Testimonial Slider */
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  min-width: 100%;
}

.testimonial-slide.active {
  display: grid;
}

.testimonial-slide .testimonial-card {
  margin: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.review-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  margin-bottom: 0;
  display: block;
  transition: color 0.3s ease;
}

.review-read-more:hover {
  color: #ff3b5c;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

.review-see-more {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  margin-left: 10px;
}

.review-see-more:hover {
  color: var(--primary);
}

/* Google Review Badge */
.google-review-badge {
  display: inline-flex;
  align-items: center;
}

.review-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.google-icon {
  flex-shrink: 0;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  line-height: 1;
}

.review-text {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 400;
}

.review-text strong {
  color: var(--text);
  font-weight: 700;
}

/* Stats */
.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* Responsive */
@media (min-width: 992px) {
  .theme-toggle {
    order: 10;
  }
  .navbar .d-flex {
    order: 20;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(10, 10, 10, 0.98);
    padding: 0.75rem 0;
  }

  .navbar-brand img {
    height: 55px;
  }

  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .navbar .btn-primary-custom {
    margin: 0.5rem 1rem 1rem;
    display: inline-block;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .navbar-toggler {
    margin-left: 0.5rem;
  }

  .hero-section .hero-title {
    font-size: 3rem;
  }

  .hero-section {
    padding-top: 100px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header {
    padding: 8rem 0 4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section .row {
    min-height: auto;
  }

  .hero-section .hero-desc {
    font-size: 1rem;
  }

  .google-review-badge {
    width: 100%;
  }

  .testimonial-slide {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-photo-polaroid {
    width: 150px;
    height: 150px;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 85vh;
    padding-top: 80px;
  }

  .hero-section .hero-title {
    font-size: 2.25rem;
  }

  .hero-section .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-section .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .step-number {
    font-size: 3rem;
  }

  .step-card {
    padding: 2rem 1.5rem;
  }

  .page-header {
    padding: 7rem 0 2.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section .row {
    min-height: auto;
  }

  .cta-bg {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 100%), var(--dark-2);
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-card-bg {
    aspect-ratio: auto;
    min-height: 200px;
  }

  .content-card {
    padding: 2rem 1.5rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.75rem 1.75rem;
    font-size: 0.8rem;
  }

  .review-badge-inner {
    padding: 6px 10px;
  }

  .review-text {
    font-size: 0.75rem;
  }

  .hero-section .col-lg-8 > h1 {
    font-size: 1.75rem;
  }

  .navbar-brand img {
    height: 45px;
  }

  .testimonial-slide,
  .testimonial-slide.active {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .slider-controls {
    margin-top: 1.5rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .card-photo-polaroid {
    display: none;
  }

  .card-photo-wrap[style*="min-height"] {
    min-height: auto !important;
  }

  .card-photo-wrap .content-card [style*="margin-right"] {
    margin-right: 0 !important;
  }

  .card-photo-wrap .content-card [style*="margin-left"] {
    margin-left: 0 !important;
  }

  .page-header .page-bg[style*="background-position"] {
    background-position: center center !important;
  }

  .steps-bg {
    display: none;
  }

  .find-path-section {
    background-attachment: scroll !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    padding-top: 70px;
  }

  .hero-section .hero-title {
    font-size: 1.75rem;
  }

  .hero-section .hero-desc {
    font-size: 0.9rem;
  }

  .hero-section .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .section-desc {
    font-size: 0.85rem;
  }

  .page-header {
    padding: 6rem 0 2rem;
  }

  .page-header h1 {
    font-size: 1.65rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  .navbar-brand img {
    height: 38px;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .navbar-toggler {
    margin-left: 0.25rem;
  }

  .content-card {
    padding: 1.5rem 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-card-bg {
    min-height: 170px;
  }

  .step-card {
    padding: 1.5rem 1rem;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .hero-section .review-text strong {
    font-size: 0.7rem;
  }

  .feature-card h5 {
    font-size: 0.8rem;
  }
}
