/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #f4ffec;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  color: #f4ffec;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f4ffec;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #4fc874;
  font-weight: 700;
}

/* DROPDOWN MENU */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #4fc874;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  list-style: none;
}

.nav-links li:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background-color: #82d89d;
  color: #1b382b;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 15px 25px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  color: #f4ffec;
  background: linear-gradient(to bottom, #3b574d, #19362e);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.btn-contact {
  background: linear-gradient(to bottom, #82d89d, #4fc874);
  color: #1b3f31;
  text-decoration: none; 
}

.btn-contact:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-ambassador {
  text-decoration: none; 
}

/* HAMBURGER */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
  height: 3px;
  border-radius: 2px;
  background-color: #f4ffec;
}

/* MOBILE NAV */
.mobile-nav {
  justify-content: start;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 50%;
  align-items: right;
  height: 100vh;
  background-color: #13382d;
  padding: 80px 20px 20px;
  z-index: 9000;
  flex-direction: column;
}

.mobile-nav.open {
  transform: translateX(100%);
}

/* Dropdown in mobile */
.mobile-nav .dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-left: 15px;
}

.mobile-nav .dropdown.open .dropdown-menu {
  display: flex;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav .mobile-links a {
  color: #f4ffec;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav .dropdown-menu {
  background-color: #4fc874;
  padding: 10px;
  border-radius: 8px;
  display: block;
  position: static;
  margin-top: 10px;
}

.mobile-buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #f4ffec;
  cursor: pointer;
}

.mobile-nav .dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-left: 15px;
}

.mobile-nav .dropdown.open .dropdown-menu {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('assets/field.jpg') center/cover no-repeat;
  padding: 120px 5%;
  color: #ffffff;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Who We Are Section */
.about-overview {
  background-color: #ffffff;
  padding: 80px 5%;
}

.about-overview-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1b382b;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.about-text p {
  font-size: 1.05rem;
  color: #444;
  text-align: left;
}

/* Image Column */
.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* What Sets Us Apart Section */
.about-values {
  background-color: #ffffff;
  padding: 80px 5%;
  text-align: center;
}

.about-container h2 {
  font-size: 2rem;
  color: #1b382b;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-container p {
  font-size: 1.05rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  color: #2c4439;
  font-size: 1rem;
  font-weight: 600;
}

.about-values {
  background-color: #ffffff;
  padding: 80px 5%;
}

.about-values-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.values-image {
  flex: 1;
  min-width: 300px;
}

.values-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.values-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.values-text h2 {
  font-size: 2rem;
  color: #1b382b;
  text-align: left;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  color: #2c4439;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-values-container {
    flex-direction: column;
    text-align: center;
  }

  .values-text h2 {
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

.about-videos {
  background-color: #ffffff;
  padding: 80px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
}

.about-videos-container h2 {
  font-size: 2.2rem;
  color: #1b382b;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-videos-container p {
  font-size: 1.05rem;
  color: #4fc874;
  margin-bottom: 40px;
}

.custom-video-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
}

.thumbnail-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
  font-size: 1rem;
}

.play-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.custom-video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: none;
}

.cta-banner {
  background: url('assets/city2.png') center center/cover no-repeat;
  position: relative;
  padding: 100px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  background: linear-gradient(135deg, rgba(27, 56, 43, 0.9), rgba(79, 200, 116, 0.8));
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;

}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e6fff0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;

}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;

}

.primary-btn {
  background-color: #ffffff;
  color: #1b382b;
  border: none;
}

.primary-btn:hover {
  background-color: #e6fff0;
  transform: translateY(-3px);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.footer {
  background-color: #1b382b;
  color: #ffffff;
  padding: 60px 5% 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d9eedd;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #82d89d;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #4fc874;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #d9eedd;
}

.footer-socials a {
  margin-right: 10px;
  display: inline-block;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-socials img:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #a5cdb8;
  border-top: 1px solid #2e5546;
  padding-top: 15px;
}

/* Hide mobile nav and hamburger on desktop */
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }

  .hamburger {
    display: none;
  }
}