:root {
  --blue: #1e73be;
  --green: #6fbf4a;
  --dark: #1f2933;
  --light: #f8fafc;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: url('image1.png') center/cover no-repeat fixed;
  background-position: center 80px;
  color: var(--dark);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 3px solid var(--green);
  z-index: 1000;
}

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

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--blue);
}

.logo img {
  height: 70px;
  width: auto;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 45px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.05rem;
}

.nav-links a:hover {
  color: var(--blue);
}

/* NAV BUTTON */
.nav-button {
  padding: 12px 24px;
  background-color: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-button:hover {
  background-color: #173bb0;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
}

.hero h2, .hero p {
  display: none;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 20px auto;
  background: rgba(248, 250, 252, 0.95);
  border-radius: 12px;
}

section h3 {
  color: var(--blue);
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
}

/* INTRO */
.intro {
  text-align: center;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 40px;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.intro-location {
  color: var(--green);
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card h4 {
  color: var(--green);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.card ul li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.card ul li:last-child {
  border-bottom: none;
}

/* SCHEDULE */
.schedule {
  text-align: center;
  background: rgba(247, 249, 252, 0.95);
  border-radius: 12px;
}

.schedule p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.1rem;
}

.schedule-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #28a745;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.schedule-button:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
}

/* CONTACT */
.contact {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.contact p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-button {
  margin-top: 20px;
  padding: 14px 28px;
  background-color: var(--blue);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
  background-color: #173bb0;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: rgba(31, 41, 51, 0.95);
  color: #e5e7eb;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .logo img {
    height: 60px;
  }
}