/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

:root {
  --primary-dark: #112b28;
  --primary-medium: #104c39;
  --primary-light: #157454;
  --secondary: #dec663;
  --accent: #34a36f;
  --dark-bg: #0f1613;
  --medium-bg: #16211b;
  --text-light: #ffffff;
  --text-medium: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--primary-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header Styles */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 1rem;
  background: rgba(15, 22, 19, 0.8);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo img {
  height: 3.5rem;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(15, 22, 19, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo img {
  height: 2.8rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav ul li a:hover {
  color: var(--secondary);
}

.nav ul li a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002; /* Make sure this is high enough */
  position: relative; /* Add position relative */
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--dark-bg) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100" stroke="%23157454" stroke-width="0.5" stroke-opacity="0.1"/><path d="M100,0 L0,100" stroke="%23157454" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.heroimg {
  width: 40%;
  position: relative;
  z-index: 2;
}

.heroimg img {
  width: 80%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.herotext {
  width: 60%;
  text-align: left;
  z-index: 2;
}

.herotext h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.herotext h1::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 0;
}

.herotext p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: var(--text-medium);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(222, 198, 99, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(222, 198, 99, 0.4);
}

/* Waarom AIS Section */
.diensten {
  background: linear-gradient(
    0deg,
    var(--medium-bg) 0%,
    var(--primary-dark) 100%
  );
  padding: 6rem 0;
  position: relative;
}

.diensten::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%23ffffff" fill-opacity="0.05"/></svg>');
}

.diensten h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.diensten h1::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.dienst-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.dienst {
  flex: 1;
  min-width: 280px;
  background: var(--primary-medium);
  border-radius: 15px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dienst::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: var(--secondary);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.dienst:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.dienst:hover::before {
  transform: scaleX(1);
}

.dienst svg {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: block;
  color: var(--secondary);
  transition: all 0.4s ease;
}

.dienst:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.dienst h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.dienst p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.4s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
}

.dienst:hover p {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
}

/* About Section */
.about {
  background-color: var(--medium-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.05;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.about h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  max-width: 220px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.about-photo:hover {
  transform: scale(1.03) rotate(2deg);
}

.about-text {
  flex: 1;
}

.about-text .intro {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  color: var(--text-medium);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--secondary);
}

.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.usp {
  background: var(--primary-medium);
  padding: 1.8rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.usp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  top: 0;
  left: 0;
}

.usp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.usp i {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.usp:hover i {
  transform: scale(1.1);
}

.usp h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.usp p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Services Section */
.services {
  background-color: var(--dark-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  opacity: 0.05;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.service-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service {
  background: linear-gradient(
    145deg,
    var(--primary-medium) 0%,
    var(--primary-dark) 100%
  );
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.service::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: all 0.6s ease;
  transform: scale(0);
}

.service:hover::before {
  opacity: 0.1;
  transform: scale(1);
}

.service:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service i {
  font-size: 2.6rem;
  color: var(--secondary);
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.service:hover i {
  transform: scale(1.1);
  color: var(--text-light);
}

.service h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta {
  margin-top: 4rem;
  text-align: center;
}

.btn-contact {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(222, 198, 99, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(222, 198, 99, 0.4);
}

.btn-contact:hover::before {
  width: 100%;
}

/* Contact Section - Updated Styles */
.contact {
  background-color: var(--medium-bg);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23ffffff" fill-opacity="0.03"/></svg>');
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.contact h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-form {
  background: rgba(16, 76, 57, 0.3);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(222, 198, 99, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: var(--secondary);
  color: var(--dark-bg);
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(222, 198, 99, 0.2);
}

.contact-form button:hover {
  background-color: #e6ce6a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(222, 198, 99, 0.3);
}

.contact-info {
  background: rgba(16, 76, 57, 0.3);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 600px;
  margin: 2rem auto 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-medium);
  font-size: 1rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info i {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-info p:hover i {
  background: var(--secondary);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.contact-info a {
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: var(--secondary);
}

/* Contact Form Status Styling */
#formStatus {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-weight: 500;
}

.success-message {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.error-message {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid #f44336;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-medium);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll To Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: var(--secondary);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 2rem;
}

.scroll-top:hover {
  background: #e6ce6a;
  transform: translateY(-3px);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles - Complete Redesign */

/* Large Screens */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }

  .herotext h1 {
    font-size: 3.2rem;
  }

  .dienst-grid {
    gap: 1.5rem;
  }
}

/* Medium Screens - Tablets */
@media (max-width: 992px) {
  .herotext h1 {
    font-size: 2.8rem;
  }

  .herotext p {
    font-size: 1.1rem;
  }

  .hero .container {
    gap: 2rem;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }

  .about-photo {
    max-width: 200px;
  }

  .about-text .intro {
    padding-left: 0;
    border-left: none;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(21, 116, 84, 0.1);
    text-align: center;
  }

  .usps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .dienst {
    min-width: 220px;
  }

  /* Contact Section Responsive */
  .contact .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }
}

/* Small Screens - Mobile Landscape */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .header .logo img {
    height: 2.8rem;
  }

  /* Navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 22, 19, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
  }

  .nav ul li a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: block;
    z-index: 1002;
  }

  /* Hero Section */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0 3rem;
  }

  .hero .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .heroimg {
    width: 70%;
    max-width: 280px;
    margin-bottom: 2rem;
  }

  .herotext {
    width: 100%;
    text-align: center;
  }

  .herotext h1 {
    font-size: 2.4rem;
  }

  .herotext h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .herotext p {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* Diensten Section */
  .diensten {
    padding: 4rem 0;
  }

  .dienst-grid {
    flex-direction: column;
  }

  .dienst {
    width: 100%;
  }

  .dienst p {
    max-height: unset;
    opacity: 1;
    margin-top: 1rem;
  }

  /* About Section */
  .about {
    padding: 4rem 0;
  }

  .about-photo {
    max-width: 180px;
  }

  /* Services Section */
  .services {
    padding: 4rem 0;
  }

  .service-blocks {
    gap: 2rem;
  }

  /* Contact Section */
  .contact {
    padding: 4rem 0;
  }

  .contact-form,
  .contact-info {
    padding: 1.8rem;
  }
}

/* Extra Small Screens - Mobile Portrait */
@media (max-width: 480px) {
  .header .logo img {
    height: 2.5rem;
  }

  .herotext h1 {
    font-size: 2rem;
  }

  .herotext p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .diensten h1,
  .about h2,
  .services h2,
  .contact h2 {
    font-size: 2rem;
  }

  .dienst {
    padding: 2rem 1.2rem;
  }

  .dienst svg {
    width: 50px;
    height: 50px;
  }

  .dienst h3 {
    font-size: 1.2rem;
  }

  .usp {
    padding: 1.5rem;
  }

  .service {
    padding: 2rem 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem 1rem;
  }

  .contact-form button {
    padding: 0.7rem 1.2rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .contact-info i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* Height-based Media Queries */
@media (max-height: 700px) and (min-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 6rem 0;
  }

  .heroimg img {
    max-width: 70%;
  }
}

/* Fix for extra tall phones */
@media (max-width: 480px) and (min-height: 800px) {
  .hero {
    min-height: 70vh;
  }
}

/* Active Nav Link Style */
.nav ul li a.active {
  color: var(--secondary);
}

.nav ul li a.active::after {
  width: 100%;
}

/* Anti-spam Consent Banner */
.consent-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background: rgba(16, 76, 57, 0.3); /* matches .contact-form/.contact-info */
  color: var(--text-medium);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10000;
  font-size: 0.95rem;
  line-height: 1.5;
}

.consent-banner p {
  margin-bottom: 1rem;
}

.consent-banner button {
  background-color: var(--secondary);
  color: var(--dark-bg);
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  box-shadow: 0 4px 12px rgba(222, 198, 99, 0.25);
}

.consent-banner button:hover {
  background-color: #e6ce6a; /* lighter gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(222, 198, 99, 0.35);
}
