:root {
  --primary-color: #000000;
  --secondary-color: #333333;
  --accent-color: #000000;
  --text-color: #111827;
  --text-muted: #67768e;
  --bg-light: #f9f6fe;
  --bg-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
  overflow-x: hidden;
  padding-bottom: 120px; /* Space for the fixed bottom bar */
}

a {
  text-decoration: none;
  color: inherit;
}

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

header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px 0;
  text-align: center;
}

.logo {
  font-family: 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.hero {
  position: relative;
  text-align: center;
  background-color: var(--bg-white);
  padding-bottom: 10px;
}

.hero img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.hero-contact-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-content {
  margin-top: 40px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 15px;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.cta-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.services {
  padding: 80px 0;
  background-color: var(--bg-white);
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card p {
  color: var(--text-muted);
}

.features {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.feature-item {
  padding: 20px;
}

.feature-item h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 15px 0 10px;
}

footer {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 0 20px;
  text-align: center;
}

.disclaimer {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 8px;
}

.copyright {
  font-size: 0.9rem;
  color: #999;
}

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.fixed-call-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  background-color: var(--accent-color);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s, transform 0.2s;
}

.fixed-call-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

/* Booking Form Styles */
.booking {
  padding: 10px 0 80px;
  background-color: var(--bg-white);
  text-align: center;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.submit-button {
  width: 100%;
  background-color: var(--accent-color);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.submit-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

/* Radio Options List */
.options-list .step-label {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 10px;
  background-color: var(--bg-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.radio-option:hover {
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.radio-option input[type="radio"] {
  width: auto;
  padding: 0;
  margin-bottom: 0;
  margin-right: 15px;
  transform: scale(1.2);
  cursor: pointer;
}

.radio-option label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-color);
  width: 100%;
}

