/* Booking System Styles for Futura Media */

/* Modal Container */
.booking-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}

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

/* Modal Content */
.booking-modal-content {
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--glass-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.booking-modal-container.active .booking-modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Modal Header */
.booking-modal-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  position: relative;
}

.booking-modal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  font-weight: 700;
}

.booking-modal-header p {
  color: var(--color-gray-300);
  font-size: 1rem;
}

.modal-close-button {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  color: var(--color-gray-300);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-button:hover {
  color: var(--color-white);
}

.modal-close-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Modal Body */
.booking-modal-body {
  margin-bottom: 1.5rem;
}

/* Booking Form */
.booking-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .booking-form .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-gray-200);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255, 255, 255, 0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.booking-form select option {
  background-color: #1a1a1a;
  color: var(--color-white);
}

.booking-form .form-submit {
  margin-top: 1.5rem;
}

.booking-form .primary-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.booking-form .form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.booking-form .form-status.success {
  background: rgba(0, 255, 0, 0.1);
  color: #00ff00;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.booking-form .form-status.error {
  background: rgba(255, 0, 0, 0.1);
  color: #ff5555;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Modal Footer */
.booking-modal-footer {
  font-size: 0.8rem;
  color: var(--color-gray-300);
  text-align: center;
}

.booking-modal-footer a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.booking-modal-footer a:hover {
  opacity: 0.8;
}

/* Booking Confirmation */
.booking-confirmation-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}

.booking-confirmation-container.active {
  opacity: 1;
  visibility: visible;
}

.booking-confirmation {
  width: 90%;
  max-width: 500px;
  background: var(--glass-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  padding: 2rem;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.booking-confirmation-container.active .booking-confirmation {
  transform: translateY(0);
  opacity: 1;
}

.confirmation-icon {
  margin: 0 auto 1rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 50%;
}

.confirmation-icon svg {
  width: 2rem;
  height: 2rem;
  color: #00ff00;
}

.booking-confirmation h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.booking-confirmation p {
  margin-bottom: 1.5rem;
  color: var(--color-gray-200);
}

.booking-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.booking-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-gray-200);
}

.booking-detail:last-child {
  margin-bottom: 0;
}

.booking-detail svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--color-gray-300);
}

.booking-detail span {
  font-weight: 500;
}

.booking-confirmation .primary-button {
  margin-top: 1rem;
}

/* Styles moved from contact.html inline */
.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.contact-left {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-left h2, .contact-right h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.contact-left .contact-info-item { /* Assuming a structure for email/hours */
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-left .contact-info-icon-wrapper { /* Wrapper for icon */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.contact-left .contact-info-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-left .contact-info-text h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-left .contact-info-text p,
.contact-left .contact-info-text a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem; /* Consistent font size */
}
.contact-left .contact-info-text a:hover {
  color: var(--color-blue); /* Or your preferred hover color */
}

.contact-left .timezone-selector {
  margin-top: 0.75rem;
}

.contact-left .timezone-selector label {
  font-size: 0.8rem;
  color: #a0a0a0;
  display: block; /* Ensure label is on its own line or adjust as needed */
  margin-bottom: 0.5rem;
}

.contact-left .timezone-dropdown {
  margin-top: 0.5rem; /* Retained from inline, adjust if needed */
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  width: 100%; /* Make dropdown full width of its container */
}

.contact-left #converted-time {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-top: 0.5rem;
}

.contact-left .process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-left .process-step:last-child {
  margin-bottom: 0;
}

.contact-left .process-step-number {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  color: #007bff; /* Or var(--color-blue) */
  font-weight: bold;
}

.contact-left .process-step p {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-left .start-now-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: #007bff; /* Or var(--color-blue) */
  text-decoration: none;
  font-weight: 500;
}

.contact-left .start-now-link svg {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}
.contact-left .start-now-link:hover {
  opacity: 0.8;
}

.contact-right {
  flex: 1.5;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.contact-right > p { /* Targeting the intro paragraph */
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.contact-form .form-row-flex { /* New class for name/email row */
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-form .form-row-flex {
    flex-direction: column;
    gap: 1rem; /* Keep gap consistent or adjust */
     margin-bottom: 0; /* Remove bottom margin if fields will have their own */
  }
  .contact-form .form-row-flex > div {
    margin-bottom: 1rem; /* Add margin to individual items when stacked */
  }
}

.contact-form .form-group { /* General form group styling */
  flex: 1; /* For items in a flex row */
  margin-bottom: 1rem; /* Default bottom margin */
}
.contact-form .form-group:last-child {
  margin-bottom: 1.5rem; /* For last field before checkbox/button */
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #e0e0e0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-primary);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-blue); /* Highlight on focus */
  box-shadow: 0 0 5px rgba(var(--color-blue-rgb), 0.5); /* Optional: add a glow */
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .privacy-group { /* For privacy checkbox */
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-form input[type="checkbox"] {
  margin-right: 0.5rem;
  /* Add custom checkbox styling here if desired, or use browser default */
}

.contact-form .privacy-group label {
  font-size: 0.875rem;
  color: #a0a0a0;
  margin-bottom: 0; /* Reset margin for label next to checkbox */
}

.contact-form .submit-button {
  width: 100%;
  padding: 0.75rem;
  background: #007bff; /* Or var(--color-blue) */
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.contact-form .submit-button:hover {
  background: #0056b3; /* Darker shade for hover */
}
.contact-form .submit-button:disabled {
  background: #555;
  cursor: not-allowed;
}

.contact-form .submit-button svg {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}

.contact-form .form-status { /* Already in booking.css, ensure consistency or remove duplicate */
  margin-top: 1rem;
  text-align: center;
  /* Ensure .success and .error classes from booking.css apply correctly */
}

/* Responsive adjustments for the overall contact section */
@media (max-width: 992px) { /* Tablet and below */
  .contact-container {
    flex-direction: column;
  }
  .contact-left, .contact-right {
    flex: none; /* Reset flex property */
    width: 100%; /* Take full width when stacked */
  }
}

/* Availability Section specific styles */
.availability-section .contact-info-icon-wrapper {
  animation: float-icon 3s infinite ease-in-out;
}

.availability-section .contact-info-icon-wrapper svg {
  color: var(--color-green); /* Or another color that fits your theme */
}

.availability-section .contact-info-text h3 {
  color: #fff; /* Ensure heading is white */
  display: flex; /* Align dot with text */
  align-items: center;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--color-green);
  border-radius: 50%;
  margin-left: 8px;
  display: inline-block;
  animation: pulse-dot 1.5s infinite ease-in-out;
  box-shadow: 0 0 5px var(--color-green), 0 0 10px var(--color-green);
}

.availability-section .contact-info-text p {
  color: #a0a0a0;
}

.highlight-247 {
  font-weight: bold;
  color: var(--color-green); /* Or your primary highlight color */
  animation: pulse-247-enhanced 2.5s infinite ease-in-out;
  text-shadow: 0 0 3px var(--color-green); 
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 3px var(--color-green), 0 0 5px var(--color-green);
  }
  50% {
    transform: scale(0.8);
    opacity: 0.6;
    box-shadow: 0 0 8px var(--color-green), 0 0 12px var(--color-green);
  }
}

@keyframes pulse-247-enhanced {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
    text-shadow: 0 0 5px var(--color-green), 0 0 10px var(--color-green);
  }
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}