:root{
  --teal: #2ec1ac;
  --teal_hover: #279e8c;
}

html{
  font-size: 90%; /* Scale entire website 10% smaller */
}

*{
  font-family: 'Poppins', sans-serif;
}
.h-font{
  font-family: 'Merienda', cursive;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.custom-bg{
  background-color: var(--teal);
  border: 1px solid var(--teal);
}
.custom-bg:hover{
  background-color: var(--teal_hover);
  border-color: var(--teal_hover);
}

.h-line{
  width: 150px;
  margin: 0 auto;
  height: 1.7px;
}

.custom-alert{
  position: fixed;
  top: 80px;
  right: 25px;
  z-index: 1111;
}

/* Modern Registration Form Styles */
.modern-register-modal .modal-dialog {
  background: #2ec1ac;
  border-radius: 0;
}

.modern-register-modal .modal-content {
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
}

.modern-register-modal form {
  border-radius: 0;
  overflow: visible;
}

.modern-register-header {
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
  border: none;
  padding: 2rem;
  color: white;
  border-radius: 0 !important;
  margin: 0;
}

.modern-register-header .btn-close-white {
  filter: brightness(0) invert(1);
}

.modern-register-header .modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.modern-register-body {
  background: white;
  padding: 2rem;
  border-radius: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
}

.modern-form-group {
  margin-bottom: 1rem;
}

.modern-form-label {
  display: block;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.modern-form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.modern-form-control:focus {
  outline: none;
  border-color: #2ec1ac;
  background: white;
  box-shadow: 0 0 0 3px rgba(46, 193, 172, 0.15);
  transform: translateY(-2px);
}

.modern-form-control::placeholder {
  color: #a0aec0;
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

.password-input {
  padding-right: 3rem;
}

.password-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.password-toggle-btn:hover {
  color: #2ec1ac;
  transform: translateY(-50%) scale(1.1);
}

.password-toggle-btn i {
  transition: all 0.3s ease;
}

.password-toggle-btn.active {
  color: #2ec1ac;
}

/* Password Strength Bar */
.password-strength-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.password-strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.password-strength-fill.weak {
  width: 33%;
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.password-strength-fill.medium {
  width: 66%;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.password-strength-fill.strong {
  width: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.password-hint {
  display: block;
  margin-top: 0.25rem;
  color: #718096;
  font-size: 0.8rem;
}

/* Password Match Message */
.password-match-message {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.password-match-message.match {
  color: #10b981;
}

.password-match-message.match::before {
  content: "✓ ";
  font-weight: bold;
}

.password-match-message.no-match {
  color: #ef4444;
}

.password-match-message.no-match::before {
  content: "✗ ";
  font-weight: bold;
}

/* Modern Register Button */
.modern-register-btn {
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
  border: none;
  padding: 0.875rem 3rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 193, 172, 0.4);
  position: relative;
  overflow: hidden;
}

.modern-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 193, 172, 0.6);
  background: linear-gradient(135deg, #279e8c 0%, #2ec1ac 100%);
}

.modern-register-btn:active {
  transform: translateY(0);
}

.modern-register-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modern-register-btn .btn-text {
  position: relative;
  z-index: 1;
}

/* Animation for form inputs */
.modern-form-control:focus + .modern-form-label {
  color: #2ec1ac;
}

/* Enhanced Date Input (DOB) Styling */
.modern-form-control[type="date"] {
  position: relative;
  padding-right: 2.5rem;
  color: #4a5568;
  cursor: pointer;
}

.modern-form-control[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: invert(43%) sepia(78%) saturate(441%) hue-rotate(130deg) brightness(92%) contrast(89%);
}

.modern-form-control[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  filter: invert(57%) sepia(77%) saturate(438%) hue-rotate(130deg) brightness(91%) contrast(87%);
}

.modern-form-control[type="date"]:focus::-webkit-calendar-picker-indicator {
  filter: invert(57%) sepia(77%) saturate(438%) hue-rotate(130deg) brightness(91%) contrast(87%);
}

/* Date placeholder handling */
.modern-form-control[type="date"]:invalid {
  color: #a0aec0;
}

.modern-form-control[type="date"]:focus:invalid {
  color: #4a5568;
}

/* Custom calendar icon wrapper */
.date-input-wrapper {
  position: relative;
}

.date-input-wrapper::after {
  content: "\f073";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2ec1ac;
  pointer-events: none;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-form-control[type="date"]:focus + .date-icon {
  color: #2ec1ac;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-register-header {
    padding: 1.5rem;
  }
  
  .modern-register-body {
    padding: 1.5rem;
  }
  
  .modern-register-header .modal-title {
    font-size: 1.25rem;
  }
}

/* OTA-Style Login/Register Modal - Modern Side-by-Side Design */
.ota-login-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ota-modal-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.75rem 2rem;
}

.ota-modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.ota-modal-header .modal-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0 0 0;
}

.ota-modal-header .btn-close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.ota-modal-body {
  min-height: 500px;
}

/* Google Section (Left Side) */
.ota-google-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ota-google-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 193, 172, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.ota-google-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.ota-google-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ota-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.ota-section-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.ota-google-btn {
  background: white;
  border: 1.5px solid #e5e7eb;
  color: #1f2937;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 280px;
}

.ota-google-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  color: #1f2937;
}

.ota-google-btn:active {
  transform: translateY(0);
}

.ota-benefits {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ota-benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.875rem;
}

.ota-benefit-item i {
  color: #2ec1ac;
  font-size: 1rem;
}

/* Vertical Divider */
.ota-divider {
  position: relative;
  width: 1px;
  background: #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.ota-divider-line {
  flex: 1;
  width: 1px;
  background: #e5e7eb;
  min-height: 60px;
}

.ota-divider-text {
  position: absolute;
  background: white;
  padding: 0.5rem 1rem;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Form Section (Right Side) */
.ota-form-section {
  background: white;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.ota-login-form {
  width: 100%;
  height: 100%;
}

.ota-form-content {
  max-width: 100%;
  width: 100%;
}

/* Ensure row displays side-by-side on large screens */
.ota-modal-body .row.g-0 {
  display: flex;
  flex-wrap: nowrap;
}

@media (min-width: 992px) {
  .ota-modal-body .row.g-0 {
    flex-wrap: nowrap;
  }
  
  .ota-google-section,
  .ota-form-section {
    flex: 0 0 auto;
  }
  
  .ota-divider {
    flex: 0 0 auto;
  }
}

.ota-submit-btn {
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
  border: none;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 193, 172, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ota-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 193, 172, 0.4);
  background: linear-gradient(135deg, #279e8c 0%, #2ec1ac 100%);
  color: white;
}

.ota-submit-btn:active {
  transform: translateY(0);
}

.ota-register-link {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.ota-register-link a {
  color: #2ec1ac;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.2s ease;
}

.ota-register-link a:hover {
  color: #1a9b88;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .ota-modal-body .row.g-0 {
    flex-wrap: wrap;
  }
  
  .ota-google-section {
    padding: 2rem 1.5rem;
    min-height: 300px;
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  
  .ota-form-section {
    padding: 2rem 1.5rem;
    width: 100% !important;
    flex: 0 0 100% !important;
    min-height: auto;
  }
  
  .ota-divider {
    width: 100% !important;
    height: 1px;
    flex-direction: row;
    padding: 0 2rem;
    flex: 0 0 100% !important;
  }
  
  .ota-divider-line {
    width: auto;
    height: 1px;
    min-height: 1px;
    flex: 1;
  }
  
  .ota-google-btn {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .ota-modal-header {
    padding: 1.25rem 1.5rem;
  }
  
  .ota-modal-header .modal-title {
    font-size: 1.25rem;
  }
  
  .ota-google-section {
    padding: 1.5rem 1rem;
  }
  
  .ota-form-section {
    padding: 1.5rem 1rem;
  }
  
  .ota-section-title {
    font-size: 1.25rem;
  }
  
  .ota-benefits {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }
}

/* OTA Payment Status Page Styles */
.ota-payment-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
}

.ota-success-card {
  border-top: 4px solid #10b981;
}

.ota-error-card {
  border-top: 4px solid #ef4444;
}

.ota-payment-header {
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.ota-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.ota-success-icon i {
  font-size: 2.5rem;
  color: white;
}

.ota-error-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.ota-error-icon i {
  font-size: 2.5rem;
  color: white;
}

.ota-payment-title h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.ota-payment-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.ota-booking-summary {
  padding: 2rem 2.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.ota-summary-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.ota-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ota-summary-item i {
  font-size: 1.5rem;
  color: #2ec1ac;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.ota-summary-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ota-summary-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.ota-summary-value {
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
}

.ota-payment-details {
  padding: 2rem 2.5rem;
}

.ota-details-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.ota-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.ota-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}

.ota-detail-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.ota-detail-value {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

.ota-payment-actions {
  padding: 2rem 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  border-top: 1px solid #e5e7eb;
}

.ota-primary-btn {
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
  border: none;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 193, 172, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.ota-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 193, 172, 0.4);
  background: linear-gradient(135deg, #279e8c 0%, #2ec1ac 100%);
  color: white;
}

.ota-secondary-btn {
  background: white;
  border: 2px solid #e5e7eb;
  color: #374151;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.ota-secondary-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}

.ota-info-box {
  padding: 1.5rem 2.5rem;
  background: #eff6ff;
  border-top: 1px solid #dbeafe;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ota-info-box i {
  font-size: 1.25rem;
  color: #3b82f6;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.ota-info-box p {
  margin: 0;
  font-size: 0.875rem;
  color: #1e40af;
  line-height: 1.6;
}

.ota-warning-box {
  background: #fef3c7;
  border-top: 1px solid #fde68a;
}

.ota-warning-box i {
  color: #f59e0b;
}

.ota-warning-box p {
  color: #92400e;
}

/* Responsive for Payment Status */
@media (max-width: 768px) {
  .ota-payment-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .ota-success-icon,
  .ota-error-icon {
    width: 64px;
    height: 64px;
  }
  
  .ota-success-icon i,
  .ota-error-icon i {
    font-size: 2rem;
  }
  
  .ota-payment-title h2 {
    font-size: 1.5rem;
  }
  
  .ota-booking-summary {
    padding: 1.5rem;
  }
  
  .ota-summary-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .ota-payment-details {
    padding: 1.5rem;
  }
  
  .ota-details-grid {
    grid-template-columns: 1fr;
  }
  
  .ota-payment-actions {
    padding: 1.5rem;
    flex-direction: column;
  }
  
  .ota-primary-btn,
  .ota-secondary-btn {
    width: 100%;
    justify-content: center;
  }
  
  .ota-info-box {
    padding: 1.25rem 1.5rem;
  }
}

/* Modern Login Form Styles (Keep for backward compatibility) */
.modern-login-modal .modal-dialog {
  background: transparent;
  border-radius: 0;
}

.modern-login-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-login-modal form {
  border-radius: 0;
  overflow: visible;
}

.modern-login-header {
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
  border: none;
  padding: 2rem;
  color: white;
  border-radius: 0 !important;
  margin: 0;
}

.modern-login-header .modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.modern-login-header .btn-close-white {
  filter: brightness(0) invert(1);
}

.modern-login-body {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
}

/* Modern Login Button */
.modern-login-btn {
  background: linear-gradient(135deg, #2ec1ac 0%, #1a9b88 100%);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 193, 172, 0.4);
  position: relative;
  overflow: hidden;
}

.modern-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 193, 172, 0.6);
  background: linear-gradient(135deg, #279e8c 0%, #2ec1ac 100%);
  color: white;
}

.modern-login-btn:active {
  transform: translateY(0);
}

.modern-login-btn .btn-text {
  position: relative;
  z-index: 1;
}

/* Remember Me Checkbox */
.modern-login-body .form-check {
  display: flex;
  align-items: center;
}

.modern-login-body .form-check-input {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 6px;
  border: 2px solid #cbd5e0;
  cursor: pointer;
  margin-top: 0;
  flex-shrink: 0;
}

.modern-login-body .form-check-input:checked {
  background-color: #2ec1ac;
  border-color: #2ec1ac;
}

.modern-login-body .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(46, 193, 172, 0.15);
  border-color: #2ec1ac;
  outline: none;
}

.modern-login-body .form-check-label {
  color: #4a5568;
  cursor: pointer;
  margin-left: 0.5rem;
  user-select: none;
}

.modern-login-body .btn-link {
  color: #2ec1ac;
  font-weight: 500;
}

.modern-login-body .btn-link:hover {
  color: #279e8c;
}

/* OTA Form Enhancements */
.ota-form-section .modern-form-group {
  margin-bottom: 1.25rem;
}

.ota-form-section .modern-form-control {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}

.ota-form-section .modern-form-control:focus {
  border-color: #2ec1ac;
  box-shadow: 0 0 0 3px rgba(46, 193, 172, 0.1);
}

.ota-form-section .modern-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #374151;
}

.ota-form-section .form-check-label {
  font-size: 0.875rem;
  color: #4b5563;
}

.ota-form-section .btn-link {
  font-size: 0.875rem;
  color: #2ec1ac;
  font-weight: 500;
  text-decoration: none;
}

.ota-form-section .btn-link:hover {
  color: #1a9b88;
  text-decoration: underline;
}

/* Google Sign-In Button (Old style - kept for compatibility) */
.btn-google-signin {
  background: white;
  border: 1px solid #dadce0;
  color: #3c4043;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn-google-signin:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-color: #dadce0;
  color: #3c4043;
  transform: translateY(-1px);
}

.btn-google-signin:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn-google-signin svg {
  flex-shrink: 0;
}

/* Responsive adjustments for login */
@media (max-width: 768px) {
  .modern-login-header {
    padding: 1.5rem;
  }
  
  .modern-login-body {
    padding: 2rem 1.5rem;
  }
  
  .modern-login-header .modal-title {
    font-size: 1.25rem;
  }
}

/* Luxury Navbar Styles - Default for all pages */
body {
  padding-top: 60px;
}

.luxury-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.4rem 0 !important;
  box-shadow: 0 6px 30px rgba(31, 38, 135, 0.12);
}

.luxury-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.03) 0%, 
    rgba(244, 208, 63, 0.03) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.luxury-brand {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(135deg, var(--text-dark) 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.luxury-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.4s ease;
}

.luxury-brand:hover::after {
  width: 100%;
}

.luxury-nav-link {
  color: #1a1a1a !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.4rem 1rem !important;
}

.luxury-nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.luxury-nav-link:hover {
  color: #d4af37 !important;
}

.luxury-nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.luxury-btn-outline {
  border: 1.5px solid #1a1a1a !important;
  background: transparent !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 1px;
  font-size: 0.9rem !important;
}

.luxury-btn-outline:hover {
  background: #1a1a1a !important;
  color: #d4af37 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

.luxury-btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 1px;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.luxury-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
  color: white !important;
}

.luxury-btn-book {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  border: none !important;
  color: #d4af37 !important;
  font-weight: 700 !important;
  padding: 0.7rem 2rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  letter-spacing: 2px;
  font-size: 0.95rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  text-transform: uppercase;
}

.luxury-btn-book:hover {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
  color: #b8941f;
  transform: translateX(5px);
}

.luxury-navbar .navbar-toggler {
  border: 2px solid rgba(26, 26, 26, 0.3) !important;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.luxury-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.luxury-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu styling */
@media (max-width: 991px) {
  .luxury-navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .luxury-nav-link {
    padding: 0.8rem 1rem !important;
    margin: 0.2rem 0;
    border-radius: 8px;
  }

  .luxury-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
  }
}
