/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

h1, h2, h3 {
  color: #3b2f2f; /* Earthy brown for headings */
}

p {
  color: #5a5a5a; /* Neutral dark gray text */
  line-height: 1.6;
}

/* Header Section */
.header {
  background: #3b2f2f; /* Deep brown for a natural feel */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: #a3c586; /* Earthy green accent */
}

.agency-icon {
  width: 30px; /* Adjust size of the icon */
  height: 30px;
  margin-right: 10px; /* Space between icon and text */
}

/* Navigation */
.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a3c586;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}


/* Contact Us Section */
.contact-us {
  position: relative;
  padding: 60px 15px;
  background-color: #f5f1e3; /* Soft beige for natural feel */
  text-align: center;
  overflow: hidden;
}

.contact-us .bubble {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #a3c586; /* Earthy green */
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.contact-us .bubble:nth-child(1) {
  top: 10%;
  left: 20%;
}

.contact-us .bubble:nth-child(2) {
  bottom: 15%;
  right: 25%;
}

.contact-us .bubble:nth-child(3) {
  top: 50%;
  left: 50%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-form, .contact-details {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Map Section */
.map-section {
  padding: 40px 15px;
  background: #f5f1e3;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Footer Section */
.footer {
  background-color: #3b2f2f; /* Deep earthy brown */
  color: #fff;
  padding: 40px 15px;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-branding {
  flex: 1;
  min-width: 200px;
}

.footer-branding h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #a3c586; /* Earthy green accent */
}

.footer-branding h2 .white-text {
  color: #fff; /* Make "Go" white */
}

.footer-branding p {
  font-size: 0.9rem;
  color: #f5f1e3;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a3c586;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-contact i {
  margin-right: 10px;
  color: #a3c586;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #a3c586;
}

/* Copyright Section */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #a3c586;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #f5f1e3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-branding h2 {
    font-size: 1.5rem;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 1rem;
  }

  .footer-links a,
  .footer-contact p,
  .footer-social a {
    font-size: 0.8rem;
  }
}