:root {
  --primary-color: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #e8f5e9;
  --secondary-color: #81c784;
  --accent-color: #fdd835;

  --text-color: #2c3e50;
  --text-light: #546e7a;
  --bg-color: #f9fafb;
  --card-bg: #ffffff;

  --border-color: #e0e0e0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 20px rgba(46, 125, 50, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--primary-light);
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links li a {
  color: var(--text-color);
  font-weight: 500;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.btn-nav {
  background: var(--primary-light);
  color: var(--primary-dark) !important;
  padding: 8px 18px;
  border-radius: 20px;
}

.btn-nav:hover {
  background: var(--primary-color);
  color: white !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Section Basics */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  margin: 0 auto 15px;
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: white;
}

/* About Section */
.about-section {
  background: white;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-image img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 350px;
  height: 400px;
  object-fit: cover;
}

.about-details {
  text-align: center;
  max-width: 700px;
}

.about-text {
  margin-bottom: 30px;
}

.cert-list {
  text-align: left;
  margin: 20px auto;
  display: inline-block;
}

.cert-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: var(--text-color);
}

.cert-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.about-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background: var(--bg-color);
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (min-width: 900px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .about-details {
    text-align: left;
    max-width: 600px;
  }

  .about-stats {
    justify-content: flex-start;
  }
}

/* Services Section */
.services-section {
  background: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--text-color);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Visiting Hours */
.hours-section {
  background:
    linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hours-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-card h2 {
  margin-bottom: 30px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.location-hours h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.location-hours ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  opacity: 0.9;
}

.online {
  color: #fdd835;
}

.cta-box p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.btn-outline {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid white;
  color: white;
  border-radius: 50px;
  font-weight: 600;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background: white;
  text-align: center;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  text-align: left;
  padding-top: 20px;
}

.contact-item .icon {
  font-size: 1.5rem;
  background: var(--primary-light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-dark);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  margin-top: 20px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer-content p {
  margin-bottom: 10px;
}

.developer-credit a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  } /* Simplified mobile nav for now */
  .hero h1 {
    font-size: 2.5rem;
  }
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 1.2rem;
  }
  .nav-container {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 50px 0;
  }

  .booking-card {
    padding: 20px 15px;
    margin: 20px auto;
    border-radius: 8px;
  }

  .booking-card header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
  }

  .booking-card header .btn-secondary {
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .radio-card {
    padding: 12px;
  }

  .form-actions .btn-primary {
    width: 100%;
  }

  .alert-info {
    font-size: 0.85rem;
    padding: 10px;
  }
}

/* Booking Page Specific Overrides */
.booking-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 40px auto;
  max-width: 700px;
}

.booking-card h2 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary-dark);
}

.form-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.2s;
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color);
}

.hidden {
  display: none;
}

/* Radio Cards */
.radio-group {
  display: flex;
  gap: 15px;
}

.radio-card {
  flex: 1;
  display: block;
  cursor: pointer;
  position: relative;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.2s;
}

.radio-card:hover {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-card input:checked + .radio-label {
  color: var(--primary-dark);
  font-weight: 700;
}

.radio-card:has(input:checked) {
  border-color: var(--primary-color);
  background: var(--primary-light);
}

.alert-info {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.form-actions {
  margin-top: 20px;
}

/* Mobile Responsiveness & Hamburger Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 20px 0;
    gap: 15px;
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  /* Admin & User Dashboard Responsiveness */
  .dashboard-container, .page-wrap, .dashboard-wrap {
    padding: 15px 10px;
    margin: 10px auto;
  }
  .top-bar {
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px;
    padding: 16px;
  }
  .top-bar-actions {
    justify-content: center;
    width: 100%;
  }
  .nav-tabs {
    width: 100%;
    justify-content: stretch;
  }
  .nav-tab {
    flex: 1;
    text-align: center;
  }
  
  /* Responsive Tables */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }
  
  /* Filter forms and buttons */
  .filters form {
    flex-direction: column;
    align-items: stretch !important;
  }
  .filters .form-group {
    width: 100%;
  }
  .filters button {
    width: 100% !important;
  }
}
