/* Rudo-inspired theme for Bookmydummyticket.com */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');
:root {
  --bs-primary: #d6ff6b;
  --bs-primary-dark: #b6e94e;
  --bs-accent: #eaffb0;
  --bs-bg-light: #181f13;
  --bs-bg-hero: radial-gradient(ellipse at 60% 40%, #232a1a 60%, #181f13 100%);
  --bs-font-main: 'Montserrat', 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}

body {
  background: var(--bs-bg-light);
  color: #fff;
  font-family: var(--bs-font-main);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  background: #181f13 !important;
  box-shadow: none;
  border-bottom: none;
}

.navbar-brand {
  letter-spacing: 1.5px;
  font-size: clamp(1rem, 2vw, 2rem);
  color: var(--bs-primary) !important;
  font-weight: 900;
  font-family: var(--bs-font-main);
  white-space: nowrap;
}

.nav-link {
  color: var(--bs-primary) !important;
  font-weight: 700;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  transition: color 0.2s;
  outline: none;
}

.nav-link:focus {
  outline: 2px solid var(--bs-accent);
  outline-offset: 2px;
}

.nav-link:hover, .nav-link:focus {
  color: var(--bs-accent) !important;
}

.navbar .btn-primary, .navbar .btn {
  background: var(--bs-primary);
  color: #181f13 !important;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  box-shadow: 0 2px 8px rgba(214,255,107,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.navbar .btn-primary:focus, .navbar .btn:focus {
  outline: 2px solid var(--bs-accent);
  outline-offset: 2px;
}

.navbar .btn-primary:hover, .navbar .btn-primary:focus, .navbar .btn:hover, .navbar .btn:focus {
  background: var(--bs-primary-dark);
  color: #181f13 !important;
  box-shadow: 0 4px 16px rgba(214,255,107,0.13);
}

/* Fluid, geometric heading styles */
.display-3, .display-4, h1, h2, h3 {
  font-family: var(--bs-font-main);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--bs-primary);
  line-height: 1.03;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #fff;
  margin-bottom: 1.2rem;
}

.btn-primary, .btn-outline-primary {
  border-radius: 16px;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  padding: 0.75rem 2.5rem;
  border: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-primary {
  background: var(--bs-primary);
  color: #181f13;
}

.btn-primary:focus {
  outline: 2px solid var(--bs-accent);
  outline-offset: 2px;
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--bs-primary-dark);
  color: #181f13;
}

.btn-outline-primary {
  color: var(--bs-primary);
  background: transparent;
  border: 2px solid var(--bs-primary);
}

.btn-outline-primary:focus {
  outline: 2px solid var(--bs-accent);
  outline-offset: 2px;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--bs-primary);
  color: #181f13;
  border-color: var(--bs-primary-dark);
}

/* Pill Navigation Styles */
.service-pill {
  display: inline-block;
  font-size: 0.92rem;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  background: rgba(214, 255, 107, 0.08);
  color: #d6ff6b;
  font-family: var(--bs-font-main);
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(214, 255, 107, 0.18);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  outline: none;
  margin-bottom: 0;
  text-transform: capitalize;
  vertical-align: middle;
  min-width: unset;
  white-space: nowrap;
}

/* Pills row wrapper for horizontal scroll and fluid layout */
.pills-row-wrapper {
  width: 100%;
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

nav[aria-label="Service notations"] ul {
  display: flex;
  flex-wrap: nowrap !important;
  gap: 1.1rem;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.2rem;
  margin-bottom: 0.7rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
nav[aria-label="Service notations"] ul::-webkit-scrollbar {
  display: none;
}

.service-pill:hover, .service-pill:focus {
  background: rgba(214, 255, 107, 0.18);
  color: #232a1a;
  box-shadow: 0 4px 24px 0 rgba(214,255,107,0.10);
  text-decoration: none;
}

/* --- Service Pills Alignment and Sizing --- */
nav[aria-label="Service notations"] ul.chips-row {
  display: flex;
  flex-wrap: nowrap !important;
  gap: 0.7rem;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  overflow-x: visible;
}

.service-pill {
  font-size: 0.85rem;
  padding: 0.32rem 0.85rem;
  border-radius: 1.5rem;
  margin-bottom: 0;
  min-width: unset;
  white-space: nowrap;
}

/* Responsive tweaks for mobile */
@media (max-width: 767.98px) {
  .hero-content {
    text-align: left !important;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .hero-content h1,
  .hero-content .display-3 {
    text-align: left !important;
    font-size: 1.45rem;
    line-height: 1.13;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 0.7rem;
  }
  .hero-content .lead {
    text-align: left !important;
    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.1rem;
  }
  .hero-content .btn,
  .hero-content .btn-primary,
  .hero-content .btn-outline-primary {
    text-align: left !important;
    font-size: 0.98rem;
    padding: 0.7em 1.2em;
    border-radius: 1.2em;
    width: 100%;
    max-width: 18rem;
  }
  .hero-content .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.7rem;
  }
  .pills-row-wrapper {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    margin-bottom: 1.1rem;
  }
  .chips-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    overflow-x: visible;
    margin: 0 auto 0.7rem auto;
    padding: 0;
  }
  .chips-row .service-pill {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 1.5rem;
    font-weight: 700;
    min-width: unset;
    white-space: nowrap;
    margin-bottom: 0;
  }
  .lead {
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 991.98px) {
  nav[aria-label="Service notations"] ul.chips-row {
    gap: 0.5rem;
  }
  .service-pill {
    font-size: 0.8rem;
    padding: 0.28rem 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .pills-row-wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  nav[aria-label="Service notations"] ul.chips-row {
    gap: 0.35rem;
  }
  .service-pill {
    font-size: 0.75rem;
    padding: 0.22rem 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .service-pill {
    font-size: 0.7rem;
    padding: 0.18rem 0.38rem;
  }
}

/* Remove horizontal scroll and center alignment for pills */
nav[aria-label="Service notations"] ul.chips-row::-webkit-scrollbar {
  display: none;
}

/* Remove all fixed font sizes from media queries for headings, navbar-brand, lead, and buttons */
@media (max-width: 991.98px) {
  .navbar-nav {
    background: rgba(24,31,19,0.98);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(214,255,107,0.07);
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
  }
  .navbar .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* Remove all fixed font sizes from media queries for headings, navbar-brand, lead, and buttons */
@media (max-width: 575.98px) {
  .btn-primary, .btn-outline-primary {
    padding: 0.75rem 1.2rem;
  }
}

/* Add spacing below pills for separation */
nav[aria-label="Service navigation"] {
  margin-bottom: 1.5rem !important;
}

/* Accessibility: Ensure focus is visible, color contrast is high, and tap targets are large. */
/* Performance: Use compressed images, SVGs for icons/logos, and lazy-load large images. */
/* Cross-browser: Test in all major browsers. Use vendor prefixes if needed for advanced CSS. */
:focus {
  outline: 2px solid var(--bs-accent) !important;
  outline-offset: 2px !important;
} 

/* --- Hero Section Alignment and Spacing Improvements --- */
.hero-content {
  text-align: left;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left !important;
    align-items: flex-start;
  }
  .pills-row-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  nav[aria-label="Service notations"] ul.chips-row {
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}

/* --- Hero Section: Responsive Spacing Below Navbar (FINAL, ONLY BLOCK) --- */
.hero-bg {
  margin-top: 0;
  padding-top: 2.5rem;
  padding-bottom: 0;
}

@media (min-width: 576px) {
  .hero-bg {
    padding-top: 4rem;
  }
}

@media (min-width: 992px) {
  .hero-bg {
    padding-top: 6rem;
  }
}

.navbar {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  z-index: 100;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
}

.navbar-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #b6e94e 0%, #232a1a 100%);
  opacity: 0.25;
  margin: 0;
}

/* Hide navbar on scroll down, show on scroll up */
.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* --- About Section (Rudo-style, Responsive, Themed) --- */
.about-section {
  background: #20281a;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-left: 0;
  padding-right: 0;
}

.about-content {
  background: #232a1a;
  border-radius: 2rem;
  box-shadow: 0 4px 32px 0 rgba(214,255,107,0.04);
  padding: 2.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bs-primary);
  line-height: 1.1;
}

.about-highlight {
  color: var(--bs-primary-dark);
  background: none;
  border-bottom: 0.2em solid #eaffb0;
  padding: 0 0.1em;
  border-radius: 0.1em;
}

.about-desc {
  color: #eaffb0;
  font-size: 1.15rem;
  max-width: 700px;
  margin-top: 1.5rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.about-squiggle {
  max-width: 400px;
  min-width: 120px;
  width: 60%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .about-content {
    padding: 1.5rem 0.5rem;
    border-radius: 1.2rem;
  }
  .about-title {
    font-size: 1.5rem;
  }
  .about-desc {
    font-size: 1rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}

/* --- Purpose Section (Rudo-style, Responsive, Themed, Matched) --- */
.purpose-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.purpose-left {
  background: #20281a;
  color: var(--bs-primary);
  border-radius: 2rem;
  min-height: 100%;
  box-shadow: 0 4px 32px 0 rgba(214,255,107,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.purpose-title {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--bs-primary);
  line-height: 1.1;
}

.purpose-desc {
  color: #eaffb0;
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.purpose-card {
  background: #232a1a;
  color: #d6ff6b;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(214,255,107,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 120px;
  transition: box-shadow 0.2s;
  border: 1.5px solid #b6e94e;
}
.purpose-card:hover {
  box-shadow: 0 6px 32px 0 rgba(214,255,107,0.13);
}
.purpose-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.purpose-card-title {
  font-family: var(--bs-font-main);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  color: #eaffb0;
}

@media (max-width: 991.98px) {
  .purpose-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .purpose-left {
    border-radius: 1.2rem;
    padding: 1.5rem 1rem;
  }
  .purpose-card {
    border-radius: 1.2rem;
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .purpose-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .purpose-left {
    border-radius: 1rem;
    padding: 1.2rem 0.5rem;
  }
  .purpose-title {
    font-size: 1.2rem;
  }
  .purpose-card {
    border-radius: 1rem;
    padding: 1rem 0.7rem;
  }
  .purpose-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* --- Visa Flexibility Section (Theme-matched, Responsive) --- */
.visa-flex-section {
  background: linear-gradient(135deg, #b6e94e 0%, #d6ff6b 100%);
  border-radius: 2rem;
  margin: 3rem 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.visa-flex-title {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #181f13;
  letter-spacing: -0.5px;
}

.visa-flex-subtitle {
  color: #232a1a;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.visa-quote-card {
  background: rgba(255,255,255,0.85);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(214,255,107,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  transition: box-shadow 0.2s;
  border: 1.5px solid #eaffb0;
}

.visa-quote-card:hover {
  box-shadow: 0 6px 32px 0 rgba(214,255,107,0.13);
}

.visa-embassy-logo {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visa-quote-text {
  color: #232a1a;
  font-size: 1.08rem;
  font-family: var(--bs-font-main);
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
  line-height: 1.5;
  font-weight: 500;
}

.visa-embassy-link {
  color: #181f13;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
  font-family: var(--bs-font-main);
  display: flex;
  align-items: center;
  gap: 0.3em;
  transition: color 0.2s;
}
.visa-embassy-link:hover {
  color: var(--bs-primary-dark);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .visa-flex-section {
    border-radius: 1.2rem;
    margin: 2rem 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .visa-quote-card {
    border-radius: 1.2rem;
    padding: 1.2rem 1rem 1rem 1rem;
    min-height: 260px;
  }
}

@media (max-width: 767.98px) {
  .visa-flex-section {
    border-radius: 1rem;
    margin: 1.2rem 0;
    padding-left: 0;
    padding-right: 0;
  }
  .visa-flex-title {
    font-size: 1.2rem;
  }
  .visa-quote-card {
    border-radius: 1rem;
    padding: 1rem 0.7rem 0.7rem 0.7rem;
    min-height: 180px;
  }
  .visa-embassy-logo {
    width: 28px;
    height: 28px;
  }
}

/* --- FAQ Section (Theme-matched, Responsive) --- */
.faq-section {
  background: linear-gradient(135deg, #b6e94e 0%, #d6ff6b 100%);
  border-radius: 2rem;
  margin: 3rem 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.faq-title {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #181f13;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  color: #232a1a;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.faq-accordion .accordion-item {
  background: rgba(255,255,255,0.85);
  border-radius: 1.5rem;
  margin-bottom: 1.2rem;
  border: 1.5px solid #eaffb0;
  box-shadow: 0 2px 16px 0 rgba(214,255,107,0.07);
  overflow: hidden;
}
.faq-accordion .accordion-header {
  font-family: var(--bs-font-main);
}
.faq-accordion .accordion-button {
  background: none;
  color: #181f13;
  font-family: var(--bs-font-main);
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  box-shadow: none;
  padding: 1.2rem 1.5rem;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #eaffb0;
  color: #181f13;
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px #d6ff6b;
}
.faq-accordion .accordion-body {
  background: none;
  color: #232a1a;
  font-size: 1.05rem;
  font-family: var(--bs-font-main);
  padding: 1.2rem 1.5rem 1.5rem 1.5rem;
}
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-list li {
  margin-bottom: 1.2rem;
}
.faq-list strong {
  color: #181f13;
  font-weight: 700;
}
.faq-more-btn {
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 2rem;
  border: 2px solid #b6e94e;
  color: #181f13;
  background: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.faq-more-btn:hover, .faq-more-btn:focus {
  background: #eaffb0;
  color: #181f13;
  border-color: #d6ff6b;
}

@media (max-width: 991.98px) {
  .faq-section {
    border-radius: 1.2rem;
    margin: 2rem 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .faq-accordion .accordion-item {
    border-radius: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .faq-section {
    border-radius: 1rem;
    margin: 1.2rem 0;
    padding-left: 0;
    padding-right: 0;
  }
  .faq-title {
    font-size: 1.2rem;
  }
  .faq-accordion .accordion-item {
    border-radius: 1rem;
  }
  .faq-accordion .accordion-button,
  .faq-accordion .accordion-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* --- Booking Process Section (Theme-matched, Responsive) --- */
.booking-process-section {
  background: #d6ff6b;
  border-radius: 2rem;
  margin: 3rem 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.booking-process-title {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #181f13;
  letter-spacing: -0.5px;
}

.booking-step-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(214,255,107,0.07);
  border: 1.5px solid #eaffb0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 320px;
  transition: box-shadow 0.2s;
}
.booking-step-card:hover {
  box-shadow: 0 6px 32px 0 rgba(214,255,107,0.13);
}
.booking-step-number {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: 2.2rem;
  color: #b6e94e;
  opacity: 0.9;
}
.booking-step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.booking-step-title {
  font-family: var(--bs-font-main);
  font-weight: 700;
  font-size: 1.15rem;
  color: #181f13;
}
.booking-step-desc {
  color: #232a1a;
  font-size: 1.02rem;
  margin-top: 0.5rem;
  line-height: 1.5;
  font-family: var(--bs-font-main);
}

@media (max-width: 991.98px) {
  .booking-process-section {
    border-radius: 1.2rem;
    margin: 2rem 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .booking-step-card {
    border-radius: 1.2rem;
    min-height: 260px;
  }
}

@media (max-width: 767.98px) {
  .booking-process-section {
    border-radius: 1rem;
    margin: 1.2rem 0;
    padding-left: 0;
    padding-right: 0;
  }
  .booking-process-title {
    font-size: 1.2rem;
  }
  .booking-step-card {
    border-radius: 1rem;
    min-height: 180px;
    padding: 1.2rem 0.7rem;
  }
  .booking-step-number {
    font-size: 1.3rem;
  }
  .booking-step-icon {
    width: 28px;
    height: 28px;
  }
}

/* --- Testimonial Section (Theme-matched, Responsive) --- */
.testimonial-section {
  background: #d6ff6b;
  border-radius: 2rem;
  margin: 3rem 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.testimonial-title {
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #181f13;
  letter-spacing: -0.5px;
}

.testimonial-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px 0 rgba(214,255,107,0.07);
  border: 1.5px solid #b6e94e;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(214,255,107,0.13);
}
.testimonial-quote {
  color: #232a1a;
  font-size: 1.08rem;
  font-family: var(--bs-font-main);
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial-quote-mark {
  font-size: 2.5rem;
  color: #b6e94e;
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-family: var(--bs-font-main);
  font-weight: 900;
  opacity: 0.7;
}
.testimonial-user {
  margin-top: auto;
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: #d6ff6b;
  color: #181f13;
  font-family: var(--bs-font-main);
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(214,255,107,0.10);
}
.testimonial-name {
  font-family: var(--bs-font-main);
  font-weight: 700;
  color: #181f13;
  font-size: 1.08rem;
}
.testimonial-meta {
  color: #b6e94e;
  font-size: 0.98rem;
  font-family: var(--bs-font-main);
}

@media (max-width: 991.98px) {
  .testimonial-section {
    border-radius: 1.2rem;
    margin: 2rem 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .testimonial-card {
    border-radius: 1.2rem;
    min-height: 200px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-section {
    border-radius: 1rem;
    margin: 1.2rem 0;
    padding-left: 0;
    padding-right: 0;
  }
  .testimonial-title {
    font-size: 1.2rem;
  }
  .testimonial-card {
    border-radius: 1rem;
    min-height: 160px;
    padding: 1.2rem 0.7rem;
  }
  .testimonial-avatar {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}

/* --- Site Footer (Theme-matched, Responsive) --- */
.site-footer {
  background: #181f13;
  color: #eaffb0;
  border-radius: 2rem 2rem 0 0;
  margin-top: 3rem;
  padding: 2.5rem 0 1.2rem 0;
  font-family: var(--bs-font-main);
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #d6ff6b;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 0.7rem;
}
.footer-list a {
  color: #eaffb0;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-list a:hover,
.footer-list a:focus {
  color: #b6e94e;
}
.footer-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.footer-social-icon {
  font-size: 1.6rem;
  display: inline-block;
  vertical-align: middle;
  color: #d6ff6b;
  transition: color 0.2s;
}
.footer-social a:hover .footer-social-icon,
.footer-social a:focus .footer-social-icon {
  color: #b6e94e;
}
.footer-bottom {
  text-align: center;
  color: #b6e94e;
  font-size: 0.98rem;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}
@media (max-width: 991.98px) {
  .site-footer {
    border-radius: 1.2rem 1.2rem 0 0;
    padding: 2rem 0 1rem 0;
  }
  .footer-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .site-footer {
    border-radius: 1rem 1rem 0 0;
    padding: 1.2rem 0 0.7rem 0;
  }
  .footer-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer-title {
    font-size: 1.05rem;
  }
}
 /* Change clicked/active state to white */
a.btn-primary:active,
a.btn-primary:focus {
    background-color: white !important;
    color: #181f13 !important; /* Dark text for contrast */
    border: none !important;
    box-shadow: none !important;
}

a.btn-outline-primary:active,
a.btn-outline-primary:focus {
    background-color: white !important;
    color: #181f13 !important; /* Dark text for contrast */
    border-color: white !important;
    box-shadow: none !important;
}

/* Navbar toggler button color */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--bs-accent);
  outline: 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='%23d6ff6b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* WhatsApp button styling */
.btn-whatsapp {
  background: #25D366;
  color: white !important;
  border: none;
  border-radius: 16px;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  padding: 0.75rem 2.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #128C7E;
  color: white !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:focus {
  outline: 2px solid var(--bs-accent);
  outline-offset: 2px;
}

.btn-whatsapp svg {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
}

/* Floating WhatsApp icon (responsive) */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37,211,102,0.35);
  z-index: 1000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37,211,102,0.45);
  outline: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}
@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
