html, body { margin: 0; padding: 0; }

.navigation{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* hero moet onder de fixed nav beginnen */
.hero{
  min-height: 100vh;
  padding-top: 100px; /* pas aan tot exact nav hoogte */
}

.hero-bg{
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  background: url("/images/your-hero.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-inner{
  position: relative;
  z-index: 1;
}

.hero-inner{
  padding-top: calc(var(--topbar-h) + 24px);
}
h1, h2, h3, h4{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase; /* optional, for Neutra vibe */
}
:root{
  --bg:#020617;
  --panel:rgba(15,23,42,.82);
  --panel2:rgba(15,23,42,.92);
  --border:rgba(148,163,184,.18);
  --text:#f8fafc;
  --muted:rgba(226,232,240,.72);
  --accent:#00d2ff;
  --accent2:#00e89b;
  --shadow:0 24px 60px rgba(0,0,0,.55);
  --r:22px;
  --pill:999px;
  --max:1200px;
  --topbar-h: 80px; 
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(0,210,255,.10), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(0,232,155,.10), transparent 50%),
              radial-gradient(circle at 50% 120%, rgba(0,0,0,.55), transparent 60%),
              var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.container{width:100%;max-width:var(--max);margin:0 auto;padding:0 18px}
.section{padding:72px 0}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:26px;flex-wrap:wrap}
.section-title{letter-spacing:.18em;text-transform:uppercase;font-size:.95rem;color:rgba(226,232,240,.65)}
.section-subtitle{max-width:56rem;color:var(--muted);line-height:1.6}

.card{
  background: radial-gradient(circle at 0 0, rgba(0,210,255,.10), transparent 60%), var(--panel2);
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:22px;
}
.kicker{letter-spacing:.16em;text-transform:uppercase;font-size:.78rem;color:rgba(165,243,252,.9);margin-bottom:10px}
.muted{color:var(--muted)}
.list{list-style:none;margin-top:14px;display:grid;gap:10px;color:var(--muted)}
.list li::before{content:"•";margin-right:10px;color:rgba(165,243,252,.95)}

.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}

/* Topbar */
.topbar{ position: fixed; top:0; left:0; right:0; z-index:1000; }

.topbar-inner{
  margin-top:14px;
  background:rgba(2,6,23,.65);
  border:1px solid rgba(148,163,184,.16);
  backdrop-filter: blur(14px);
  border-radius: var(--pill);
  padding:10px 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.brand-logo{width:150px;height:auto;margin-left: 20px;}
.topnav{display:flex;gap:14px;flex-wrap:wrap;color:rgba(226,232,240,.7);font-size:.92rem}
.topnav a{padding:8px 10px;border-radius:999px;border:1px solid transparent}
.topnav a:hover{border-color:rgba(148,163,184,.22);background:rgba(15,23,42,.55);color:#fff}

.topbar-actions{display:flex;gap:10px;align-items:center}

/* Buttons */
.btn{
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, filter .15s ease, box-shadow .15s ease;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-top:27px !important;
  text-transform: uppercase; /* optional, for Neutra vibe */
}
.btn-lg{font-size:1rem}
.btn-primary{
  padding:10px 14px;
  color:#001018;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 18px 46px rgba(0,210,255,.35);
}

.btn-primary:hover{transform:translateY(-1px);filter:brightness(1.05);box-shadow:0 24px 60px rgba(0,210,255,.45)}
.btn-ghost{
  padding:1.5rem 2rem;
  background:rgba(15,23,42,.55);
  border-color:rgba(148,163,184,.18);
  color:rgba(226,232,240,.78);
}
.btn-ghost:hover{transform:translateY(-1px);border-color:rgba(148,163,184,.30);color:#fff}

/* Hero full page */
.hero{position:relative;min-height:92vh;display:grid;align-items:center;overflow:hidden}
.hero-bg{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(2,6,23,.15), rgba(2,6,23,.88)),
    url("/images/beach-drone.jpg");
  background-size:cover;background-position:center;
  transform:scale(1.03);
  filter:saturate(1.06) contrast(1.06);
}
.hero-inner{position:relative;z-index:2;padding:88px 0 48px}
.hero-pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(148,163,184,.22);
  background:rgba(2,6,23,.45);
  color:rgba(226,232,240,.8);
  backdrop-filter: blur(10px);
  margin-bottom:14px;
}
.hero-pill .dot{width:10px;height:10px;border-radius:999px;background:var(--accent2);box-shadow:0 0 14px rgba(0,232,155,.6)}
.hero-title{font-size:clamp(2.6rem,4.8vw,3.6rem);line-height:1.05;letter-spacing:-.04em;max-width:22ch}
.hero-title span{background:linear-gradient(135deg,#a5f3fc,#22c55e,#0ea5e9);-webkit-background-clip:text;color:transparent}
.hero-subtitle{margin-top:14px;max-width:62ch;color:rgba(226,232,240,.80);line-height:1.7;font-size:1.05rem}
.hero-actions{margin-top:20px;display:flex;gap:12px;flex-wrap:wrap}
.hero-bullets{margin-top:18px;display:flex;gap:10px;flex-wrap:wrap}
.bullet{
  padding:20px 24px;
  border-radius:999px;
  background:rgba(2,6,23,.45);
  border:1px solid rgba(148,163,184,.18);
  color:rgba(226,232,240,.78);
  backdrop-filter: blur(10px);
}

/* Scroll indicator */
.hero-scroll{position:absolute;left:50%;bottom:-90px;transform:translateX(-50%);opacity:.95}
.mouse{width:34px;height:52px;border-radius:999px;border:1px solid rgba(226,232,240,.35);display:grid;place-items:start center;padding-top:10px;background:rgba(2,6,23,.35);backdrop-filter:blur(10px)}
.wheel{width:6px;height:6px;border-radius:999px;background:#fff;opacity:.85;animation:wheel 1.3s ease-in-out infinite}
@keyframes wheel{0%{transform:translateY(0);opacity:.85}70%{transform:translateY(18px);opacity:.35}100%{transform:translateY(0);opacity:.85}}

/* Who section bigger */
.who-grid{display:grid;grid-template-columns:1.3fr .9fr;gap:18px}
.who-card h3{font-size:1.35rem;margin-bottom:10px}
.who-card p{color:var(--muted);line-height:1.75;margin-top:10px}
.who-media img{border-radius:18px;height:320px;object-fit:cover;width:100%}
.highlight{margin-top:14px;color:rgba(165,243,252,.95);font-weight:700}

/* Dest carousel */
.dest-shell{display:grid;gap:14px}
.dest-stage{position:relative;border-radius:28px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow)}
.dest-track{position:relative;min-height:520px}
.dest-slide{
  position:absolute;inset:0;opacity:0;transform:scale(1.01);
  transition:opacity .28s ease, transform .28s ease;
}
.dest-slide.is-active{opacity:1;transform:scale(1)}
.dest-slide img{width:100%;height:520px;object-fit:cover}
.dest-overlay{
  position:absolute;left:0;right:0;bottom:0;
  padding:20px 22px;
  background:linear-gradient(to top, rgba(2,6,23,.92), rgba(2,6,23,.55), transparent);
}
.dest-title{font-weight:800;font-size:1.25rem}
.dest-text{margin-top:6px;color:rgba(226,232,240,.78);max-width:70ch;line-height:1.55}

/* 4-card carousel */
.destinations-carousel {
  position: relative;
  margin-top: 3rem;
}

.destinations-viewport {
  overflow: hidden;               /* verbergt overflow */
  scroll-behavior: smooth;
}

.destinations-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 4rem;                /* ruimte voor de knoppen zoals je had */
  scrollbar-width: none;
}

.destinations-track::-webkit-scrollbar {
  display: none;
}

/* 👇 4 cards zichtbaar */
.destinations-track .destination-card {
  flex: 0 0 calc((100% - (1.5rem * 3)) / 4); /* 4 cards + 3 gaps */
  scroll-snap-align: start;
}

/* Responsive: 3 / 2 / 1 zichtbaar */
@media (max-width: 1200px) {
  .destinations-track .destination-card {
    flex-basis: calc((100% - (1.5rem * 2)) / 3);
  }
}

@media (max-width: 968px) {
  .destinations-track {
    padding: 0 3rem;
  }
  .destinations-track .destination-card {
    flex-basis: calc((100% - (1.5rem * 1)) / 2);
  }
}

@media (max-width: 640px) {
  .destinations-track {
    padding: 0 2.5rem;
  }
  .destinations-track .destination-card {
    flex-basis: 100%;
  }
}

.nav-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:999px;border:1px solid rgba(226,232,240,.25);
  background:rgba(2,6,23,.45);color:#fff;font-size:1.6rem;cursor:pointer;
  backdrop-filter: blur(10px);
}
.nav-arrow:hover{filter:brightness(1.05)}
.nav-arrow.prev{left:12px}
.nav-arrow.next{right:12px}

.dest-dots{display:flex;justify-content:center;gap:10px}
.dest-dots button{
  width:30px;height:10px;border-radius:999px;border:1px solid rgba(148,163,184,.25);
  background:rgba(2,6,23,.35);cursor:pointer;
}
.dest-dots button[aria-current="true"]{
  background:linear-gradient(90deg, rgba(0,210,255,.65), rgba(0,232,155,.65));
  border-color:rgba(226,232,240,.35);
}

/* Steps 1-2-3 */
.steps{display:grid;gap:14px}
.step{display:flex;gap:16px;align-items:flex-start}
.step-num{
  width:44px;height:44px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(0,210,255,.12);
  border:1px solid rgba(0,210,255,.22);
  color:rgba(226,232,240,.95);
  font-weight:900;
}
.step-body h3{font-size:1.2rem;margin-bottom:6px}
.step-body p{color:var(--muted);line-height:1.7}

/* Price cards */
.price .price-tag{font-size:1.35rem;font-weight:900;margin:10px 0 6px}
.price.featured{border-color:rgba(0,210,255,.35)}
.badge{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(34,197,94,.10);
  color:rgba(187,247,208,.95);
  font-size:.8rem;font-weight:800;
  margin-bottom:10px;
}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-list{margin-top:12px;display:grid;gap:10px;color:var(--muted)}
.form label{display:grid;gap:8px;margin-bottom:12px}
.form input,.form textarea{
  background:rgba(2,6,23,.70);
  border:1px solid rgba(148,163,184,.18);
  border-radius:14px;
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
.form textarea{min-height:110px;resize:vertical}
.form input:focus,.form textarea:focus{border-color:rgba(0,210,255,.65);box-shadow:0 0 0 2px rgba(0,210,255,.18)}

/* Footer */
.footer{padding:44px 0 26px;border-top:1px solid rgba(148,163,184,.14);background:rgba(2,6,23,.55)}
.footer-inner{display:grid;grid-template-columns:1.2fr 1fr auto;gap:18px;align-items:start}
.footer-logo{width:150px;height:auto;margin-bottom:10px}
.footer-links{display:grid;gap:10px;color:rgba(226,232,240,.75)}
.footer-links a:hover{color:#fff}
.footer-social{display:flex;gap:12px}
.footer-social a{
  width:40px;height:40px;border-radius:999px;
  display:grid;place-items:center;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(15,23,42,.55);
}
.footer-social svg{width:18px;height:18px}
.footer-bottom{margin-top:18px;display:flex;justify-content:space-between;align-items:center;gap:10px}
.linklike{background:transparent;border:0;color:rgba(226,232,240,.75);cursor:pointer}
.linklike:hover{color:#fff}

/* Responsive */
@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .who-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .dest-track{min-height:440px}
  .dest-slide img{height:440px}
  .topnav{display:none}
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 13, 26, 0.85) 0%, rgba(10, 22, 40, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 212, 0.15);
  border: 1px solid rgba(0, 212, 212, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00d4d4;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #050d1a;
  color: #ffffff;
}

.App {
  min-height: 100vh;
  background-color: #050d1a;
}

html {
  scroll-behavior: smooth;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a1628;
}

::-webkit-scrollbar-thumb {
  background: #1a2e47;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a4060;
}

.who-we-are {
  padding: 6rem 2rem;
  background: #050d1a;
}

.who-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.who-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.who-card {
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.who-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 212, 0.3);
}

.who-image {
  flex: 0 0 300px;
  border-radius: 16px;
  overflow: hidden;
}

.who-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.who-text {
  flex: 1 1;
}

.who-text-full {
  flex: 1 1;
}

.who-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(0, 212, 212, 0.8);
  margin-bottom: 0.75rem;
}

.who-subheading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.who-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.who-highlight {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #00d4d4;
  font-weight: 500;
  font-style: italic;
  margin-top: 1.5rem;
}

.who-features {
  list-style: none;
  margin-top: 1.5rem;
}

.who-features li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.who-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00d4d4;
}

@media (max-width: 968px) {
  .who-we-are {
    padding: 4rem 1.5rem;
  }

  .who-card {
    flex-direction: column;
    padding: 2rem;
  }

  .who-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .who-image img {
    height: 300px;
  }

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

  .who-subheading {
    font-size: 1.5rem;
  }
}

.destinations {
  padding: 6rem 2rem;
  background: rgba(10, 22, 40, 0.3);
}

.destinations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-carousel {
  position: relative;
  margin: 3rem 0;
}


.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 212, 212, 0.2);
}

.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.9) 0%, rgba(5, 13, 26, 0.3) 60%, transparent 100%);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  z-index: 1;
}

.destination-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.destination-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 212, 212, 0.2);
  border: 1px solid rgba(0, 212, 212, 0.4);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 212, 212, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: #00d4d4;
  transform: scale(1.3);
}

@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 968px) {
  .destinations {
    padding: 4rem 1.5rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    padding: 0 2.5rem;
  }

  .destination-card {
    height: 300px;
  }
}

.services {
  padding: 6rem 2rem;
  background: #050d1a;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 212, 0.3);
  box-shadow: 0 10px 40px rgba(0, 212, 212, 0.1);
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(0, 212, 212, 0.9);
  background: rgba(0, 212, 212, 0.15);
  border: 1px solid rgba(0, 212, 212, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.service-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.service-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.75rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.service-features li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.service-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00d4d4;
  font-size: 1.2rem;
}

.service-footer {
  font-size: 0.95rem;
  color: rgba(0, 212, 212, 0.8);
  font-style: italic;
}

@media (max-width: 968px) {
  .services {
    padding: 4rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem;
  }
}

.how-it-works {
  padding: 6rem 2rem;
  background: rgba(10, 22, 40, 0.3);
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-carousel {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.step-content {
  flex: 1 1;
  max-width: 900px;
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 212, 0.3);
}

.step-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.step-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 13, 26, 0.9) 0%, transparent 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-logo {
  width: 60px;
  height: 60px;
  background: #00d4d4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.5rem;
}

.step-domain {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.step-info {
  padding: 2.5rem;
}

.step-number {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(0, 212, 212, 0.8);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.step-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.step-dot {
  background: rgba(26, 46, 71, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.step-dot:hover {
  background: rgba(26, 46, 71, 0.8);
  border-color: rgba(0, 212, 212, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.step-dot.active {
  background: rgba(0, 212, 212, 0.2);
  border-color: rgba(0, 212, 212, 0.5);
  color: #00d4d4;
}

.how-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: rgba(0, 212, 212, 0.1);
  border-color: rgba(0, 212, 212, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 968px) {
  .how-it-works {
    padding: 4rem 1.5rem;
  }

  .steps-carousel {
    flex-direction: column;
  }

  .carousel-btn {
    position: static;
    transform: none;
  }

  .carousel-btn.prev {
    order: -1;
  }

  .carousel-btn.next {
    order: 1;
  }

  .step-content {
    order: 0;
  }

  .step-image {
    height: 300px;
  }

  .step-info {
    padding: 2rem;
  }

  .step-title {
    font-size: 1.5rem;
  }

  .step-indicators {
    flex-direction: column;
    align-items: center;
  }

  .step-dot {
    width: 100%;
    max-width: 300px;
  }
}

.packages {
  padding: 6rem 2rem;
  background: #050d1a;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 212, 0.3);
  box-shadow: 0 10px 40px rgba(0, 212, 212, 0.15);
}

.package-card.featured {
  border-color: rgba(0, 212, 212, 0.4);
  background: rgba(15, 35, 60, 0.7);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00d4d4 0%, #00b8b8 100%);
  color: #0a1628;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 212, 212, 0.4);
}

.package-header {
  margin-bottom: 2rem;
}

.package-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.package-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.package-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.price-old {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.discount-badge {
  display: inline-block;
  background: rgba(0, 212, 212, 0.15);
  border: 1px solid rgba(0, 212, 212, 0.3);
  color: #00d4d4;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.price-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.package-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.package-features li svg {
  color: #00d4d4;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-button {
  width: 100%;
  background: rgba(26, 46, 71, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.package-button:hover {
  background: rgba(26, 46, 71, 1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.package-button.primary {
  background: linear-gradient(135deg, #00d4d4 0%, #00b8b8 100%);
  color: #0a1628;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

.package-button.primary:hover {
  box-shadow: 0 6px 25px rgba(0, 212, 212, 0.4);
}

@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 968px) {
  .packages {
    padding: 4rem 1.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 2rem;
  }
}

.contact {
  padding: 6rem 2rem;
  background: rgba(10, 22, 40, 0.3);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.contact-item a {
  color: #00d4d4;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #00ffa3;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.contact-form {
  background: rgba(15, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  font-family: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 212, 212, 0.5);
  background: rgba(10, 22, 40, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: linear-gradient(135deg, #00d4d4 0%, #00b8b8 100%);
  color: #0a1628;
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
  margin-top: 0.5rem;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 212, 0.5);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 968px) {
  .contact {
    padding: 4rem 1.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

.footer {
  background: rgba(5, 13, 26, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  color: #00d4d4;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
  padding: 0;
  font-family: inherit;
}

.footer-link:hover {
  color: #00d4d4;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer-text:first-of-type {
  margin-top: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(26, 46, 71, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 212, 212, 0.2);
  border-color: rgba(0, 212, 212, 0.4);
  color: #00d4d4;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
  .footer {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}


.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 0;
}

.navigation.scrolled {
  background-color: rgba(10, 22, 40, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-icon {
  color: #00d4d4;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #00d4d4;
}

.nav-language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-language:hover {
  color: #00d4d4;
}

.nav-cta {
  background: linear-gradient(135deg, #00d4d4 0%, #00b8b8 100%);
  color: #0a1628;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 212, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 212, 0.4);
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-language {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    width: 100%;
    margin-top: 1rem;
  }
}



.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #00d4d4 0%, #00ffa3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 30, 50, 0.6);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 212, 0.2);
  color: #00d4d4;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 212, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4d4 0%, #00b8b8 100%);
  color: #0a1628;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 212, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 212, 212, 0.5);
}

.btn-secondary {
  background: rgba(26, 46, 71, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(26, 46, 71, 1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.bullet {
  color: #00d4d4;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: relative;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* LANGUAGE SWITCH */
  .lang-switch { position: relative; font-size: 0.78rem; }

  .lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.95);
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    transition: background var(--transition-fast), color var(--transition-fast),
      border-color var(--transition-fast), box-shadow var(--transition-fast),
      transform var(--transition-fast);
  }

  .lang-trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(148, 163, 184, 0.9);
    color: var(--text);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
  }

  .lang-current { text-transform: uppercase; letter-spacing: 0.06em; }
  .lang-chevron { font-size: 0.7rem; opacity: 0.7; }

  .lang-current-flag,
  .lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  }

  .lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.4rem);
    min-width: 170px;
    padding: 0.35rem 0;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 40;
  }

  .lang-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

  .lang-option {
    width: 100%;
    padding: 0.45rem 0.9rem;
    border: none;
    background: transparent;
    color: var(--muted);
    text-align: left;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background var(--transition-fast), color var(--transition-fast);
  }

  .lang-option-text { flex: 1; }
  .lang-option-code { opacity: 0.8; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em; }

  .lang-option:hover { background: rgba(15, 23, 42, 0.95); color: var(--text); }

  .lang-option.lang-active {
    color: #ecfdf5;
    background: radial-gradient(circle at 0 0, var(--accent-soft), transparent 60%);
  }

.partners {
  padding: 4rem 2rem;
  background: rgba(10, 22, 40, 0.5);
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.partners-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.partners-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.partner-badge {
  background: rgba(26, 46, 71, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.partner-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 212, 0.3);
  background: rgba(26, 46, 71, 0.8);
}

@media (max-width: 768px) {
  .partners {
    padding: 3rem 1.5rem;
  }
}

/* Destinations: buttons naast (niet over) de cards */
.destinations-carousel{
  position: relative;
}

/* geef ruimte links/rechts zodat cards niet onder de knoppen komen */
.destinations-viewport{
  padding: 0 64px; /* ruimte voor buttons */
}

.destinations-track{
  padding: 0;      /* haal de oude padding weg als je die nog had */
}

/* buttons “in de marge” links/rechts */
.destinations-carousel .carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.destinations-carousel .carousel-btn.prev{ left: 8px; }
.destinations-carousel .carousel-btn.next{ right: 8px; }

/* op mobiel: minder padding */
@media (max-width: 640px){
  .destinations-viewport{ padding: 0 52px; }
}
/* track moet horizontaal kunnen schuiven */
.destinations-grid,
.destinations-track{
  display: flex;
  gap: 24px;
  transition: transform .35s ease;
  will-change: transform;
}

.destinations-viewport{ overflow: hidden; }
.destination-card{ flex: 0 0 calc((100% - 24px * 3) / 4); } /* 4 zichtbaar */

/* Destinations carousel layout */
.destinations-carousel{
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 50px; /* space for buttons */
  align-items: center;
  gap: 12px;
}



.destinations-track{
  gap: 18px;
  scroll-behavior: smooth;
}


/* buttons in their own columns (not overlay) */
.destinations-carousel .carousel-btn{
  position: static;
  transform: none;
}

/* dots styling */
.carousel-dots .dot[aria-current="true"],
.carousel-dots .dot.active{
  background: #00d4d4; /* of jouw gradient */
}

.destinations-viewport { overflow: hidden; }
.destinations-track { display:flex; transition: transform .35s ease; }

/* DESTINATIONS carousel layout */
#destinationsCarousel {
  positio/* ===== DESTINATIONS: 4-card carousel (translateX) ===== */
#destinationsCarousel {
  display: grid;
  grid-template-columns: 50px 1fr 50px; /* knoppen naast viewport */
  align-items: center;
  gap: 12px;
}

#destinationsCarousel .destinations-viewport {
  overflow: hidden;
  width: 100%;
}

#destinationsCarousel .destinations-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform .35s ease;
}

/* 4 cards zichtbaar (desktop) */
#destinationsCarousel .destination-card {
  flex: 0 0 calc((100% - 24px * 3) / 4);
  min-width: 0;
}

/* tablet: 2 cards */
@media (max-width: 968px) {
  #destinationsCarousel {
    grid-template-columns: 44px 1fr 44px;
  }
  #destinationsCarousel .destination-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* mobiel: 1 card */
@media (max-width: 640px) {
  #destinationsCarousel {
    grid-template-columns: 40px 1fr 40px;
  }
  #destinationsCarousel .destination-card {
    flex: 0 0 100%;
  }
}

/* knoppen in eigen kolom (niet overlay) */
#destinationsCarousel .carousel-btn {
  position: static;
  transform: none;
}