/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Top Bar */
.top-bar {
  background: #f9f9f9;
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.9rem;
  padding: 8px 2%;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left span {
  margin-right: 20px;
  color: #666;
}

.book-btn {
  background-color: #8BC34A;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(139, 195, 74, 0.3);
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #7CB342;
  box-shadow: 0 6px 18px rgba(139, 195, 74, 0.4);
}

/* Header */
.main-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 16px 2%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Group */
.logo-group {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

.logo-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.logo-text p {
  font-size: 0.85rem;
  color: #8BC34A;
  font-weight: 500;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2px;
  width: 0;
  background: #8BC34A;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    right: 2%;
    top: 100%;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.contact-hero {
  position: relative;
  height: 90vh;
  background: url('images/medium-shot-colleagues-.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  animation: slideFadeIn 1.4s ease-out forwards;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #96c93d;
}

.contact-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  .contact-hero-content p {
    font-size: 1rem;
  }
}




.contact-details-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 450px;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.contact-info .contact-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.contact-list p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.7rem;
}

.contact-list a {
  color: #5b8c00;
  text-decoration: none;
}

.contact-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  background: #5b8c00;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-cta:hover {
  background: #4b7600;
  transform: translateY(-2px);
}

.contact-map {
  flex: 1 1 450px;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-map {
    width: 100%;
  }
}




.site-footer {
  background-color: #1e1e1e;
  color: #eaeaea;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #8dc63f;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col p,
.footer-col ul li {
  color: #bbb;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #8dc63f;
}

.footer-socials a {
  color: #bbb;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #8dc63f;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom span {
  color: #de0089;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
}
