.box-inquire-now .ctnr {
	 max-width: 1200px;
	 margin: 0 auto;
	 background: rgba(255, 255, 255, 0.95);
	 border-radius: 20px;
	 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	 overflow: hidden;
	 backdrop-filter: blur(10px);
	 padding: unset;
	 margin-top: 30px;
	 margin-bottom: 33px;
}
 .box-inquire-now .header {
	 background: #226127;
	 color: white;
	 padding: 40px;
	 text-align: center;
}
 .box-inquire-now .header h1 {
	 font-size: 34px;
	 margin-bottom: 10px;
	 font-weight: 300;
}
 .box-inquire-now .header p {
	 font-size: 15px;
	 opacity: 0.9;
	 line-height: 1.6;
	 max-width: 900px;
	 margin: 0 auto;
}
 .box-inquire-now .form-container {
	 padding: 40px;
}
 .box-inquire-now .section {
	 margin-bottom: 40px;
	 background: rgba(255, 255, 255, 0.8);
	 border-radius: 15px;
	 padding: 30px;
	 box-shadow: 0 5px 15px rgb(0 0 0 / 12%);
	 border: 1px solid rgba(255, 255, 255, 0.2);
}
 .box-inquire-now .section-title {
	 font-size: 23px;
	 color: #4a5568;
	 margin-bottom: 25px;
	 display: flex;
	 align-items: center;
	 gap: 10px;
}
 .box-inquire-now .section-title::before {
	 content: '';
	 width: 4px;
	 height: 25px;
	 background: linear-gradient(135deg, #667eea, #764ba2);
	 border-radius: 2px;
}
 .box-inquire-now .form-grid {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 20px;
}
 .box-inquire-now .form-group {
	 margin-bottom: 5px;
	 padding-bottom: 20px;
	 width: 100%;
	 min-width: 100%;
}
 .box-inquire-now .form-group label {
	 display: block;
	 margin-bottom: 5px;
	 color: #333;
	 font-weight: 400;
	 font-size: 15px;
}
 .box-inquire-now .form-group input, .box-inquire-now .form-group select, .box-inquire-now .form-group textarea {
	 width: 100%;
	 padding: 12px 16px;
	 border: 2px solid #e2e8f0;
	 border-radius: 10px;
	 font-size: 16px;
	 transition: all 0.3s ease;
	 background: rgba(255, 255, 255, 0.9);
}
 .box-inquire-now .form-group input:focus, .box-inquire-now .form-group select:focus, .box-inquire-now .form-group textarea:focus {
	 outline: none;
	 border-color: #667eea;
	 box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	 transform: translateY(-2px);
}
 .box-inquire-now .checkbox-grid {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 15px;
	 margin-top: 15px;
}
 .box-inquire-now .checkbox-item {
	 display: flex;
	 align-items: center;
	 gap: 10px;
	 padding: 10px;
	 border-radius: 8px;
	 transition: all 0.3s ease;
	 cursor: pointer;
}
 .box-inquire-now .checkbox-item:hover {
	 background: rgba(102, 126, 234, 0.05);
}
 .box-inquire-now .checkbox-item input[type="checkbox"] {
	 width: 18px;
	 height: 18px;
	 accent-color: #667eea;
}
 .box-inquire-now .checkbox-item input[type="radio"] {
	 width: 18px;
	 height: 18px;
	 accent-color: #667eea;
}
 .box-inquire-now .checkbox-item label {
	 margin: 0;
	 cursor: pointer;
	 color: #4a5568;
	 font-weight: 400;
}
 .box-inquire-now .destinations {
	 margin-top: 20px;
}
 .box-inquire-now .destination-group {
	 margin-bottom: 25px;
}
 .box-inquire-now .destination-title {
	 font-weight: 600;
	 color: #2d3748;
	 margin-bottom: 12px;
	 font-size: 16px;
	 padding-left: 10px;
	 border-left: 2px solid #cdcdcd;
	 line-height: 1.2;
}
 .box-inquire-now .button-group {
	 display: flex;
	 gap: 20px;
	 justify-content: center;
	 margin-top: 40px;
}
 .box-inquire-now .btn {
	 padding: 15px 40px;
	 border: none;
	 border-radius: 25px;
	 font-size: 16px;
	 font-weight: 600;
	 cursor: pointer;
	 transition: all 0.3s ease;
	 text-transform: uppercase;
	 letter-spacing: 1px;
}
 .box-inquire-now .btn-primary {
	 background: #226127;
	 color: white;
}
 .box-inquire-now .btn-primary:hover {
	 transform: translateY(-3px);
	 box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
 .box-inquire-now .btn-secondary {
	 background: #e2e8f0;
	 color: #4a5568;
}
 .box-inquire-now .btn-secondary:hover {
	 background: #cbd5e0;
	 transform: translateY(-2px);
}
 .box-inquire-now .date-group {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 20px;
}
 .box-inquire-now .traveler-group {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	 gap: 15px;
	 margin-top: 10px;
}
 @media (max-width: 768px) {

	 .box-inquire-now .form-container {
		 padding: 20px;
	}
	 .box-inquire-now .header {
		 padding: 30px 20px;
	}
	 .box-inquire-now .header h1 {
		 font-size: 2rem;
	}
	 .box-inquire-now .date-group {
		 grid-template-columns: 1fr;
	}
	 .box-inquire-now .button-group {
		 flex-direction: column;
		 align-items: center;
	}
}
 .box-inquire-now .required {
	 color: #e53e3e;
}
 .box-inquire-now .accommodation-options {
	 margin-top: 15px;
}
 .box-inquire-now .accommodation-item {
	 margin-bottom: 10px;
	 display: flex;
	 gap: 0px 10px;
	 align-items: center;
}
 .box-inquire-now textarea {
	 min-height: 100px;
	 resize: vertical;
}
 

.box-inquire-now .accommodation-item input {
    width: 20px;
}

.box-inquire-now .span-bold {
    font-weight: 700!important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
}

.box-inquire-now .form-actions {
    text-align: center;
}



.book-form-member .container {
	 text-align: center;
	 color: white;
}
 .book-form-member .hero-section {
	 margin-bottom: 40px;
	 animation: fadeInUp 1s ease-out;
}
 .book-form-member .hero-section h1 {
	 font-size: 3rem;
	 margin-bottom: 20px;
	 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
 .book-form-member .hero-section p {
	 font-size: 1.2rem;
	 opacity: 0.9;
	 margin-bottom: 30px;
	 max-width: 600px;
	 margin-left: auto;
	 margin-right: auto;
}
 .book-form-member .open-form-btn {
	 background: #226127;
	 color: white;
	 border: none;
	 padding: 20px 40px;
	 font-size: 13px;
	 font-weight: bold;
	 border-radius: 5px;
	 cursor: pointer;
	 transition: all 0.3s ease;
	 box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
	 text-transform: uppercase;
	 letter-spacing: 1px;
	 width: 100%;
}
 .book-form-member .open-form-btn:hover {
	 transform: translateY(-3px);
	 box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
	 background: #226127;
}
 .book-form-member .modal-overlay {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(0, 0, 0, 0.8);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 z-index: 1000;
	 opacity: 0;
	 visibility: hidden;
	 transition: all 0.3s ease;
}
 .book-form-member .modal-overlay.active {
	 opacity: 1;
	 visibility: visible;
}
 .book-form-member .modal {
	 background: white;
	 border-radius: 20px;
	 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	 max-width: 800px;
	 width: 90%;
	 max-height: 90vh;
	 overflow-y: auto;
	 transform: scale(0.7) translateY(-50px);
	 transition: all 0.3s ease;
}
 .book-form-member .modal-overlay.active .modal {
	 transform: scale(1) translateY(0);
}
 .book-form-member .modal-header {
	 background: #226127;
	 color: white;
	 padding: 30px;
	 border-radius: 20px 20px 0 0;
	 text-align: center;
	 position: relative;
}
 .book-form-member .modal-header h2 {
	 font-size: 2rem;
	 margin-bottom: 10px;
}
 .book-form-member .modal-header .subtitle {
	 opacity: 0.9;
	 font-size: 15px;
}
 .book-form-member .close-btn {
	 position: absolute;
	 top: 20px;
	 right: 25px;
	 background: none;
	 border: none;
	 color: white;
	 font-size: 2rem;
	 cursor: pointer;
	 width: 40px;
	 height: 40px;
	 border-radius: 50%;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 transition: all 0.3s ease;
}
 .book-form-member .close-btn:hover {
	 background: rgba(255, 255, 255, 0.2);
	 transform: rotate(90deg);
}
 .book-form-member .form-content {
	 padding: 40px;
}
 .book-form-member .form-section {
	 margin-bottom: 35px;
}
 .book-form-member .form-section h3 {
	 color: #333;
	 font-size: 17px;
	 margin-bottom: 20px;
	 padding-bottom: 10px;
	 border-bottom: 2px solid #667eea;
	 display: inline-block;
}
 .book-form-member .form-group {
	 margin-bottom: 20px;
}
 .book-form-member .form-row {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 15px;
}
 .book-form-member label {
	 display: block;
	 font-weight: 500;
	 color: #333;
	 margin-bottom: 8px;
	 font-size: 13px;
	 margin-bottom: 10px;
}
 .book-form-member input[type="text"], .book-form-member input[type="email"], .book-form-member input[type="tel"], .book-form-member select, .book-form-member textarea {
	 width: 100%;
	 padding: 12px 15px;
	 border: 1px solid #e0e0e0;
	 border-radius: 10px;
	 font-size: 14px;
	 transition: all 0.3s ease;
	 background: #f8f9fa;
	 height: 45px;
}
 .book-form-member input[type="text"]:focus, .book-form-member input[type="email"]:focus, .book-form-member input[type="tel"]:focus, .book-form-member select:focus, .book-form-member textarea:focus {
	 outline: none;
	 border-color: #667eea;
	 box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	 background: white;
}
 .book-form-member textarea {
	 min-height: 100px;
	 resize: vertical;
}
 .book-form-member .radio-group {
	 display: flex;
	 gap: 20px;
	 margin-top: 8px;
}
 .book-form-member .radio-item {
	 display: flex;
	 align-items: center;
	 gap: 8px;
}
 .book-form-member input[type="radio"] {
	 width: 20px;
	 height: 20px;
	 accent-color: #667eea;
}
 .book-form-member .checkbox-group {
	 display: flex;
	 gap: 20px;
	 margin-top: 8px;
	 flex-wrap: wrap;
}
 .book-form-member .checkbox-item {
	 display: flex;
	 align-items: center;
	 gap: 8px;
}
 .book-form-member input[type="checkbox"] {
	 width: 20px;
	 height: 20px;
	 accent-color: #667eea;
}
 .book-form-member .tour-info {
	 background: #226127;
	 color: white;
	 padding: 25px;
	 border-radius: 15px;
	 margin-bottom: 30px;
	 text-align: center;
}
 .book-form-member .tour-info h4 {
	 font-size: 1.5rem;
	 margin-bottom: 15px;
}
 .book-form-member .tour-details {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	 gap: 15px;
	 margin-top: 15px;
}
 .book-form-member .tour-detail {
	 background: rgba(255, 255, 255, 0.2);
	 padding: 15px;
	 border-radius: 10px;
	 backdrop-filter: blur(10px);
}
 .book-form-member .tour-detail strong {
	 display: block;
	 margin-bottom: 5px;
}
 .book-form-member .form-actions {
	 display: flex;
	 gap: 15px;
	 justify-content: center;
	 margin-top: 30px;
}
 .book-form-member .btn {
	 padding: 15px 30px;
	 border: none;
	 border-radius: 10px;
	 font-size: 14px;
	 font-weight: 600;
	 cursor: pointer;
	 transition: all 0.3s ease;
	 text-transform: uppercase;
	 letter-spacing: 0.5px;
}
 .book-form-member .btn-primary {
	 background: #226127;
	 color: white;
	 box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
 .book-form-member .btn-primary:hover {
	 transform: translateY(-2px);
	 box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}
 .book-form-member .btn-secondary {
	 background: #6c757d;
	 color: white;
}
 .book-form-member .btn-secondary:hover {
	 background: #5a6268;
	 transform: translateY(-2px);
}
 @keyframes fadeInUp {
	 from {
		 opacity: 0;
		 transform: translateY(30px);
	}
	 to {
		 opacity: 1;
		 transform: translateY(0);
	}
}
 .book-form-member .success-message {
	 background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
	 color: white;
	 padding: 20px;
	 border-radius: 10px;
	 margin-bottom: 20px;
	 text-align: center;
	 display: none;
}
 .book-form-member .success-message.show {
	 display: block;
	 animation: fadeInUp 0.5s ease-out;
}
 @media (max-width: 768px) {
	
	 .book-form-member .hero-section h1 {
		 font-size: 2rem;
	}
	 .book-form-member .form-content {
		 padding: 20px;
	}
	 .book-form-member .form-row {
		 grid-template-columns: 1fr;
	}
	 .book-form-member .form-actions {
		 flex-direction: column;
	}
}
 

.book-form-member .form-row input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
    height: 45px;
    padding: 0px 11px;
    width: 100%;
}

.book-form-member .modal-overlay.active .modal::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.book-form-member .modal-overlay.active .modal::-webkit-scrollbar
{
	width: 0px;
	background-color: #F5F5F5;
}

.book-form-member .modal-overlay.active .modal::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}

.book-form-member label.title-form {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}


.scroll-overview {
	 position: sticky;
	 top: 58px;
	 left: 0;
	 width: 100%;
	 background: rgba(255, 255, 255, 0.95);
	 backdrop-filter: blur(20px);
	 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	 padding: 0;
	 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	 margin-bottom: 20px;
	 z-index: 9;
}
 .scroll-overview .nav-container {
	 margin: 0 auto;
	 padding: 0 2rem;
	 border-radius: 5px;
	 overflow: hidden;
}
 .scroll-overview .nav-list {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 list-style: none;
	 padding: 0;
	 margin: 0;
}
 .scroll-overview .nav-item {
	 position: relative;
	 margin: 0;
}
 .scroll-overview .nav-link.active {
	 color: #226127;
	 font-weight: 600;
}
 .scroll-overview .nav-link {
	 display: block;
	 padding: 1.5rem 2rem;
	 text-decoration: none;
	 color: #64748b;
	 font-weight: 500;
	 font-size: 14px;
	 letter-spacing: 0.5px;
	 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	 position: relative;
	 overflow: hidden;
}
 .scroll-overview .nav-link::before {
	 content: '';
	 position: absolute;
	 bottom: 0;
	 left: 50%;
	 width: 0;
	 height: 2px;
	 background: #226127;
	 transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	 transform: translateX(-50%);
}
 .scroll-overview .nav-link:hover {
	 color: #226127;
	 transform: translateY(-2px);
}
 .scroll-overview .nav-link:hover::before {
	 width: 80%;
}
 .scroll-overview .nav-link::after {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: -100%;
	 width: 100%;
	 height: 100%;
	 background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
	 transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
 .scroll-overview .nav-link.active::before {
	 width: 80%;
}
 
.sticky-item-images {
    margin-top: 20px;
    overflow: hidden;
    height: 100%;
    display: block;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    border-radius: 10px;
}

.sticky-item-images img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: block;
}

@media(max-width:990px){
 .box-inquire-now .form-group input, .box-inquire-now .form-group select, .box-inquire-now .form-group textarea {
	 padding: unset !important;
}

.box-inquire-now .accommodation-item input {
    width: 15px;
    height: 15px !important;
}
.box-inquire-now .checkbox-item input[type="checkbox"] {
    width: 13px;
    height: 13px;
}

.box-inquire-now .section {
    padding: 30px 10px;
}

.box-inquire-now .checkbox-grid {
    gap: 1px 0px;
}
	.box-inquire-now .form-group {
    padding-bottom: 3px;
}

.box-inquire-now .form-group input, .box-inquire-now .form-group select, .box-inquire-now .form-group textarea {
    height: 47px;
}

.box-inquire-now .section-title {
    font-size: 19px;
}

.box-inquire-now .btn-secondary {
    padding: 12px 40px;
}

.box-inquire-now .btn-primary {
    padding: 12px 40px;
}


		.scroll-overview .nav-container {
    overflow-x: scroll;
}

.scroll-overview .nav-list li {
    width: 100%;
    min-width: max-content;
    max-width: fit-content;
}
}