/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #111;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* === HERO SECTION === */
.main-hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 60px 10vw;
  flex-wrap: wrap;
  background-color: white;
}

.hero-left,
.hero-right {
  flex: 1 1 50%;
  max-width: 600px;
  min-width: 300px;
  box-sizing: border-box;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}



.hero-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}



.tagline {
  font-family: serif;
  font-size: 1.2rem;
  margin-top: 12px;
  text-align: center;
  width: 100%;
}

.region {
  font-family: serif;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  color: #444;
  margin-top: 6px;
  width: 100%;
}

.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 10px;
}

.contact-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  color: #555;
  transform: translateX(4px);
}

.book-now {
  background-color: black;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}


.book-now:hover {
  background: #333;
  transform: scale(1.05);
}

.hero-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photo {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-caption {
  margin-top: 20px;
  text-align: center;
}

.hero-caption h2 {
  font-size: 1.75rem;
  margin: 1rem 0 0.25rem;
}

.hero-caption h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: normal;
}

.hero-caption p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
}

/* === SERVICES SECTION === */
.services-section {
  background-color: #111;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.services-content {
  max-width: 1400px;
  margin: 0 auto;
}

.services-content h2 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.service-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}

.service-column {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
}

.service-block {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.service-block p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-preview {
  padding: 0 1rem;
}

.toggle-service {
  background-color: #fff;
  color: #111;
  border: none;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.toggle-service:hover {
  background-color: #ddd;
  transform: scale(1.05);
}

.service-full {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
  padding: 0 1rem;
}

.service-full.open {
  max-height: 1500px;
  opacity: 1;
}

/* === ABOUT SECTION === */
.about-section {
  background-color: #fff;
  padding: 80px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
  align-items: center;
}

.about-text, .about-photo {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === FOOTER === */
.about-footer {
  width: 100%;
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-top: 1px solid #ccc;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.footer-logo {
  max-width: 130px;
  height: auto;
}

.facebook-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4267B2;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

.facebook-link:hover {
  text-decoration: underline;
}

.social-icon {
  width: 20px;
  height: 20px;
}

.cert-logo {
  max-height: 130px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .service-columns {
    flex-direction: column;
    align-items: center;
  }

  .service-column {
    margin: 20px 0;
  }

  .service-image {
    margin: 40px 0 !important;
    width: 100%;
    max-width: 600px;
  }

  .service-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
  }
}

@media (max-width: 768px) {
  .main-hero {
    flex-direction: column;
    padding: 40px 5vw;
    gap: 40px;
  }

  .hero-left, .hero-right {
    max-width: 100%;
    align-items: center;
  }

  .contact-info {
    align-items: center;
  }

  .book-now {
    width: 100%;
    text-align: center;
  }

  .footer-row {
    flex-direction: column;
    gap: 20px;
  }

  .facebook-link {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .book-now {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  .hero-caption h2 {
    font-size: 1.4rem;
  }

  .service-block h3 {
    font-size: 1.25rem;
  }

  .cert-logo {
    max-height: 80px;
  }
}
