html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:hover
{
  background-color: #C48C30;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem black, 0 0 0 0.25rem var(--red);
}

p {
  margin: auto;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--grey);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* review css rules */
.quote.sample {
  
}

.quote-placeholder {
  
  display: none;
  visibility: hidden;

  font-style: italic;
  color: var(--grey);
  background: var(--dark-grey);
  padding: 20px;
  border-left: 4px solid var(--red);
  border-radius: 4px;
}

/* ======================
   DARK THEME VARIABLES
====================== */
:root {
  --red: #E30613;
  --black: #0f0f0f;
  --black-light: #0d0d0d;
  --white: #ffffff;
  --grey: #b3b3b3;
  --dark-grey: #1a1a1a;
  --border-grey: #2a2a2a;

  --brand-color: #D4AF37;  /* Pas aan naar jouw kleur */
  --brand-color-hover: #C69C3A;
  --card-bg: black;
  --bg-color: transparent;
  --text-color: white;

  --bs-card-title-color: white;
  --bs-card-subtitle-color: var(--grey);
}

/* ======================
   BASE STYLES
====================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .body-content
  {
    padding: 0;
    position: relative;
    top: -70px;
  }
}

h1
{
  font-weight: 700;
}
h1, h2
{
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ======================
   HEADER / NAV
====================== */
header {
  position: relative;
  top: 0;
  z-index: 10;
  background-color: transparent;
  border-bottom: none;
}

.container {
  margin: 0 auto;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--red);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ======================
   BUTTONS
====================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--brand-color);
  color: var(--black);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--black);
}

/* ======================
   Home -> Intro
====================== */
.intro {
  padding: 3rem 0 2.5rem;
  background-color: var(--dark-grey);
  border-radius: 20px;
}

.intro-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.intro-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.intro-subtitle {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.intro-bullets {
  list-style: none;
  margin-bottom: 1.5rem;
}

.intro-bullets li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  margin-right: 0.4rem;
}

.intro-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.intro-image {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #333;
  object-position: 50% 50%;
}

@media (max-width: 768px) {
  #trialForm
  {
    border-radius:0; 
    padding:0;
    margin:0;
    padding-bottom:70px;
  }
  .intro, .intro-grid
  {
    border-radius:0;
    border-bottom-right-radius: 120px;
    padding:0;
    margin:0;
  }

   .intro-grid>.swiper
   {
    border-bottom-left-radius: 120px;
   }

  .intro-image
  {
    border-radius:0;
    padding:0;
    margin:0;
  }
}

/* ======================
   SECTIONS / CARDS
====================== */
section {
  padding: 2.5rem 0;
}

section h2 {
  margin-bottom: 1rem;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  border-radius: 0.75rem;
  border: 1px solid var(--border-grey);
  padding: 1rem;
  background-color: var(--dark-grey);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--grey);
}

/* ======================
   REVIEWS / QUOTES
====================== */
.reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(2, 3fr);
  }
}

.quote {
  border-left: 4px solid var(--red);
  padding-left: 0.75rem;
  font-size: 0.92rem;
}

.quote span {
  display: block;
  margin-top: 0.4rem;
  color: var(--grey);
  font-size: 0.85rem;
}

/* ======================
   FORMS
====================== */

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-grey);
  font-family: inherit;
  font-size: 0.9rem;
  background-color: var(--dark-grey);
  color: var(--white);
}

input::placeholder,
textarea::placeholder {
  color: var(--grey);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ======================
   FOOTER
====================== */
footer {
  background-color: #000;
  color: var(--white);
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-column {
  margin: 5px 0;
}

/* ======================
   WHATSAPP BADGE
====================== */
.whatsapp-badge {
  z-index: 10000;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ======================
   CONTACT / MAP
====================== */
#mymap {
  width: 100%;
  height: auto; /* minimum for sharp tiles */
  margin: 0 auto;
  cursor: pointer;
  border-radius: 25px;
}

#mapLink {
  display: block;
  width: 100%;
}

/* ======================
   Links
====================== */
a,
a:hover,
a:visited {
  /* color: white !important; */
  font-weight: bold !important;
}

.swiper
{
  width: 100%;
  height: 100%;
}