:root {
        --bs-primary: #bf9456;
        --bs-primary-rgb: 191, 148, 86;
        --bs-secondary: #6c757d;
        --bs-body-bg: #faf8f5;
      }

      /* FAQ Section Styles */
      .faq-section {
        background-color: var(--bs-body-bg);
        padding: 80px 0;
      }

      .faq-title {
        text-align: center;
        margin-bottom: 50px;
      }

      .faq-title small {
        color: var(--bs-primary);
        font-size: 1.8rem;
        display: block;
        margin-bottom: 10px;
      }

      .faq-title h2 {
        font-size: 2.5rem;
        font-weight: 600;
        color: #212529;
      }

      .faq-accordion {
        max-width: 900px;
        margin: 0 auto;
      }

      .faq-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
      }

      .faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
      }

      .faq-question:hover {
        background-color: rgba(191, 148, 86, 0.05);
      }

      .faq-question h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: #212529;
      }

      .faq-question i {
        color: var(--bs-primary);
        font-size: 1.2rem;
        transition: transform 0.3s ease;
      }

      .faq-question.active i {
        transform: rotate(45deg);
      }

      .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background-color: rgba(191, 148, 86, 0.02);
      }

      .faq-answer.show {
        padding: 0 25px 20px 25px;
        max-height: 200px;
      }

      .faq-answer p {
        margin: 0;
        color: #6c757d;
        line-height: 1.8;
      }

      /* Booking Form Styles */
      .booking-section {
        background-color: white;
        padding: 80px 0;
        position: relative;
      }

      .booking-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--bs-primary),
          transparent
        );
      }

      .booking-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        background: var(--bs-body-bg);
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .booking-wrapper .title {
        text-align: center;
        margin-bottom: 40px;
      }

      .booking-wrapper .title small {
        color: var(--bs-primary);
        font-size: 2rem;
      }

      .booking-wrapper .title h2 {
        font-size: 2.2rem;
        font-weight: 600;
      }

      .form-floating {
        margin-bottom: 20px;
      }

      .form-floating > .form-control,
      .form-floating > .form-select {
        height: 60px;
        border-radius: 10px;
        border: 1px solid #e0e0e0;
        background: white;
      }

      .form-floating > label {
        padding: 1rem 1rem;
        color: #6c757d;
      }

      .form-floating > .form-control:focus,
      .form-floating > .form-select:focus {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 0.25rem rgba(191, 148, 86, 0.25);
      }

      .btn-primary {
        background-color: var(--bs-primary) !important;
        border-color: var(--bs-primary) !important;
        color: white;
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
      }

      .btn-primary:hover {
        background-color: #a87d42 !important;
        border-color: #a87d42 !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(191, 148, 86, 0.3);
      }

      /* Contact Details Section */
      .contact-details-section {
        background-color: var(--bs-body-bg);
        padding: 80px 0;
        border-top: 1px solid rgba(191, 148, 86, 0.2);
        border-bottom: 1px solid rgba(191, 148, 86, 0.2);
      }

      .contact-details-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
      }

      .contact-details-wrapper .title {
        margin-bottom: 50px;
      }

      .contact-details-wrapper .title small {
        color: var(--bs-primary);
        font-size: 2rem;
        display: block;
        margin-bottom: 10px;
      }

      .contact-details-wrapper .title h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #212529;
      }

      .contact-cards {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
      }

      .contact-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        flex: 1;
        min-width: 250px;
        max-width: 300px;
        transition: all 0.3s ease;
      }

      .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(191, 148, 86, 0.15);
      }

      .contact-card i {
        font-size: 3rem;
        color: var(--bs-primary);
        margin-bottom: 20px;
      }

      .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #212529;
        font-weight: 600;
      }

      .contact-card p {
        color: #6c757d;
        margin-bottom: 5px;
      }

      .contact-card a {
        color: var(--bs-primary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .contact-card a:hover {
        color: #a87d42;
        text-decoration: underline;
      }

      /* Popup Booking Styles - FIXED like other pages */
      .booking-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 99999;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .booking-popup.show {
        display: flex;
        opacity: 1;
      }

      .popup-container {
        position: relative;
        width: 90%;
        max-width: 800px;
        max-height: 90vh;
        overflow-y: auto;
        background: transparent;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        transform: scale(0.9);
        transition: transform 0.3s ease;
        margin: 20px;
      }

      .booking-popup.show .popup-container {
        transform: scale(1);
      }

      /* FIXED: Close button on right with proper spacing */
      .popup-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        background: var(--bs-primary);
        border: 2px solid white;
        border-radius: 50%;
        color: white;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 100000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.2s ease;
        padding: 0;
        line-height: 1;
      }

      .popup-close:hover {
        background: #a87d42;
        transform: rotate(90deg) scale(1.1);
        border-color: #f8f9fa;
      }

      .thankyou-message {
        display: none;
        text-align: center;
        padding: 50px 40px;
        background: white;
        border-radius: 20px;
      }

      .thankyou-message.show {
        display: block;
      }

      .thankyou-icon {
        width: 90px;
        height: 90px;
        background: var(--bs-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 45px;
        color: white;
        box-shadow: 0 10px 25px rgba(191, 148, 86, 0.3);
      }

      .thankyou-message h2 {
        color: var(--bs-primary);
        font-size: 3.5rem;
        margin-bottom: 15px;
      }

      .thankyou-message p {
        color: #6c757d;
        margin-bottom: 25px;
        font-size: 1.2rem;
      }

      .thankyou-message .btn-close-popup {
        background: var(--bs-primary);
        color: white;
        border: none;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        display: inline-block;
        text-decoration: none;
      }

      .thankyou-message .btn-close-popup:hover {
        background: #a87d42;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(191, 148, 86, 0.3);
      }
       .partner-info {
        background-color: var(--bs-body-bg);
        padding: 60px 0;
        border-top: 1px solid rgba(191, 148, 86, 0.2);
      }

      .partner-info-wrapper {
        max-width: 1000px;
        margin: 0 auto;
      }

      .partner-benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-top: 40px;
      }

      .benefit-card {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        flex: 1;
        min-width: 250px;
        max-width: 300px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(191, 148, 86, 0.15);
      }

      .benefit-card i {
        font-size: 3rem;
        color: var(--bs-primary);
        margin-bottom: 20px;
      }

      .benefit-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #212529;
        font-weight: 600;
      }

      .benefit-card p {
        color: #6c757d;
        margin-bottom: 0;
        line-height: 1.6;
      }

      .terms-section {
        background-color: white;
        padding: 60px 0;
        border-bottom: 1px solid rgba(191, 148, 86, 0.2);
      }

      .terms-wrapper {
        max-width: 900px;
        margin: 0 auto;
        background: var(--bs-body-bg);
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      }

      .terms-wrapper .title {
        text-align: center;
        margin-bottom: 30px;
      }

      .terms-wrapper .title small {
        color: var(--bs-primary);
        font-size: 2rem;
        display: block;
        margin-bottom: 10px;
      }

      .terms-wrapper .title h2 {
        font-size: 2rem;
        font-weight: 600;
        color: #212529;
      }

      .terms-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .terms-list li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(191, 148, 86, 0.1);
        display: flex;
        align-items: flex-start;
        gap: 15px;
      }

      .terms-list li:last-child {
        border-bottom: none;
      }

      .terms-list i {
        color: var(--bs-primary);
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 3px;
      }

      .terms-list span {
        color: #6c757d;
        line-height: 1.6;
      }

      .btn_1.outline:hover {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: white;
      }