/* Reset and basic setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #0f172a;
  color: #f8fafc;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1e293b;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
}

.nav-links a {
  color: #f8fafc;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  font-weight: bold;
}

.nav-links a:hover {
  color: #38bdf8;
}

/* Hero */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: url('hero-bg.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #38bdf8;
  color: #0f172a;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Form */
.form-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1e293b;
  border-radius: 10px;
}

.form-container h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
}

form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

form input[type="text"],
form input[type="date"],
form input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  background-color: #334155;
  color: #f8fafc;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.slot-btn {
  background-color: #334155;
  color: #f8fafc;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.slot-btn.active,
.slot-btn:hover {
  background-color: #38bdf8;
  color: #0f172a;
}

form button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  background-color: #38bdf8;
  border: none;
  color: #0f172a;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

form button[type="submit"]:hover {
  background-color: #0ea5e9;
}

/* About */
#about {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Testimonials */
/* .testimonials {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background-color: #1e293b;
  border-radius: 10px;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial {
  margin-bottom: 1rem;
  font-style: italic;
  color: #e2e8f0;
} */

/* Contact Section */
.contact-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background-color: #1e293b;
  border-radius: 10px;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
}

.contact-info a {
  color: #38bdf8; /* Link color for phone number and social links */
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-link {
  margin: 0 0.5rem;
}