/* Luxury font family applied everywhere */
body, html, h1, h2, h3, h4, h5, h6, p, ul, ol, li, label, input, select, textarea, button, .form-control, .form-select, .btn, .navbar, .nav-link, .navbar-brand {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif !important;
  letter-spacing: 0.01em;
}
/* --- Luxury Timetable Styling --- */
.timetable-luxury {
  background: linear-gradient(135deg, #fff 80%, #e0ffe8 100%);
  border-radius: 1.5rem;
  border: 3px solid;
  border-image: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%) 1;
  box-shadow: 0 6px 32px 0 rgba(67, 233, 123, 0.13);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.3s;
}
.timetable-luxury:hover {
  box-shadow: 0 12px 48px 0 rgba(67, 233, 123, 0.22);
}
.timetable-table {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 1.08rem;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
}
.timetable-table td {
  padding: 0.5rem 0.7rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.timetable-table tr {
  transition: background 0.2s, color 0.2s;
}
.timetable-table tr:hover td {
  background: linear-gradient(90deg, #e0ffe8 0%, #fff 100%);
  color: #28a745;
}
/* Highlight today (JS will add .timetable-today) */
.timetable-table .timetable-today td {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(67, 233, 123, 0.13);
}
/* Increase gap between logo and navbar links */
.navbar-brand {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  margin-right: 7rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 2rem;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.navbar-brand:hover, .navbar-brand:focus {
  background: linear-gradient(90deg, #28a745 0%, #43e97b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* Luxury Navbar Link Styles */

.nav-luxury {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  margin: 0 1.2rem;
  padding-bottom: 0.3rem;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.nav-luxury::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #38f9d7 0%, #28a745 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nav-luxury:hover, .nav-luxury:focus {
  background: linear-gradient(90deg, #28a745 0%, #43e97b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(40, 167, 69, 0.18);
  transform: scale(1.10) translateY(-2px);
}
.nav-luxury:hover::after, .nav-luxury:focus::after {
  transform: scaleX(1);
}
/* Luxury Emerald Gradient Button Styles */
.btn-luxury {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  border: none;
  border-radius: 2.5rem;
  box-shadow: 0 4px 18px 0 rgba(40, 167, 69, 0.15), 0 1.5px 4px 0 rgba(56, 249, 215, 0.10);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.75rem 2.5rem;
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-luxury:hover, .btn-luxury:focus {
  background: linear-gradient(90deg, #28a745 0%, #43e97b 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(40, 167, 69, 0.22), 0 2px 8px 0 rgba(56, 249, 215, 0.13);
}
.btn-luxury:active {
  background: linear-gradient(90deg, #28a745 0%, #38f9d7 100%);
  color: #fff;
  transform: scale(0.98);
  box-shadow: 0 2px 8px 0 rgba(40, 167, 69, 0.12);
}
/* Luxury Header */
body, .body-luxury-gradient {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(120deg, #e8fff3 0%, #ffffff 100%);
  color: #232526;
  min-height: 100vh;
}

.luxury-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, #2d1e4f 0%, #28a745 100%);
  box-shadow: 0 4px 24px 0 rgba(40,167,69,0.10);
}
.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #e8fff3 0%, #28a745 80%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 2px 12px #e8fff3cc, 0 1px 2px #28a74544;
  position: relative;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), text-shadow 0.3s;
  display: inline-block;
}
.navbar-brand::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(40,167,69,0.08) 60%, transparent 100%);
  pointer-events: none;
  animation: logo-shine-text 2.8s linear infinite;
}
@keyframes logo-shine-text {
  0% { left: -120%; }
  100% { left: 120%; }
}
.luxury-logo {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: #ffd700;
  background: linear-gradient(135deg, #fffbe6 0%, #ffd700 60%, #28a745 100%);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px 0 rgba(40,167,69,0.18), 0 2px 8px 0 rgba(255,215,0,0.18);
  font-weight: bold;
  margin-right: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
}
.luxury-logo svg {
  display: block;
  height: 38px;
  width: 38px;
  margin-right: 0.2em;
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.18));
}
.luxury-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #ffd700;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-left: 0.1em;
  text-shadow: 0 2px 8px rgba(40,167,69,0.10);
}
.luxury-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 60%, transparent 100%);
  transform: rotate(25deg);
  pointer-events: none;
  animation: logo-shine 2.5s linear infinite;
}
@keyframes logo-shine {
  0% { transform: rotate(25deg) translateX(-60%); }
  100% { transform: rotate(25deg) translateX(100%); }
}
.luxury-logo:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 32px 0 rgba(40,167,69,0.22), 0 4px 16px 0 rgba(255,215,0,0.22);
}
.luxury-nav {
  display: flex;
  gap: 2rem;
}
.luxury-link {
  color: #fffbe6;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
}
.luxury-link:hover, .luxury-link.luxury-cta {
  color: #ffd700;
}
.luxury-link.luxury-cta {
  border: 2px solid #ffd700;
  border-radius: 2rem;
  padding: 0.3rem 1.2rem;
  background: #2d1e4f;
  margin-left: 1rem;
}

/* Hero Section */
.luxury-hero {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
}
.luxury-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: #ffd700;
  margin-bottom: 1rem;
}
.luxury-hero p {
  font-size: 1.3rem;
  color: #fffbe6;
  margin-bottom: 2rem;
}
.luxury-btn {
  display: inline-block;
  background: #ffd700;
  color: #2d1e4f;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(255,215,0,0.10);
  transition: background 0.2s, color 0.2s;
}
.luxury-btn:hover {
  background: #2d1e4f;
  color: #ffd700;
  border: 2px solid #ffd700;
}

/* Booking Form */
.luxury-booking {
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  background: rgba(45, 30, 79, 0.85);
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px 0 rgba(40,167,69,0.10);
  padding: 2.5rem 2rem;
}
.luxury-booking h2 {
  color: #ffd700;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.luxury-form-row {
  display: flex;
  gap: 1.2rem;
}
.luxury-form-row input,
.luxury-form-row select {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 2px solid #ffd700;
  background: #fffbe6;
  color: #2d1e4f;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.luxury-form-row input:focus,
.luxury-form-row select:focus {
  border-color: #28a745;
}
.luxury-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 2px solid #ffd700;
  background: #fffbe6;
  color: #2d1e4f;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
  min-height: 90px;
  resize: vertical;
  transition: border-color 0.2s;
}
.luxury-form textarea:focus {
  border-color: #28a745;
}
.luxury-btn-submit {
  width: 100%;
  margin-top: 1.2rem;
}

/* Footer */
.luxury-footer {
  text-align: center;
  padding: 1.5rem 0 0.7rem 0;
  color: #fffbe6;
  font-size: 1rem;
  opacity: 0.8;
}

/* Injectable Services Section - Emerald & White Theme */
#featured-3 {
  background: linear-gradient(120deg, #e8fff3 0%, #ffffff 100%);
  border-radius: 2.5rem;
  box-shadow: 0 8px 40px 0 rgba(40, 167, 69, 0.10), 0 1.5px 8px #28a74522;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: visible;
}
#featured-3 h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: #28a745;
  text-shadow: 0 2px 12px #fff, 0 1px 2px #28a74544;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}
.feature {
  background: rgba(255,255,255,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(40, 167, 69, 0.10), 0 1.5px 8px #28a74522;
  padding: 2.2rem 1.5rem 2.5rem 1.5rem;
  position: relative;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, background 0.35s;
  overflow: hidden;
  border: 1.5px solid #28a74533;
}
.feature:hover {
  transform: translateY(-10px) scale(1.035) rotate(-1deg);
  box-shadow: 0 8px 40px 0 #28a74533, 0 2px 16px #28a74533;
  background: #e8fff3;
  border-color: #28a74599;
}
.feature-icon {
  background: linear-gradient(120deg, #e8fff3 0%, #28a745 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px #28a74522, 0 1px 2px #28a74522;
  border-radius: 1.2rem !important;
  font-size: 2.8rem !important;
  margin-bottom: 1.2rem !important;
  position: relative;
  z-index: 2;
  animation: icon-float 2.5s ease-in-out infinite alternate;
}
@keyframes icon-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px) scale(1.08); }
}
.feature h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  color: #28a745;
  margin-top: 0.5rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px #fff, 0 1px 2px #28a74544;
}
.feature p {
  color: #232526;
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}
.feature ul {
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  padding-left: 1.1rem;
}
.feature ul li {
  color: #232526;
  font-size: 1.04rem;
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-left: 1.2em;
}
.feature ul li::before {
  content: '\2726';
  color: #28a745;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.1em;
  opacity: 0.85;
  transition: color 0.3s;
}
.feature ul li:hover::before {
  color: #fff;
}
.feature .note {
  color: #28a745;
  font-size: 0.95em;
  font-style: italic;
  margin-left: 0.5em;
}
@media (max-width: 700px) {
  .luxury-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .luxury-nav {
    gap: 1rem;
  }
  .luxury-booking {
    padding: 1.2rem 0.5rem;
  }
  .luxury-form-row {
    flex-direction: column;
    gap: 0.7rem;
  }
}
@media (max-width: 991px) {
  #featured-3 {
    padding: 2rem 0.5rem;
    border-radius: 1.2rem;
  }
  .feature {
    padding: 1.2rem 0.7rem 1.5rem 0.7rem;
    border-radius: 1rem;
  }
}

/* Booking form container: light green and white like Injectable Services */
#booking-form {
  background: linear-gradient(120deg, #e8fff3 0%, #ffffff 100%);
  border-radius: 2.5rem;
  box-shadow: 0 8px 40px 0 rgba(40, 167, 69, 0.10), 0 1.5px 8px #28a74522;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: visible;
}
@media (max-width: 991px) {
  #booking-form {
    padding: 2rem 0.5rem;
    border-radius: 1.2rem;
  }
}

#booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#booking-form .form-control:focus,
#booking-form .form-select:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffd700; /* Gold border on focus */
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25); /* Gold glow on focus */
  color: #ffffff;
}

#booking-form .form-select option {
  background-color: #343a40; /* Dark background for dropdown options */
  color: #ffffff;
}

/* Optgroup styling for the booking form select */
#booking-form .form-select optgroup {
  font-style: normal;
  font-weight: bold;
  background-color: #495057; /* Slightly lighter dark for optgroup label */
  color: #ffd700; /* Gold color for optgroup label */
}

#booking-form .btn-warning {
  background-color: #ffd700; /* Gold background */
  border-color: #ffd700; /* Gold border */
  color: #212529; /* Dark text for contrast */
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

#booking-form .btn-warning:hover {
  background-color: #e0c000; /* Darker gold on hover */
  border-color: #d3b000; /* Darker gold border on hover */
  transform: translateY(-2px);
}

/* Emerald color for main heading and lead paragraph */
.emerald-title {
  color: #28a745 !important;
  text-shadow: 0 2px 12px #e8fff3cc, 0 1px 2px #28a74544;
}
.emerald-lead {
  color: #28a745 !important;
  font-weight: 500;
}

/* Emerald color for all form text and labels (not inputs) */
#booking-form label,
#booking-form .form-label {
  color: #28a745 !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Remove emerald color from input fields, selects, and placeholders */
#booking-form .form-control,
#booking-form .form-select,
#booking-form input,
#booking-form textarea,
#booking-form option,
#booking-form ::placeholder {
  color: initial !important;
  background: initial;
  border-color: initial;
  box-shadow: none;
}

/* Emerald color for service section headings */
.emerald-text {
  color: #28a745 !important;
  text-shadow: 0 1px 6px #e8fff3cc, 0 1px 2px #28a74544;
}

/* Preferred Service dropdown: light green background and emerald text */
#booking-form .form-select {
  background: #f1f3f2 !important;
  color: #28a745 !important;
  border: 1.5px solid #28a745;
  font-weight: 500;
}
#booking-form .form-select:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem #28a74522;
}
#booking-form .form-select option,
#booking-form .form-select optgroup {
  background: #ffffff !important;
  color: #28a745 !important;
}
