:root {
  --primary: #0d7b6b;
  --secondary: #f4a261;
  --accent: #e76f51;
  --light-bg: #f8f9fa;
  --text: #2c3e50;
  --text-light: #6b7d8f;
  --border: #e0e6ed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

/* ========== NAVBAR ========== */
.navbar {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--primary);
}

/* ========== HERO SECTIONS ========== */
.hero-full {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text .subtitle {
  font-size: 1.8rem;
  margin: 10px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text .tagline {
  font-size: 1.1rem;
  margin: 10px 0 30px;
  opacity: 0.95;
}

.page-hero {
  background: linear-gradient(135deg, #0d7b6b, #14a088);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.5rem;
}

.page-hero p {
  margin: 10px 0 0;
  opacity: 0.9;
}

/* ========== HOURS INFO ========== */
.hours-info {
  background: white;
  border-top: 3px solid var(--secondary);
  padding: 30px 20px;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.hour-item h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1.2rem;
}

.hour-item p {
  margin: 0;
  color: var(--text-light);
}

.hour-item a {
  color: var(--secondary);
  font-weight: 600;
}

/* ========== CONTAINER & SECTIONS ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.center {
  text-align: center;
}

.welcome {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.welcome h2 {
  color: var(--primary);
  margin-top: 0;
}

/* ========== SERVICES GRID ========== */
.featured-services,
.service-detail,
.pricing-info,
.testimonials {
  margin-bottom: 50px;
}

.featured-services h2,
.pricing-info h2,
.testimonials h2,
.service-detail h2 {
  color: var(--primary);
  text-align: center;
  margin-top: 0;
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.service-preview {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-preview:hover {
  transform: translateY(-5px);
}

.service-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-preview h3 {
  padding: 0 15px;
  margin: 15px 0 8px;
}

.service-preview p {
  padding: 0 15px;
  margin: 0 0 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-preview a {
  display: inline-block;
  margin: 0 15px 15px;
  color: var(--primary);
  font-weight: 600;
}

/* ========== SERVICE DETAIL ========== */
.service-detail {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-img-large {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-text h2 {
  color: var(--primary);
  margin-top: 0;
}

.service-text .intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-text h3 {
  color: var(--secondary);
  margin-top: 20px;
}

.service-text ul {
  list-style: none;
  padding: 0;
}

.service-text li {
  padding: 8px 0 8px 25px;
  position: relative;
}

.service-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.price-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid var(--border);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.price-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(244, 162, 97, 0.2);
}

.price-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
}

.price-card .price {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 700;
}

.price-card .cash {
  color: var(--secondary);
}

.price-card .card {
  color: var(--accent);
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 60px 0;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.gallery-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--secondary);
}

.testimonial p {
  margin: 0 0 15px;
  font-style: italic;
  color: var(--text-light);
}

.testimonial .author {
  font-weight: 600;
  color: var(--primary);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #0d7b6b, #14a088);
  color: white;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0;
}

.cta-section h2 {
  color: white;
  margin-top: 0;
}

.cta-btn {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.3s;
  margin-top: 15px;
}

.cta-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* ========== BOOKING SECTION ========== */
.booking-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.booking-wrapper {
  grid-column: 1;
}

.booking-form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.booking-form-container h2 {
  color: var(--primary);
  margin-top: 0;
}

.booking-summary {
  background: #f0fdf4;
  border: 2px solid #86efac;
  padding: 30px;
  border-radius: 12px;
  color: #15803d;
}

.booking-summary h2 {
  color: #15803d;
  margin-top: 0;
}

.booking-summary p {
  margin: 8px 0;
}

.sms-ready-btn {
  margin: 18px 0 8px;
}

.sms-fallback {
  color: var(--text-light);
  font-size: 0.95rem;
}

.booking-info {
  grid-column: 2;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.info-box h4 {
  margin: 0 0 8px;
  color: var(--primary);
}

.info-box p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========== FORM STYLES ========== */
.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  color: var(--text);
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 123, 107, 0.1);
}

textarea {
  resize: vertical;
}

.radio-row {
  display: flex;
  gap: 20px;
}

.radio-row label {
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
}

.radio-row input {
  margin-right: 8px;
}

/* ========== FOOTER ========== */
footer {
  background: #2c3e50;
  color: white;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  margin-top: 0;
  color: var(--secondary);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--secondary);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-menu {
    gap: 15px;
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-info {
    grid-column: 1;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text .subtitle {
    font-size: 1.2rem;
  }

  .cta-section {
    padding: 30px 20px;
  }

  .featured-services,
  .service-detail,
  .pricing-info,
  .testimonials,
  .gallery-section {
    padding: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-container,
  .service-detail {
    padding: 25px;
  }
}
