
/* ========================
   Root Variables
======================== */
:root {
  --heading-font: 'Alegreya SC', serif;
  --body-font: 'Alegreya', serif;
  --kascoten-green: #06402b;
  --kascoten-red: #c10000;
  --light-bg: #E9EEEB;
  --white: #ffffff;
  --text-dark: #062e25;
  --text-muted: #777;
}

/* ========================
   Global Styles
======================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: #333;
  line-height: 1.5;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}






/* Hide desktop nav by default */
.desktop-nav {
  display: none;
}

/* Desktop nav styles for screens wider than 1024px */
@media (min-width: 1025px) {
  .desktop-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
  }

  .desktop-nav a {
    text-decoration: none;
    color: var(--kascoten-green);
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
  }

  .desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--kascoten-green);
    transition: width 0.3s ease;
  }

  .desktop-nav a:hover::after {
    width: 100%;
  }

  /* Hide mobile menu icon */
  .menu-btn {
    display: none;
  }
}

.cta-buttons .btn-join {
  background: var(--kascoten-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  width: fit-content;
  cursor: pointer;
  border: none;
  font-family: var(--heading-font);
  float: left;

}

.cta-buttons .btn-join:hover {
  background: var(--white);
  color: var(--kascoten-red);
  text-decoration: none;
  border: 1px solid  var(--kascoten-red);
}





/* ========================
   Header Styles
======================== */
.main-header {
  background: var(--white);
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 0.5rem 0.1rem 0.1rem;  
}

.logo img {
  max-height: 125px;
}

.nav-icons {
  display: flex;
  gap: 1rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========================
   Overlay Menu
======================== */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  display: none;
  flex-direction: column;
  z-index: 2000;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.overlay-menu.active {
  display: flex;
  opacity: 1;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.overlay-header img {
  max-height: 80px;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

.overlay-nav a {
  font-size: 1.2rem;
  color: var(--kascoten-green);
  display: flex;
  justify-content: space-between;
}

/* ========================
   Hero Carousel
======================== */
.hero-carousel {
  margin-top: 60px; /* Offset for fixed header */
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 750px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


.hero-left {
  background: var(--kascoten-green);
  color: var(--white);
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: clip-path 0.5s ease;
 // min-height: fit-content;
}

.hero-left-content {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-left-content.enter-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-left-content.exit {
  opacity: 0;
  transform: translateX(-50px);
}

/* Fade images */
.hero-right img {
  opacity: 0;
  transition: opacity 0.1s ease;
}

.hero-right img.active {
  opacity: 1;
}



.hero-left h1 {
  font-family: var(--heading-font);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-left p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background: var(--kascoten-red);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  width: fit-content; 
  float: top;

}


.hero-btn:hover {
  background: var(--white);
  color: var(--kascoten-red);
  text-decoration: none;
}


.hero-right {
  flex: 1;
  overflow: hidden;
}

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

/* ========================
   Carousel Controls
======================== */
.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 50;
}

.control-btn {
  background: none;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  border-radius: 20px;
  font-size: 1.25rem;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  cursor: pointer;

}

.pagination span {
  width: 20px;
  height: 3px;
  background: var(--white);
  display: inline-block;
  transition: all 0.3s;
}

.pagination span.active {
  width: 50px;
  background: var(--kascoten-red);
}

/* ========================
   Responsive Styles
======================== */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }

  .hero-left {
    clip-path: none;
    height: 250px;
    padding: 2rem 1rem;
    height: fit-content;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .control-btn {
    font-size: 1rem;
  }

  .pagination {
    gap: 0.3rem;
  }

  .pagination span.active {
    width: 30px;
  }

  .hero-right {
    height: 250px;
  }

  .carousel-controls {
    bottom: 0.5rem;
  }

  .logo img {
    max-height: 80px;
  }
}



/* ========================
   Hero Content Animations
======================== */

.hero-left-content {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-left-content.exit {
  opacity: 0;
  transform: translateX(-50px);
}

.hero-left-content.enter {
  opacity: 0;
  transform: translateX(-50px);
}

.hero-left-content.enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Right image crossfade */
.hero-right img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-right img.active {
  opacity: 1;
}


/* CONTAINER */
.help-section {
  background: #f8f8f8;
  padding: 4rem;
  font-family: var(--body-font);
  color: var(--text-dark);
}
.help-container {
  display: flex;
  gap: 7.5rem;
  max-width: 1750px;
  margin: 0 auto;
}

/* LEFT NAVIGATION */
.help-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.help-menu {
  list-style: none;
  padding: 0rem;
  margin-left: 1.75rem;
  border-top: 1px solid #ddd;
  font-size: 1.75rem;
}

.help-menu li {
  padding: 0.8rem 0;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid #ddd;
  transition: color 0.3s;
}

.help-menu li.active {
  color: var(--text-dark);
}

.help-menu li span {
  position: relative;
}

.help-menu li.active span::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--kascoten-red);
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-grow 0.3s forwards;
}

@keyframes underline-grow {
  to {
    transform: scaleX(1);
  }
}

/* RIGHT CONTENT */
/*
.help-content {
  flex: 1;
  padding: 2rem;
  background: #E9EEEB;
  border-radius: 50%;
  position: relative;
  font-size: 1.5rem;


}

.content-panel {
  display: none;
  animation: fadeIn 0.5s ease;
  max-width: 1000px;


  
}

.content-panel.active {
  display: block;
    padding-top: 200px;
}
*/

/* RIGHT CONTENT test */

.help-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: #E9EEEB;
  border-radius: 50%;
  min-height: 400px;
  font-size: 1.5rem;

}

.content-panel {
  display: none;
  animation: fadeIn 0.5s ease;
  max-width: 1000px;
  width: 100%;
}

.content-panel.active {
  display: block;
  padding: 20px;
  width: 100%;
}

/* RIGHT CONTENT test end */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.learn-more {
  color: var(--kascoten-red);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
}

.learn-more .arrow {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.learn-more:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .help-section {
  padding: 2rem;
  }
  .help-container {
    flex-direction: column;
  display: flex;
  gap: 2rem;
  }
  .help-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
  .help-menu {
  margin-left: 0rem;
  border-top: 1px solid #ddd;
  font-size: 1.25rem;
}

  .help-content {
    display: none; /* Hide main right column on mobile */
  }

  .help-menu li {
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  /* Content panels will be inserted dynamically below each item on mobile */
  .mobile-panel {
    display: none;
    padding: 1rem;
    background: #f2f5f4;
    font-size: 0.95rem;
  }

  .mobile-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
}



/* ========================
   Footer Styles
======================== */
.kascoten-footer {
  background: var(--light-bg);
  color: var(--text-dark);
  padding: 3rem 2rem;
  font-family: var(--body-font);
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

/* Logo & Description */
.footer-logo h2 {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--kascoten-green);
  margin-bottom: 0.8rem;
}

.footer-logo p {
  font-size: 1.33rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}

/* Footer Sections */
.footer-section h4 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--kascoten-green);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul li a {
  color: var(--text-dark);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--kascoten-red);
}

/* Contact Button & Social Icons */
.contact-btn {
  display: inline-block;
  background: var(--kascoten-red);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: var(--heading-font);
}

.contact-btn:hover {
  background: var(--white);
  color: var(--kascoten-red);
  border: 1px solid var(--kascoten-red);
}

.footer-contact h4 {
  font-size: 1.3rem;
  color: var(--kascoten-green);
  margin-bottom: 0.8rem;
}

.social-icons a {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--kascoten-red);
  margin-right: 0.7rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--kascoten-green);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: left;
    text-align: left;
  }

  .footer-logo p {
    max-width: 100%;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }
}

.footer-contact h4 {
  font-size: 1.3rem;
}

.footer-contact p {
  font-size: 1rem;
}

.footer-section h4 {
  font-size: 1.4rem;
}
.footer-logo h2 {
  font-family: var(--heading-font);
  font-size: 1.75rem;
}
.footer-logo p {
  font-size: 1rem;
}








/* ========================
   Visitations Section Styles
======================== */

.visitations-section {
  padding: 4rem 2rem;
  background: var(--white);
  margin-top: 130px; /* Add this line to offset the fixed header */

}

.visitations-container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--heading-font);
  color: var(--kascoten-green);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.visitations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.visitation-card {
  background: var(--light-bg);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visitation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.visitation-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.visitation-content {
  padding: 1.2rem;
}

.visitation-content .date {
  display: block;
  font-size: 0.9rem;
  color: var(--kascoten-red);
  margin-bottom: 0.4rem;
}

.visitation-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--kascoten-green);
}

.visitation-content p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.view-more {
  color: var(--kascoten-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.view-more:hover {
  color: var(--kascoten-green);
}

/* GLightBox */
.glightbox-counter {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(6, 64, 43, 0.8); /* KASCOTEN green */
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.33rem;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 9999;
}


/* ========================
   Visitations Section Styles END!
======================== */









/* ========================
   ABOUT PAGE STYLES
======================== */

 .about-section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: auto;
      font-family: var(--body-font);
      color: var(--text-dark);
      line-height: 1.7;
        margin-top: 130px; /* Add this line to offset the fixed header */

    }

    .about-section h1,
    .about-section h2 {
      font-family: var(--heading-font);
      color: var(--kascoten-green);
      margin-bottom: 1rem;
    }

    .about-section h1 {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 2rem;
      position: relative;
    }

    .about-section h1::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--kascoten-red);
      margin: 0.5rem auto;
    }

    .about-section h2 {
      font-size: 2rem;
      margin-top: 3rem;
    }

    .about-section p {
      margin-bottom: 1rem;
      font-size: 1.2rem;
      color: var(--text-dark);
    }

    .about-section ul {
      padding-left: 1.5rem;
      margin-bottom: 2rem;
    }

    .about-section li {
      margin-bottom: 0.7rem;
      font-size: 1.2rem;
      list-style: disc;
    }

    @media (max-width: 768px) {
      .about-section h1 {
        font-size: 2rem;
      }

      .about-section h2 {
        font-size: 1.5rem;
      }

      .about-section p,
      .about-section li {
        font-size: 1rem;
      }
    }


    
/* ========================
   ABOUT PAGE STYLES END!
======================== */

/* ========================
PARTNERSHIP SECTION
======================== */

  .partners-section {
    padding: 50px 20px;
    max-width: 1800px;
    margin: auto;
    text-align: center;
  }

  .partners-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
  }

  /* LOGO GRID */
  .partners-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }
/*
  .partner-logo {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }
*/
 .partner-logo {
  background: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px; /* Adjust as needed for vertical space */
}
  .partner-logo img {
    max-width: 105%;
    max-height: 300px;
    object-fit: contain;
  }

  /* Hover animation */
  .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  /* 📱 MOBILE STYLES */
  @media (max-width: 768px) {
    .partners-logos {
      grid-template-columns: repeat(2, 1fr);
    }
  }



/* ========================
PARTNERSHIP SECTION END
======================== */



  
/* ========================
LEADERSHIP SECTION STYLES
======================== */ 



    body {
    font-family: var(--body-font);
    margin: 0;
    background: #ffffff;
    color: #E9EEEB;
    margin-top: 110px;
  }

  .leadership-section {
    max-width: 1500px;
    margin: auto;
    padding: 50px 20px;
  }

  .leadership-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: darkgreen;
  }

  /* GRID */
  .leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }

  .leader-card {
    text-align: left;
    border: 3px solid darkgreen; /* darker border */
    border-radius: 10px;
    padding: 15px;
    background: #E9EEEB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  /* Leader Image */
  .leader-card img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .leader-card img:hover {
    transform: scale(1.02);
  }

  /* Name & Title */
  .leader-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    color: darkred;
  }

  .leader-title {
    font-size: 1rem;
    color: darkred;
    margin-bottom: 10px;
  }

  /* Read Bio link */
  .read-bio {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: darkred;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
  }

  .read-bio:hover {
    color: #e56a1e;
  }

  .read-bio::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .read-bio:hover::after {
    transform: translateX(3px);
  }









   
/* ========================
LEADERSHIP SECTION END!
======================== */ 


/* --- CONTACT PAGE ENHANCED STYLES --- */
.contact-hero {
  background: linear-gradient(120deg, var(--kascoten-green) 80%, #0a5c3c 100%);
  color: var(--white);
  padding: 5rem 0 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero h1 {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  animation: fadeInDown 1s;
}
.contact-hero .contact-btn {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  /*box-shadow: 0 4px 18px rgba(6,64,43,0.12);*/
  animation: fadeInUp 1.2s;
}

.contact-details {
  background: var(--white);
  padding: 2.5rem 0 2rem 0;
}
.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.contact-info-card {
  background: #f8f8f8;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(6,64,43,0.07);
  padding: 2.2rem 2rem 1.5rem 2rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
  margin-bottom: 1.2rem;
}
.contact-info-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 32px rgba(6,64,43,0.13);
}
.contact-icon {
  font-size: 2.3rem;
  color: var(--kascoten-red);
  margin-bottom: 0.6rem;
  animation: popIn 0.7s;
}
.contact-info-card h4 {
  font-family: var(--heading-font);
  color: var(--kascoten-green);
  margin: 0.7rem 0 0.3rem 0;
  font-size: 1.3rem;
}
.contact-info-card p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form-section {
  background: #f8f8f8;
  padding: 3.5rem 0 3rem 0;
}
.contact-form-wrapper {
  max-width: 600px;
  margin: auto;
  animation: fadeInUp 1.2s;
}
#contact-form {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(6,64,43,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: relative;
}
#contact-form h2 {
  font-family: var(--heading-font);
  color: var(--kascoten-green);
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
#contact-form input,
#contact-form textarea {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  font-size: 1.08rem;
  font-family: inherit;
  background: #f9f9f9;
  transition: border 0.2s, box-shadow 0.2s;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border: 1.5px solid var(--kascoten-green);
  outline: none;
  box-shadow: 0 0 0 2px #e9eeeb;
}
#contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
#contact-form .contact-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
}
#form-message {
  margin-top: 1rem;
  color: var(--kascoten-green);
  font-weight: 500;
  min-height: 1.2em;
  transition: color 0.3s;
}

.contact-map-section {
  background: #f8f8f8;
  padding: 0;
  margin: 0;
}
.contact-map-section iframe {
  width: 100vw;
  height: 350px;
  border: 0;
  display: block;
  margin-left: calc(-50vw + 50%);
  left: 0;
  position: relative;
  max-width: 100vw;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg,rgba(6,64,43,0.85) 60%,transparent 100%);
  color: #fff;
  padding: 1.1rem 0 0.7rem 2rem;
  font-size: 1.1rem;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  pointer-events: none;
}

.contact-faq-cta {
  background: var(--white);
  padding: 3.5rem 0 4rem 0;
  max-width: 900px;
  margin: 0 auto;
}
.contact-faq-cta h2 {
  font-family: var(--heading-font);
  color: var(--kascoten-green);
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  letter-spacing: 1px;
}
.faq-list {
  margin-bottom: 2.5rem;
}
.faq-item {
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(6,64,43,0.07);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: 0 8px 24px rgba(6,64,43,0.13);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: var(--heading-font);
  color: var(--kascoten-red);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f2f2f2;
}
.faq-question i {
  transition: transform 0.3s;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: var(--text-dark);
  font-size: 1.05rem;
  padding: 0 1.5rem;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.4s;
}
.faq-item.open .faq-answer {
  padding: 1rem 1.5rem 1.2rem 1.5rem;
  max-height: 300px;
}

.cta-center {
  text-align: center;
}
.cta-center .contact-btn {
  font-size: 1.1rem;
  padding: 0.8rem 2.2rem;
  margin-top: 1.2rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes popIn {
  0% { transform: scale(0.7);}
  80% { transform: scale(1.15);}
  100% { transform: scale(1);}
}
.animated-fadein { animation: fadeInDown 1s; }
.animated-up { animation: fadeInUp 1.1s; }

/* Responsive */
@media (max-width: 900px) {
  .contact-info-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-form-wrapper, .map-card {
    max-width: 98vw;
  }
  .contact-faq-cta {
    padding: 2rem 0 2.5rem 0;
  }
}
@media (max-width: 600px) {
  .contact-hero { padding: 2.5rem 0 1.5rem 0; }
  .contact-hero h1 { font-size: 1.5rem; }
  .contact-info-card { padding: 1.2rem 0.7rem; }
  .contact-form-section { padding: 1.5rem 0; }
  .contact-form-wrapper { padding: 0 0.5rem; }
  .map-card { margin: 1rem auto 0 auto; }
  .contact-faq-cta { padding: 1.2rem 0 2rem 0; }
}

.contact-btn,
.cta-buttons .btn-join {
  border: none !important;
}

.contact-btn:hover,
.cta-buttons .btn-join:hover {
  border: none !important;
}

.map-subheading {
  text-align: center;
  font-family: var(--heading-font);
  color: var(--kascoten-green);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  letter-spacing: 1px;
}
/* --- CONTACT PAGE ENHANCED STYLES END --- */
