/* Critical CSS for above-the-fold content */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: #2c3e50; color: white; padding: 1rem 0; position: relative; z-index: 100; }
.hero { background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); color: white; padding: 4rem 0; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.cta-button { background: #e74c3c; color: white; padding: 1rem 2rem; text-decoration: none; border: none; border-radius: 5px; font-weight: bold; display: inline-block; transition: all 0.3s; cursor: pointer; font-size: 1rem; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  font-display: swap;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Performance optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* Advanced image optimization */

/* Header */
header {
  background: #2c3e50;
  color: white;
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #3498db;
}

/* Hero Section */







/* Services Section */







/* About Section */
.about {
  padding: 4rem 0;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* Contact Section */




/* Footer */
footer {
  background: #1a252f;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Gallery Section */













/* Booking Modal */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.booking-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.close-booking {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  font-size: 1.75rem;
  cursor: pointer;
  color: #fff;
  border: none;
  background: #e74c3c;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.close-booking:hover {
  background: #c0392b;
  transform: scale(1.05);
}

.booking-form {
  display: grid;
  gap: 1.5rem;
}

.booking-form h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
  padding-right: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row--three {
  grid-template-columns: 2fr 1fr 1.25fr;
}

@media (max-width: 480px) {
  .form-row--three {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--three .form-group:first-child {
    grid-column: 1 / -1;
  }
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

/* Form validation styles */
.form-group input:user-invalid,
.form-group select:user-invalid {
  border-color: #e74c3c;
}

.form-group input:user-valid,
.form-group select:user-valid {
  border-color: #27ae60;
}

.validation-message {
  font-size: 0.85rem;
  color: #e74c3c;
  margin-top: 0.35rem;
  display: none;
}

.date-picker {
  position: relative;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.time-slots-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.time-slot {
  padding: 0.75rem 0.5rem;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 0.9rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.time-slot:hover {
  border-color: #3498db;
  background: #f8f9fa;
}

.time-slot:active {
  transform: scale(0.97);
}

.time-slot.selected {
  background: #3498db;
  color: white;
  border-color: #3498db;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.time-slot.unavailable {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-booking {
  background: #e74c3c;
  color: white;
  padding: 1.125rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  margin-top: 1rem;
  min-height: 56px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.submit-booking:hover {
  background: #c0392b;
  box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.submit-booking:active {
  transform: scale(0.98);
}

.submit-booking:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mobile file upload improvements */
.file-upload-wrapper {
  position: relative;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border: 2px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  text-align: center;
  min-height: 80px;
  background: #fafafa;
}

.file-upload-label:hover,
.file-upload-label:focus-within {
  border-color: #3498db;
  background: #f0f7ff;
}

.file-upload-label .upload-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.file-upload-label .upload-text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.file-upload-label .upload-text strong {
  color: #3498db;
}

.file-upload-label input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

#photoPreview {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 0.75rem;
}

#photoList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.photo-item {
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Service Area Section */



/* Local Attractions Section */
.local-attractions {
  padding: 4rem 0;
  background: #ecf0f1;
}

.local-attractions h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.attraction-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attraction-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.attraction-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.attraction-card a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid #3498db;
  border-radius: 25px;
  transition: all 0.3s;
}

.attraction-card a:hover {
  background: #3498db;
  color: white;
}

/* Additional sections */
.local-areas {
  padding: 4rem 0;
  background: #f8f9fa;
}

.local-areas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}







.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}




@media (max-width: 768px) {

  .nav-links {
    display: none;
  }





  /* Mobile Booking Modal - Full Screen */
  .booking-modal.show {
    align-items: flex-start;
    padding: 0;
  }
  
  .booking-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    padding: 1rem;
    padding-top: 3.5rem;
    margin: 0;
    animation: slideUp 0.3s ease;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .close-booking {
    position: fixed;
    right: 0.75rem;
    top: 0.75rem;
    background: #e74c3c;
  }
  
  .booking-form {
    gap: 1.25rem;
  }
  
  .booking-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-right: 0;
    text-align: center;
  }
  
  /* Larger touch targets on mobile */
  .form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem;
    font-size: 16px;
    min-height: 52px;
    border-radius: 10px;
  }
  
  .form-group textarea {
    min-height: 100px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-row--three {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--three .form-group:first-child {
    grid-column: 1 / -1;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .time-slot {
    padding: 1rem;
    min-height: 52px;
    font-size: 1rem;
    border-radius: 10px;
  }
  
  .submit-booking {
    padding: 1.25rem 2rem;
    font-size: 1.15rem;
    min-height: 60px;
    border-radius: 10px;
    margin-top: 1.5rem;
    position: sticky;
    bottom: 1rem;
  }
  
  /* Mobile file upload */
  .file-upload-label {
    padding: 1.5rem;
    min-height: 90px;
  }
  
  .file-upload-label .upload-icon {
    font-size: 2rem;
  }
  
  .file-upload-label .upload-text {
    font-size: 1rem;
  }
  
  /* Add padding to body to account for sticky CTA */
  body {
    padding-bottom: 70px;
  }



  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .attraction-card {
    padding: 1.5rem;
  }

  .local-attractions h2 {
    font-size: 2rem;
  }
}

/* Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 1rem;
  z-index: 1001;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#cookie-consent-banner a {
  color: #3498db;
  text-decoration: underline;
}
.cookie-consent-accept {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-consent-close {
  background: transparent;
  color: white;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  #cookie-consent-banner {
    bottom: 70px;
    padding: 0.75rem;
  }
}

.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
  text-decoration: none;
}
.skip-nav:focus {
  top: 0;
}
