      /* Import Poppins font */
      @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&display=swap');

      :root {
          --primary-color: #2e7d32;
          --secondary-color: #f9a825;
          --dark-color: #1b5e20;
          --light-color: #f1f8e9;
          --succes-color: #f96807;
      }

      body {
          font-family: 'Poppins', sans-serif;
          overflow-x: hidden;
      }

      /* Hero Section dengan Video Overlay */
      .hero-section {
          position: relative;
          height: 100vh;
          /* Pastikan tinggi section cukup */
      }

      .hero-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
          /* Overlay semi-transparan */
          z-index: 1;
          /* Pastikan nilai z-index lebih rendah dari konten */
      }

      .hero-content {
          position: relative;
          z-index: 2;
          /* Nilai lebih tinggi dari overlay */
          height: 100%;
          display: flex;
          align-items: center;
          /* Pusatkan vertikal */
          color: white;
          /* Warna teks putih */
      }

      .hero-image-container {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
          /* Posisi paling belakang */
      }

      /* Navbar */
      .navbar {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 10;
          transition: all 0.3s ease;
      }

      .navbar.scrolled {
          position: fixed;
          background-color: rgba(46, 125, 50, 0.95);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .navbar-brand {
          font-weight: 700;
          font-size: 1.5rem;
      }

      .nav-link {
          font-weight: 500;
          margin: 0 10px;
          position: relative;
      }

      .nav-link:after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          background: var(--secondary-color);
          bottom: 0;
          left: 0;
          transition: width 0.3s ease;
      }

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

      /* Navbar Logo Styles */
      .navbar-logo {
          height: 50px;
          /* Sesuaikan tinggi logo */
          width: auto;
          transition: all 0.3s ease;
      }

      /* Ketika navbar discroll */
      .navbar.scrolled .navbar-logo {
          height: 40px;
          /* Ukuran lebih kecil saat scroll */
      }

      /* Untuk mobile devices */
      @media (max-width: 992px) {
          .navbar-logo {
              height: 40px;
          }
      }

      /* Kabar Gembira Section Styles */
      .kabar-gembira-section {
          position: relative;
          overflow: hidden;
          background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e9 100%);
          border-top: 3px solid #2e7d32;
          border-bottom: 3px solid #2e7d32;
      }

      .blinking-text {
          font-family: 'Impact', 'Arial Black', sans-serif;
          font-size: 4rem;
          font-weight: 800;
          text-transform: uppercase;
          letter-spacing: 2px;
          margin-bottom: 0.5rem;
      }

      .kabar-text {
          color: #0e8201;
          /* Warna merah mencolok */
          text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
      }

      .exclamation {
          color: #2e7d32;
          /* Warna hijau */
          animation: blink 1.5s infinite;
          display: inline-block;
          transform: rotate(10deg);
          position: relative;
          top: -5px;
      }

      .subtext {
          font-size: 1.8rem;
          font-weight: 600;
          color: #333;
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.4;
      }

      .highlight-bar {
          width: 150px;
          height: 5px;
          background: linear-gradient(90deg, #d32f2f, #2e7d32);
          margin: 0 auto;
          border-radius: 5px;
      }

      /* Animasi blink */
      @keyframes blink {
          0% {
              opacity: 1;
          }

          50% {
              opacity: 0.3;
              transform: rotate(10deg) scale(1.1);
          }

          100% {
              opacity: 1;
          }
      }

      /* Responsive */
      @media (max-width: 768px) {
          .blinking-text {
              font-size: 2.5rem;
          }

          .subtext {
              font-size: 1.3rem;
              padding: 0 15px;
          }
      }

      @media (max-width: 576px) {
          .blinking-text {
              font-size: 2rem;
          }

          .subtext {
              font-size: 1.1rem;
          }
      }

      /* Section Umum */
      .section {
          padding: 80px 0;
      }

      .section-title {
          font-size: 2.5rem;
          font-weight: 700;
          margin-bottom: 2rem;
          color: var(--primary-color);
          position: relative;
          display: inline-block;
      }

      .section-title:after {
          content: '';
          position: absolute;
          width: 50%;
          height: 4px;
          background: var(--secondary-color);
          bottom: -10px;
          left: 0;
      }

      /* Tentang Kami dengan Carousel */
      .about-carousel {
          margin-top: 40px;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .carousel-item img {
          height: 500px;
          object-fit: cover;
      }

      .carousel-caption {
          background: rgba(0, 0, 0, 0.6);
          border-radius: 5px;
          padding: 20px;
      }

      /* Fasilitas */
      .facility-card {
          border: none;
          border-radius: 10px;
          overflow: hidden;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          margin-bottom: 20px;
          height: 100%;
      }

      .facility-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .facility-icon {
          font-size: 3rem;
          color: var(--primary-color);
          margin-bottom: 20px;
      }

      /* Image Grid Section Styles =================================== */
      .image-grid-section {
          background-color: #fff;
      }

      .grid-item {
          position: relative;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.4s ease;
          height: 280px;
      }

      .grid-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

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

      .grid-item:hover img {
          transform: scale(1.05);
      }

      .grid-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
          padding: 20px;
          color: white;
          opacity: 0;
          transition: opacity 0.3s ease;
          height: 100%;
          display: flex;
          align-items: flex-end;
      }

      .grid-item:hover .grid-overlay {
          opacity: 1;
      }

      .grid-caption {
          font-size: 1.2rem;
          font-weight: 600;
          transform: translateY(20px);
          transition: transform 0.3s ease;
      }

      .grid-item:hover .grid-caption {
          transform: translateY(0);
      }

      /* Responsive Adjustments */
      @media (max-width: 992px) {
          .grid-item {
              height: 240px;
          }
      }

      @media (max-width: 768px) {
          .grid-item {
              height: 200px;
          }

          .grid-caption {
              font-size: 1rem;
          }
      }

      @media (max-width: 576px) {
          .grid-item {
              height: 180px;
              max-width: 400px;
              margin-left: auto;
              margin-right: auto;
          }
      }

      /* Kavling & Site Plan Section ====================================*/
      .kavling-siteplan-section {
          background-color: #f8f9fa;
      }

      .section-title {
          color: #2e7d32;
          position: relative;
          padding-bottom: 15px;
      }

      .section-title:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 60px;
          height: 3px;
          background-color: #f9a825;
      }

      /* Kolom Penjelasan */
      .feature-box {
          display: flex;
          margin-bottom: 25px;
          background: white;
          padding: 20px;
          border-radius: 8px;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s ease;
      }

      .feature-box:hover {
          transform: translateY(-5px);
      }

      .feature-icon {
          width: 60px;
          height: 60px;
          background-color: #e8f5e9;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 20px;
          flex-shrink: 0;
          color: #2e7d32;
          font-size: 1.5rem;
      }

      .feature-content h3 {
          color: #2e7d32;
          margin-bottom: 10px;
          font-size: 1.2rem;
      }

      .feature-content p {
          color: #555;
          margin-bottom: 0;
      }

      /* Kolom Site Plan */
      .siteplan-container {
          background: white;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      }

      .siteplan-header {
          background: linear-gradient(135deg, #2e7d32, #1b5e20);
          color: white;
          padding: 15px 20px;
      }

      .siteplan-header h3 {
          margin-bottom: 5px;
          font-size: 1.3rem;
      }

      .siteplan-header p {
          opacity: 0.9;
          margin-bottom: 0;
          font-size: 0.9rem;
      }

      .siteplan-image {
          position: relative;
          padding: 15px;
      }

      .siteplan-image img {
          border-radius: 5px;
          width: 100%;
          height: auto;
          display: block;
      }

      .siteplan-overlay {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.3);
          opacity: 0;
          transition: opacity 0.3s ease;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 5px;
          margin: 15px;
      }

      .siteplan-image:hover .siteplan-overlay {
          opacity: 1;
      }

      .zoom-btn {
          width: 50px;
          height: 50px;
          background-color: rgba(255, 255, 255, 0.9);
          color: #2e7d32;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.2rem;
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .zoom-btn:hover {
          background-color: #2e7d32;
          color: white;
          transform: scale(1.1);
      }

      .siteplan-legend {
          display: flex;
          justify-content: center;
          padding: 15px;
          background: #f5f5f5;
          flex-wrap: wrap;
          gap: 15px;
      }

      .legend-item {
          display: flex;
          align-items: center;
          margin: 0 10px;
      }

      .legend-color {
          width: 20px;
          height: 20px;
          border-radius: 3px;
          margin-right: 8px;
          display: inline-block;
      }

      .legend-label {
          font-size: 0.85rem;
          color: #555;
      }

      /* Responsive */
      @media (max-width: 992px) {
          .feature-box {
              padding: 15px;
          }

          .feature-icon {
              width: 50px;
              height: 50px;
              font-size: 1.2rem;
              margin-right: 15px;
          }
      }

      @media (max-width: 768px) {
          .kavling-siteplan-section {
              padding: 40px 0;
          }

          .feature-box {
              flex-direction: column;
              text-align: center;
          }

          .feature-icon {
              margin-right: 0;
              margin-bottom: 15px;
          }

          .siteplan-header {
              padding: 12px 15px;
          }
      }

      /* =============================================
   Harga Section Styles 
   ============================================= */

      .harga-section {
          background-color: #f8f9fa;
          padding: 80px 0;
      }

      /* Card Styles */
      .harga-card {
          background: white;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
          height: 100%;
          position: relative;
          margin-bottom: 20px;
          border: 1px solid #e0e0e0;
      }

      .harga-card:hover {
          transform: translateY(-12px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .harga-card.favorite {
          border: 2px solid #f9a825;
          box-shadow: 0 10px 25px rgba(249, 168, 37, 0.2);
      }

      /* Card Header */
      .harga-header {
          background: linear-gradient(135deg, #2e7d32, #1b5e20);
          color: white;
          padding: 25px 20px;
          text-align: center;
          position: relative;
          min-height: 120px;
          display: flex;
          flex-direction: column;
          justify-content: center;
      }

      .harga-card.favorite .harga-header {
          background: linear-gradient(135deg, #f9a825, #f57f17);
      }

      .harga-header h3 {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 8px;
          text-transform: uppercase;
          letter-spacing: 1px;
      }

      .harga-tag {
          font-size: 1.8rem;
          font-weight: 800;
          margin: 5px 0;
          display: flex;
          justify-content: center;
          align-items: flex-start;
          line-height: 1;
      }

      .harga-tag small {
          font-size: 0.9rem;
          font-weight: 400;
          margin-left: 4px;
          align-self: flex-end;
          opacity: 0.9;
      }

      /* Card Body */
      .harga-body {
          padding: 25px 20px;
      }

      /* Features List */
      .harga-features {
          list-style: none;
          padding: 0;
          margin-bottom: 25px;
      }

      .harga-features li {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 15px;
          padding: 10px 0;
          border-bottom: 1px dashed #e0e0e0;
      }

      .feature-name {
          font-weight: 600;
          color: #333;
          flex: 1;
          font-size: 0.95rem;
      }

      .star-rating {
          color: #37f925;
          font-size: 16px;
          text-align: right;
          display: inline-flex;
          gap: 3px;
      }

      .star-rating .far.fa-star {
          color: #e0e0e0;
      }

      .star-rating .fas.fa-star-half-alt {
          color: #41f925;
          position: relative;
          overflow: hidden;
      }

      /* Favorite Card Specific Styles */
      .harga-card.favorite .star-rating {
          color: #41f925;
      }

      .harga-card.favorite .star-rating .fas.fa-star-half-alt {
          color: #41f925;
      }

      /* Button Styles */
      .btn-harga {
          display: block;
          width: 100%;
          padding: 12px;
          background-color: var(--succes-color);
          border: none;
          border-radius: 6px;
          font-weight: 600;
          transition: all 0.3s ease;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          font-size: 0.9rem;
      }

      .harga-card.favorite .btn-harga {
          background-color: #f9a825;
          color: #333;
      }

      .btn-harga:hover {
          background-color: #1b5e20;
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
      }

      .harga-card.favorite .btn-harga:hover {
          background-color: #f57f17;
          box-shadow: 0 5px 15px rgba(245, 127, 23, 0.3);
      }

      /* Badge Styles */
      .favorite-badge {
          position: absolute;
          top: -5px;
          right: 20px;
          background: #d32f2f;
          color: white;
          padding: 6px 18px;
          border-radius: 20px;
          font-size: 0.75rem;
          font-weight: 800;
          text-transform: uppercase;
          box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
          z-index: 1;
          animation: pulse 2s infinite;
      }

      @keyframes pulse {
          0% {
              transform: scale(1);
          }

          50% {
              transform: scale(1.05);
          }

          100% {
              transform: scale(1);
          }
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
          .harga-section {
              padding: 60px 0;
          }

          .harga-header {
              padding: 20px 15px;
              min-height: 110px;
          }

          .harga-header h3 {
              font-size: 1.3rem;
          }

          .harga-tag {
              font-size: 1.6rem;
          }
      }

      @media (max-width: 768px) {
          .harga-card {
              max-width: 350px;
              margin-left: auto;
              margin-right: auto;
          }

          .harga-tag {
              font-size: 1.5rem;
          }

          .feature-name {
              font-size: 0.9rem;
          }

          .star-rating {
              font-size: 14px;
          }
      }

      @media (max-width: 576px) {
          .harga-header {
              min-height: 100px;
          }

          .harga-header h3 {
              font-size: 1.2rem;
          }

          .harga-tag {
              font-size: 1.4rem;
          }

          .harga-body {
              padding: 20px 15px;
          }

          .favorite-badge {
              font-size: 0.7rem;
              padding: 5px 15px;
          }
      }

      /* Modal Styles ========================================= */
      .modal {
          display: none;
          position: fixed;
          z-index: 1000;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5);
      }

      .modal-content {
          background-color: #fefefe;
          margin: 10% auto;
          padding: 20px;
          border-radius: 8px;
          width: 80%;
          max-width: 500px;
      }

      .close {
          color: #aaa;
          float: right;
          font-size: 28px;
          font-weight: bold;
          cursor: pointer;
      }

      .close:hover {
          color: black;
      }

      .form-group {
          margin-bottom: 15px;
      }

      .form-group label {
          display: block;
          margin-bottom: 5px;
          font-weight: bold;
      }

      .form-group input,
      .form-group textarea {
          width: 100%;
          padding: 8px;
          border: 1px solid #ddd;
          border-radius: 4px;
          box-sizing: border-box;
      }

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

      /* Gallery Section Styles===================================== */
      .gallery-section {
          background-color: #f8f9fa;
      }

      .section-header {
          margin-bottom: 40px;
      }

      .section-title {
          color: #2e7d32;
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 10px;
      }

      .section-subtitle {
          color: #666;
          font-size: 1.1rem;
      }

      .gallery-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
          gap: 20px;
      }

      .gallery-item {
          position: relative;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          aspect-ratio: 1 / 1;
      }

      .gallery-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      }

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

      .gallery-item:hover img {
          transform: scale(1.05);
      }

      .gallery-caption {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 15px;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
          color: white;
          transform: translateY(100%);
          transition: transform 0.3s ease;
      }

      .gallery-item:hover .gallery-caption {
          transform: translateY(0);
      }

      .gallery-caption h5 {
          font-size: 1.1rem;
          margin-bottom: 5px;
          font-weight: 600;
      }

      .gallery-caption p {
          font-size: 0.9rem;
          margin-bottom: 0;
          opacity: 0.9;
      }

      .gallery-link {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 2;
      }

      .btn-primary {
          background-color: #b64006;
          border: none;
          padding: 12px 30px;
          font-weight: 600;
          transition: all 0.3s ease;
      }

      .btn-primary:hover {
          background-color: #1b5e20;
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
      }

      /* Responsive Adjustments */
      @media (max-width: 992px) {
          .gallery-grid {
              grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
          }
      }

      @media (max-width: 768px) {
          .gallery-grid {
              grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
              gap: 15px;
          }

          .section-title {
              font-size: 1.8rem;
          }
      }

      @media (max-width: 576px) {
          .gallery-grid {
              grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
              gap: 12px;
          }

          .gallery-caption {
              padding: 10px;
          }

          .gallery-caption h5 {
              font-size: 0.9rem;
          }

          .gallery-caption p {
              font-size: 0.8rem;
          }
      }

      /* Form Survey =========================================================*/
      .survey-form {
          background: white;
          border-radius: 10px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .form-control,
      .form-select {
          height: 50px;
          border-radius: 5px;
          border: 1px solid #ddd;
          padding: 10px 15px;
          margin-bottom: 20px;
      }

      .form-control:focus,
      .form-select:focus {
          border-color: var(--primary-color);
          box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
      }

      .btn-primary {
          background-color: var(--succes-color);
          border: none;
          padding: 12px 30px;
          font-weight: 600;
          transition: all 0.3s ease;
      }

      .btn-primary:hover {
          background-color: var(--dark-color);
          transform: translateY(-3px);
      }

      .is-invalid {
          border-color: #dc3545 !important;
          background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
          background-repeat: no-repeat;
          background-position: right calc(0.375em + 0.1875rem) center;
          background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
      }

      .is-invalid:focus {
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, .25);
      }

      /* Footer */
      footer {
          background-color: var(--dark-color);
          color: white;
          padding: 50px 0 20px;
      }

      .footer-links h5 {
          font-weight: 600;
          margin-bottom: 20px;
          position: relative;
      }

      .footer-links h5:after {
          content: '';
          position: absolute;
          width: 40px;
          height: 2px;
          background: var(--secondary-color);
          bottom: -10px;
          left: 0;
      }

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

      .footer-links li {
          margin-bottom: 10px;
      }

      .footer-links a {
          color: #ddd;
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .footer-links a:hover {
          color: var(--secondary-color);
          padding-left: 5px;
      }

      .social-icons a {
          display: inline-block;
          width: 40px;
          height: 40px;
          background: rgba(255, 255, 255, 0.1);
          color: white;
          border-radius: 50%;
          text-align: center;
          line-height: 40px;
          margin-right: 10px;
          transition: all 0.3s ease;
      }

      .social-icons a:hover {
          background: var(--secondary-color);
          transform: translateY(-5px);
      }

      /* Responsive */
      @media (max-width: 992px) {
          .hero-title {
              font-size: 2.5rem;
          }

          .hero-subtitle {
              font-size: 1.2rem;
          }

          .section-title {
              font-size: 2rem;
          }

          .carousel-item img {
              height: 400px;
          }
      }

      @media (max-width: 768px) {
          .hero-section {
              min-height: 500px;
          }

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

          .section {
              padding: 60px 0;
          }

          .carousel-item img {
              height: 300px;
          }
      }

      @media (max-width: 576px) {
          .hero-title {
              font-size: 1.8rem;
          }

          .hero-subtitle {
              font-size: 1rem;
          }

          .carousel-caption {
              padding: 10px;
          }

          .carousel-caption h5 {
              font-size: 1rem;
          }

          .carousel-caption p {
              display: none;
          }
      }

      /* FAQ Section Styles */
      .faq-section {
          background-color: #fff;
      }

      .section-header {
          margin-bottom: 40px;
      }

      .section-title {
          color: #2e7d32;
          font-size: 2.2rem;
          font-weight: 700;
          margin-bottom: 10px;
          position: relative;
          display: inline-block;
      }

      .section-title:after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background-color: #f9a825;
      }

      .section-subtitle {
          color: #666;
          font-size: 1.1rem;
          max-width: 600px;
          margin: 0 auto;
      }

      /* ending */

      /* WhatsApp Popup Styles =====================================*/
      .whatsapp-popup {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 9999;
          display: none;
          align-items: center;
          justify-content: center;
      }

      .popup-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.7);
      }

      .popup-content {
          position: relative;
          background-color: white;
          width: 100%;
          max-width: 500px;
          padding: 30px;
          border-radius: 10px;
          box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
          animation: popupFadeIn 0.3s ease;
          z-index: 1;
      }

      .popup-content h3 {
          color: #25D366;
          margin-bottom: 20px;
          display: flex;
          align-items: center;
          gap: 10px;
      }

      .popup-close {
          position: absolute;
          top: 15px;
          right: 15px;
          background: none;
          border: none;
          font-size: 24px;
          cursor: pointer;
          color: #888;
          transition: color 0.3s;
      }

      .popup-close:hover {
          color: #333;
      }

      .form-group {
          margin-bottom: 20px;
      }

      .form-group label {
          display: block;
          margin-bottom: 8px;
          font-weight: 600;
          color: #333;
      }

      .form-group input,
      .form-group textarea {
          width: 100%;
          padding: 12px 15px;
          border: 1px solid #ddd;
          border-radius: 6px;
          font-size: 16px;
          transition: border 0.3s;
      }

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

      .form-group input:focus,
      .form-group textarea:focus {
          border-color: #25D366;
          outline: none;
      }

      .btn-submit {
          width: 100%;
          padding: 14px;
          background-color: #258e02;
          color: white;
          border: none;
          border-radius: 6px;
          font-size: 16px;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          transition: background 0.3s;
      }

      .btn-submit:hover {
          background-color: #eb3c07;
      }

      .btn-submit i {
          font-size: 18px;
      }

      /* Animations */
      @keyframes popupFadeIn {
          from {
              opacity: 0;
              transform: translateY(20px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      /* Responsive */
      @media (max-width: 576px) {
          .popup-content {
              width: 90%;
              padding: 20px;
          }
      }

      /* FAQ Item Styles =========================================================*/
      .faq-item {
          margin-bottom: 15px;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      }

      .faq-question {
          width: 100%;
          text-align: left;
          padding: 18px 20px;
          background-color: #f8f9fa;
          border: none;
          cursor: pointer;
          display: flex;
          align-items: center;
          transition: all 0.3s ease;
          font-weight: 600;
          color: #333;
          font-size: 1rem;
      }

      .faq-question:hover {
          background-color: #e8f5e9;
          color: #2e7d32;
      }

      .faq-question[aria-expanded="true"] {
          background-color: #2e7d32;
          color: white;
      }

      .faq-question[aria-expanded="true"] .faq-icon:before {
          content: "−";
      }

      .faq-icon {
          display: inline-block;
          width: 24px;
          height: 24px;
          background-color: #2e7d32;
          color: white;
          border-radius: 50%;
          text-align: center;
          line-height: 24px;
          margin-right: 12px;
          flex-shrink: 0;
          position: relative;
      }

      .faq-question[aria-expanded="true"] .faq-icon {
          background-color: white;
          color: #2e7d32;
      }

      .faq-icon:before {
          content: "+";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-weight: bold;
      }

      .faq-answer {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          background-color: white;
      }

      .faq-answer-content {
          padding: 20px;
      }

      .faq-answer p,
      .faq-answer ul,
      .faq-answer ol {
          margin-bottom: 15px;
      }

      .faq-answer ul,
      .faq-answer ol {
          padding-left: 20px;
      }

      .faq-answer li {
          margin-bottom: 8px;
      }

      /* CTA Styles */
      .faq-cta {
          background-color: #f8f9fa;
          padding: 30px;
          border-radius: 10px;
          max-width: 600px;
          margin: 0 auto;
      }

      .faq-cta p {
          font-size: 1.1rem;
          margin-bottom: 15px;
          color: #333;
      }

      .btn-whatsapp {
          background-color: var(--succes-color);
          color: white;
          padding: 12px 30px;
          border-radius: 50px;
          font-weight: 600;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          transition: all 0.3s ease;
      }

      .btn-whatsapp i {
          margin-right: 8px;
          font-size: 1.2rem;
      }

      .btn-whatsapp:hover {
          background-color: #128C7E;
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
      }

      /* Responsive */
      @media (max-width: 768px) {
          .section-title {
              font-size: 1.8rem;
          }

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

          .faq-question {
              padding: 15px;
              font-size: 0.95rem;
          }

          .faq-answer-content {
              padding: 15px;
          }
      }

      @media (max-width: 576px) {
          .section-title {
              font-size: 1.6rem;
          }

          .faq-cta {
              padding: 20px;
          }
      }


      /* Facility Card Styles */
      .facility-card {
          border: none;
          border-radius: 10px;
          overflow: hidden;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          margin-bottom: 20px;
          height: 100%;
          border-top: 3px solid #2e7d32;
      }

      .facility-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .facility-icon {
          font-size: 2.5rem;
          color: #2e7d32;
          margin-bottom: 15px;
      }

      .card-title {
          color: #2e7d32;
          font-weight: 600;
          margin-bottom: 15px;
      }

      /* Survey Specific Styles ===========================*/
      .survey-info {
          padding: 0 10px;
      }

      .survey-schedule {
          display: flex;
          align-items: flex-start;
          gap: 15px;
          margin-bottom: 20px;
          text-align: left;
      }

      .survey-schedule i {
          color: #f9a825;
          font-size: 1.5rem;
          margin-top: 3px;
      }

      .survey-hours {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .survey-hours li {
          margin-bottom: 8px;
          font-size: 0.9rem;
          color: #555;
          position: relative;
          padding-left: 15px;
      }

      .survey-hours li:before {
          content: "•";
          color: #2e7d32;
          position: absolute;
          left: 0;
      }

      .btn-survey {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          background-color: var(--succes-color);
          color: white;
          border: none;
          border-radius: 5px;
          padding: 8px 20px;
          font-size: 0.9rem;
          font-weight: 500;
          transition: all 0.3s ease;
          text-decoration: none;
          gap: 8px;
      }

      .btn-survey:hover {
          background-color: #1b5e20;
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
          color: white;
      }

      .btn-survey i {
          font-size: 1rem;
      }

      /* Responsive */
      @media (max-width: 768px) {
          .facility-icon {
              font-size: 2.2rem;
          }

          .survey-schedule {
              flex-direction: column;
              align-items: center;
              text-align: center;
          }

          .survey-hours li {
              padding-left: 0;
          }

          .survey-hours li:before {
              display: none;
          }
      }