/* Modal Trigger Buttons */
.newsletter-buttons {
  margin-top: 2rem;
}

.btn-modal-trigger {
  width: 100%;
  padding: 2rem 1.5rem;
  background: #6b8080;
  border: none;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-modal-trigger:hover {
  background: #5a6d6d;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.btn-modal-trigger:active {
  transform: translateY(0);
}

.modal-btn-title {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
}

.modal-btn-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  display: block;
}

/* Modal Styles */
.newsletter-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

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

.modal-header {
  margin-bottom: 2rem;
}

.modal-header h4 {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  color: #333;
}

.modal-intro {
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Form Styles */
.newsletter-modal-form .form-group {
  margin-bottom: 1.5rem;
}

.newsletter-modal-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.newsletter-modal-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
	.newsletter-modal-form .form-control {
		color: #222222
	}
.newsletter-modal-form .form-control:focus {
  outline: none;
  border-color: #6b8080;
  box-shadow: 0 0 0 3px rgba(107, 128, 128, 0.1);
}

.newsletter-modal-form .btn-submit {
  width: 100%;
  padding: 1rem;
  background: #6b8080;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.newsletter-modal-form .btn-submit:hover {
  background: #5a6d6d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 128, 128, 0.4);
}

.newsletter-modal-form .btn-submit:active {
  transform: translateY(0);
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 2rem 1.5rem;
  }
	.margint3 {
		padding: 0 20px 0 20px
	}
  
  .modal-btn-title {
    font-size: 1.1rem;
  }
}
	
@media (max-width: 992px) {
 	  
  .btn-modal-trigger {
    padding: 1rem 1rem;
    margin-bottom: 20px;
  }
}
	
	
	

	.row.social{
		text-align:center;
	}

	.row.social h6{
		margin:10px 0 12px 0;
		text-align:center;
	}

	.travel-note{
		list-style:none;
		padding:0;
		margin:0;
		display:flex;
		flex-wrap:wrap;
		justify-content:center;
		gap:10px 12px;
		font-size:0.875rem;
		line-height:1.35;
		padding-bottom: 10px
	}

	.travel-note li{
		background:#6b8080;
		border:1px solid rgba(0,0,0,0.08);
		border-radius:999px;
		padding:6px 12px;
	}

	.travel-note a{
		color:inherit;
		text-decoration:none;
		text-underline-offset:2px;
	}


	.route-arrow{
		display:inline-block;
		margin:0 6px;
		font-weight:700;
		opacity:0.9;
		transform: translateY(-0.5px);
	}
