:root {
  --bee-yellow: #ffd700;
  --bee-orange: #ff8c00;
  --bee-dark: #1a1a2e;
  --bee-purple: #16213e;
  --bee-light: #f8f9fa;
  --bee-gradient: linear-gradient(
    135deg,
    #ffd700 0%,
    #ff8c00 50%,
    #ff6b35 100%
  );
  --bee-neon: #00ffff;
  --bee-pink: #ff0080;
  --bee-success: #28a745;
  --bee-danger: #dc3545;
  --bee-info: #17a2b8;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: "Inter", sans-serif;
  background: var(--bee-dark);
  color: #fff;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bee-yellow);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  box-shadow: 0 0 20px var(--bee-yellow);
}

.cursor-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bee-orange);
  opacity: 0.7;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--bee-yellow);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10%,
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Navbar */
.navbar-bb {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(26, 26, 46, 0.9);
  box-shadow: 0 2px 24px rgba(44, 62, 80, 0.1);
  backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.navbar-bb .container {
  max-width: 1300px;
  margin: 0 auto;
}

.navbar-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: var(--bee-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  transition: filter 0.2s;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 8px 20px;
  border-radius: 32px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.navbar-links li a:hover,
.navbar-links li a:focus {
  background: var(--bee-gradient);
  color: var(--bee-dark);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.navbar-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--bee-yellow);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-bb.open .navbar-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-bb.open .navbar-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar-bb.open .navbar-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--bee-dark) 0%,
    var(--bee-purple) 100%
  );
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 80%,
      var(--bee-pink) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, var(--bee-neon) 0%, transparent 50%);
  opacity: 0.1;
  animation: pulse-bg 4s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.3;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.logo-text {
  font-size: 3rem;
  font-weight: 900;
  background: var(--bee-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes glow-text {
  0% {
    filter: drop-shadow(0 0 20px var(--bee-yellow));
  }
  100% {
    filter: drop-shadow(0 0 40px var(--bee-orange));
  }
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.5s forwards;
}

.hero .lead {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: slideInUp 1s ease-out 1s forwards;
}

.hero-badges {
  opacity: 0;
  animation: slideInUp 1s ease-out 1.2s forwards;
}

.hero-badges .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-right: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Main Service Section */
.main-service {
  background: var(--bee-dark);
  padding: 6rem 0;
  position: relative;
}

.main-service-icon {
  font-size: 8rem;
  opacity: 0.1;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Button Styles */
.btn-bee {
  background: var(--bee-gradient);
  color: var(--bee-dark);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  cursor: pointer;
}

.btn-bee::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-bee:hover::before {
  left: 100%;
}

.btn-bee:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s ease;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bee-gradient);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3);
}

.feature-card.featured {
  border: 2px solid var(--bee-yellow);
  background: linear-gradient(
    145deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 140, 0, 0.05)
  );
}

.feature-highlight {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bee-gradient);
  color: var(--bee-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
  animation: bounce 2s infinite;
}

/* Sections */
.features,
.portfolio-section,
.combo-benefits,
.company-info,
.contact-section {
  background: var(--bee-dark);
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--bee-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Combo Benefits */
.combo-benefits {
  background: linear-gradient(
    135deg,
    var(--bee-purple) 0%,
    var(--bee-dark) 100%
  );
}

.combo-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.combo-card.popular {
  border: 2px solid var(--bee-yellow);
  transform: scale(1.05);
}

.combo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3);
}

.combo-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.combo-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.combo-price {
  margin-bottom: 1rem;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1.2rem;
}

.new-price {
  color: var(--bee-yellow);
  font-size: 2rem;
  font-weight: 800;
  margin-left: 0.5rem;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--bee-gradient);
  color: var(--bee-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.combo-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.combo-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.combo-saving {
  text-align: center;
  background: var(--bee-success);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Process Section */
.process-section {
  background: linear-gradient(
    135deg,
    var(--bee-purple) 0%,
    var(--bee-dark) 100%
  );
  padding: 6rem 0;
  position: relative;
}

.process-step {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  transform: translateX(-100px);
  opacity: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--bee-gradient);
  animation: slide-down 2s ease-in-out infinite;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.step-number {
  background: var(--bee-gradient);
  color: var(--bee-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Company Info */
.company-info {
  background: var(--bee-dark);
}

.company-details {
  margin-top: 2rem;
}

.detail-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bee-yellow);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #ccc;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--bee-dark) 0%,
    var(--bee-purple) 100%
  );
}

.contact-info {
  padding: 2rem;
}

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon {
  font-size: 2rem;
  margin-right: 1rem;
  width: 60px;
  text-align: center;
}

.method-info {
  display: flex;
  flex-direction: column;
}

.method-info strong {
  color: var(--bee-yellow);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--bee-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  color: white;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Morphing Background */
.morphing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(45deg, var(--bee-yellow), var(--bee-orange));
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  animation: morph 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes morph {
  0%,
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 90% 90%, 10% 95%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 90%);
  }
  75% {
    clip-path: polygon(0 0, 100% 0, 95% 80%, 5% 100%);
  }
}

/* Wave Animation */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFD700"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23FFD700"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFD700"/></svg>')
    repeat-x;
  animation: wave 10s linear infinite;
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1200px;
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch1 0.5s infinite;
  color: var(--bee-neon);
  z-index: -1;
}

.glitch::after {
  animation: glitch2 0.5s infinite;
  color: var(--bee-pink);
  z-index: -2;
}

@keyframes glitch1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitch2 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-2px, 2px);
  }
  80% {
    transform: translate(-2px, -2px);
  }
}

/* Footer */
footer {
  background: var(--bee-dark);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bee-gradient);
  animation: loading 3s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--bee-yellow);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.social-links a {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.company-credentials {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 990px) {
  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .navbar-bb.open .navbar-links {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .logo-text {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero .lead {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .combo-card {
    margin-bottom: 2rem;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .main-service-icon {
    font-size: 5rem;
  }

  .process-step {
    padding: 2rem 1.5rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .btn-bee {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .navbar-links {
    gap: 1rem;
  }

  .hero-badges .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease-out;
}

.slide-in-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.8s ease-out;
}

/* Scroll Animations */
.feature-card,
.process-step,
.combo-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

/* Clean Contact Form */
.contact-form {
  position: relative;
  background: rgba(26, 26, 46, 0.75);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #bbb;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #eee;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--bee-neon);
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 6px;
  background: var(--bee-gradient);
  background-size: 200% 200%;
  color: var(--bee-dark);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s;
}

.contact-form button:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}

.contact-form button:active {
  transform: translateY(0);
}

/* Portfolio afbeelding */
.portfolio-section .feature-card img {
  max-width: 100%; /* nooit breder dan de container */
  height: auto; /* behoud verhoudingen */
  display: block; /* blokniveau, zodat margin werkt */
  margin: 0 auto 1.5rem; /* centreren en wat ruimte eronder */
  border-radius: 12px; /* subtiel afgerond */
  object-fit: cover; /* vult de container netjes indien nodig */
}
