@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #f7f7f7;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  word-break: break-word;
  overflow-wrap: break-word;
}


/* ===================================
   FIXED CTA BUTTON (Top Right)
   =================================== */

.cta-button {
  position: fixed;
  top: max(15px, env(safe-area-inset-top));
  right: max(15px, env(safe-area-inset-right));
  z-index: 1000;
  
  background: #ffffff;
  color: #000;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  padding: 10px 16px;
  
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #ec8c23;
  color: #000;
  box-shadow: 0 6px 20px rgba(236, 140, 35, 0.3);
  transform: translateY(-2px);
}

.cta-button:active {
  background: #000000;
  color: #ffffff;
  border: 1px solid #fffdfd;
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 12px;
    padding: 8px 12px;
    top: max(30px, env(safe-area-inset-top));
    right: max(30px, env(safe-area-inset-right));
  }
}


/* ===================================
   HERO SECTION WITH PARALLAX - FIXED FOR MOBILE
   =================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("../images/back_parralax.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
  animation: heroBackgroundZoom 1.4s ease-out forwards;
  will-change: transform, filter;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes heroBackgroundZoom {
  0% {
    filter: brightness(0);
    transform: scale3d(1.15, 1.15, 1);
  }
  60% {
    filter: brightness(0);
    transform: scale3d(1.05, 1.05, 1);
  }
  100% {
    filter: brightness(1);
    transform: scale3d(1, 1, 1);
  }
}

.hero-front-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(2.5rem, 8vh, 6rem);
}

.hero-text-group {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  margin-bottom: 0rem;
  opacity: 0;
  animation: heroTextIn 1s ease-out 0.9s forwards;
  gap: 0;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: clamp(-0.5px, 0.2vw, 2px);
  margin: 0;
  text-align: center;
  white-space: normal;
  line-height: 1.1;
  word-spacing: 0.1em;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(0.3rem, 2vw, 0.8rem);
  color: #ec8c23;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: right;
  margin: -0.5rem 0 0 0;
  white-space: normal;
  line-height: 0.9;
  width: 100%;
  padding-right: 0;
}

.hero-person-image {
  position: absolute;
  bottom: clamp(-10vh, -4vw, -5vh);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 60vw, 800px);
  max-height: 97vh;
  height: auto;
  object-fit: contain;
  display: block;
  z-index: 3;
  opacity: 0;
  animation: heroPersonIn 1.4s ease-out 0s forwards;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    filter: brightness(0);
    transform: scale3d(1.3, 1.3, 1) translateY(50px);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: scale3d(1, 1, 1) translateY(0);
  }
}

@keyframes heroPersonIn {
  0% {
    opacity: 0;
    filter: brightness(0);
    transform: translateX(-50%) translateY(80px) scale3d(1.15, 1.15, 1);
  }
  60% {
    opacity: 0.1;
    filter: brightness(0.2);
    transform: translateX(-50%) translateY(40px) scale3d(1.08, 1.08, 1);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateX(-50%) translateY(0) scale3d(1, 1, 1);
  }
}

@media (max-width: 768px) {
  .hero-front-elements {
    padding-top: clamp(2rem, 8vh, 5rem);
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 5rem);
    letter-spacing: 0;
  }

  .hero-subtitle {
    font-size: clamp(0.55rem, 2vw, 0.75rem);
    margin-top: 0.3rem;
  }

  .hero-person-image {
    bottom: clamp(0vh, -10vw, 10vh);
    width: clamp(280px, 80vw, 700px);
    max-height: 80vh;
  }
}

@media (max-width: 480px) {
  .hero-front-elements {
    padding-top: clamp(3rem, 15vh, 10rem);
  }

  .hero-title {
    font-size: clamp(2rem, 13vw, 5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.5rem, 3.5vw, 0.65rem);
    margin-top: 0.25rem;
  }

  .hero-person-image {
    bottom: clamp(0vh, -10vw, 10vh);
    width: clamp(250px, 90vw, 600px);
    max-height: 80vh;
  }
}

/* ===================================
   INTRO SECTION
   =================================== */

.intro {
  padding: clamp(0.5rem, 1.5vw, 1.5rem) clamp(2rem, 5vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.intro-image {
  width: 100%;
  height: 100%;
  display: flex;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.intro h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  color: #000;
}

.intro p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #000;
}

.intro-cta {
  display: inline-block;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.3s ease;
  font-size: clamp(12px, 3vw, 16px);
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-cta:hover {
  background: #ec8c23;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .intro-content {
    text-align: center;
    order: -1;
    align-items: center;
  }
  
  .intro-image {
    order: 1;
  }
}


/* ===================================
   TEAM SECTION
   =================================== */

.team {
  padding: clamp(0.5rem, 1.5vw, 1.5rem) clamp(2rem, 5vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.team h2 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 1000;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  color: #ec8c23;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team > p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: #000;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.team-member-image {
  position: relative;
  width: clamp(300px, 70vw, 500px);
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.team-member-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

.team-member-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.717);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member-overlay p {
  color: #000000;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
}

.team-member-image:hover img {
  filter: brightness(0.2);
}

.team-member-image:hover .team-member-overlay {
  opacity: 1;
}

.team-member-info {
  text-align: center;
}

.team-member-info h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.team-member-info p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #666;
}

@media (max-width: 1024px) {
  .team-member {
    align-items: flex-start;
  }

  .team-member-image {
    width: 100%;
    cursor: default;
  }

  .team-member-image img {
    max-height: 66vh;
    object-fit: contain;
  }

  .team-member-overlay {
    position: relative;
    background: transparent;
    opacity: 1;
    padding: 1.5rem 0 0 0;
    inset: auto;
    display: flex;
    flex-direction: column;
  }

  .team-member-overlay::before {
    content: "Ron Beurskens";
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 0.3rem;
    font-style: normal;
    order: 1;
  }

  .team-member-overlay::after {
    content: "Oprichter & Sportfysiotherapeut";
    display: block;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #666;
    margin-bottom: 1rem;
    font-style: normal;
    order: 2;
  }

  .team-member-overlay p {
    color: #333;
    text-align: left;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    order: 3;
  }

  .team-member-image:hover img {
    filter: none;
  }

  .team-member-image:hover .team-member-overlay {
    opacity: 1;
  }

  .team-member-info {
    display: none;
  }
}


/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 5vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  background: #f7f7f7;
}

.services-header {
  margin-bottom: 0;
}

.services-header h3 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 1000;
  color: #ec8c23;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.services-separator {
  width: 100vw;
  height: 1px;
  background: #000;
  margin: 0.5rem 0;
  margin-left: calc(-1 * clamp(1rem, 5vw, 3rem));
  margin-right: calc(-1 * clamp(1rem, 5vw, 3rem));
}

.services-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-end;
  margin: 0;
}

.services-image {
  width: 100%;
}

.services-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-text {
  text-align: left;
}

.services-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: #000;
}

.services-mission {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  text-align: left;
}

.services-mission .mission-heading {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 1000;
  margin: 0 0 1rem 0;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-mission p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: #000;
  margin: 0 0 1rem 0;
}

.services-missie {
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  background: #fff;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #e5e5e5;
  border-left: 4px solid #ec8c23;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.services-missie h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  margin: 0 0 0.75rem 0;
  letter-spacing: 1px;
}

.services-missie p {
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.7;
  margin: 0 0 0.75rem 0;
}

.services h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 1000;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  background: #000;
  border: 1px solid #000;
}

.service-card {
  background: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: #e5e5e5;
}

.service-card h4 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #000;
}

.service-card p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin: 0;
  color: #333;
}

.orange-text {
  color: #ec8c23;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .services-text {
    text-align: left;
  }
  
  .services-cards {
    grid-template-columns: 1fr;
  }
}


/* ===================================
   BLOG SECTION
   =================================== */

.blog {
  padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 5vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
}

.blog h2 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 1000;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  color: #ec8c23;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.blog-image-container {
  background: url('../images/blog.webp') no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  position: relative;
}

@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }
  
  .blog-image-container {
    min-height: 400px;
  }
}

.blog-post {
  background: #f7f7f7;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post-image {
  width: clamp(150px, 25vw, 250px);
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post-image {
    width: 100%;
  }
}

.blog-post h3 {
  font-size: clamp(1rem, 2.1vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222;
}

.blog-post time {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.blog-post p {
  font-size: clamp(0.8rem, 1.8vw, 0.8rem);
  line-height: 1.1;
  color: #555;
  margin-bottom: 0;
}

.blog-cta {
  display: inline-block;
  padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(185, 185, 185, 0.4);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
  text-decoration: none;
  align-self: flex-start;
}

.blog-cta:hover {
  background: #fff;
  color: #222;
}

.blog-image-text {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  align-self: flex-start;
}


/* ===================================
   REVIEWS SECTION
   =================================== */

.reviews {
  padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 5vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  background: #f7f7f7;
}

.reviews-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.reviews-label {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #ec8c23;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.reviews-header h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  color: #222;
}

.reviews-header p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #666;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stars {
  font-size: 1.4rem;
  color: #ec8c23;
  letter-spacing: 3px;
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.review-card blockquote {
  margin-bottom: 2rem;
  font-style: italic;
}

.review-card blockquote p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.7;
  color: #555;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: #222;
  margin-bottom: 0.2rem;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.author-title {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #999;
}


/* ===================================
   PARTNERS SECTION
   =================================== */

.partners {
  padding: clamp(1rem, 3vw, 3rem) clamp(2rem, 5vw, 3rem);
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  text-align: center;
}

.partners h2 {
  font-size: clamp(1rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  color: #222;
  white-space: nowrap;
}

.partners-subtitle {
  font-size: clamp(0.7rem, 2vw, 1.1rem);
  color: #666;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  white-space: nowrap;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 3vw, 3rem);
  flex-wrap: nowrap;
  overflow-x: auto;
}

.partners-logos img {
  max-width: clamp(50px, 12vw, 150px);
  min-width: 50px;
  height: auto;
  opacity: 1;
  flex-shrink: 1;
}

.partners-logos img:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}


/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 3rem);
  background: #1a1a1a;
  color: #fff;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.contact-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo img {
  width: clamp(80px, 10vw, 120px);
  height: auto;
}

.contact-column {
  display: flex;
  flex-direction: column;
}

.contact h3 {
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #ec8c23;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact address {
  font-style: normal;
  line-height: 1.7;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #ccc;
}

/* Unified text sizing in contact section (colors stay as defined per element) */
.contact p,
.contact address,
.contact-methods,
.contact dl,
.contact dt,
.contact dd,
.contact-business {
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  line-height: 1.7;
}

.contact-cta p {
  color: #ccc;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.contact-methods {
  margin-bottom: 1.5rem !important;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem) !important;
}

.contact-methods a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-methods a:hover {
  color: #ec8c23;
}

.tarieven-link {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #ec8c23;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
  width: fit-content;
}

.tarieven-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ec8c23;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tarieven-link:hover::after {
  transform: scaleX(1);
}

.contact-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: fit-content;
}

.contact-btn:hover {
  background: #ec8c23;
  color: #fff;
  transform: translateY(-2px);
}

.contact dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1rem;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.contact dt {
  font-weight: 600;
  color: #fff;
}

.contact dd {
  margin: 0;
  color: #ccc;
}

.contact-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-end;
  border-top: 1px solid #333;
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.contact-footer-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.back-to-top {
  color: #ec8c23;
  font-size: 2rem;
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.back-to-top:hover {
  color: #fff;
}

.contact-business {
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  line-height: 1.7;
  color: #999;
}

.contact-business p {
  margin: 0 0 0.8rem 0;
}

.copyright {
  color: #666;
  margin-top: 0.5rem;
}

.contact-social {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  align-items: center;
}

.contact-social a {
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #fff;
}

.contact-social a:hover {
  background: #ec8c23;
  border-color: #ec8c23;
}

.contact-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: fill 0.3s ease;
}

.contact-social a:hover svg {
  fill: #000;
}

@media (max-width: 1024px) {
  .contact-main {
    grid-template-columns: auto 1fr;
  }
  
  .contact-column {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .contact-main {
    grid-template-columns: 1fr;
  }
  
  .contact-footer {
    grid-template-columns: 1fr;
  }
}


/* ===================================
   BOTTOM NAVIGATION
   =================================== */

.bottom-nav {
  position: fixed;
  bottom: max(clamp(10px, 2vw, 20px), env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 1rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.bottom-nav-content {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  padding: clamp(8px, 1vw, 10px) clamp(12px, 2vw, 15px);
  position: relative;
  gap: 0;
  pointer-events: auto;
}

.nav-slider {
  position: absolute;
  background: #000000;
  border-radius: 999px;
  height: clamp(44px, 8vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease;
  z-index: 1;
  left: 0;
  width: 0;
}

.nav-item {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 700;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 28px);
  border-radius: 999px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  cursor: pointer;
  color: #000;
  pointer-events: auto;
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  margin: 0;
  display: none;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .bottom-nav {
    bottom: max(clamp(8px, 1.5vw, 15px), env(safe-area-inset-bottom));
    padding: 0 0.5rem;
  }

  .bottom-nav-content {
    padding: 6px 8px;
  }

  .nav-item {
    font-size: clamp(10px, 1.8vw, 13px);
    padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2.5vw, 16px);
  }

  .nav-slider {
    height: clamp(40px, 6vw, 48px);
  }
}


/* ===================================
   FOOTER LEGAL SECTION
   =================================== */

.footer-legal {
  background: #1a1a1a;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(2rem, 5vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #999;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.footer-link {
  color: #ccc;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ec8c23;
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    text-align: center;
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .footer-legal {
    padding-bottom: clamp(5rem, 12vw, 8rem);
  }
}
