:root {
  --dark-green: #19362e;
  --mid-green: #2c4439;
  --light-green: #4fc874;
  --off-white: #f4ffec;
  --white: #ffffff;
  --black-transparent: rgba(0, 0, 0, 0.25);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--dark-green);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== Hero Section ========== */
.hero-wrapper {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--off-white);
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

#hero-text {
  transition: opacity 0.5s ease-in-out;
}


/* ========== Navbar ========== */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.logo img {
  height: 40px;
}

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

.nav-links li a {
  color: var(--off-white);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--light-green);
  font-weight: 600;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown .arrow {
  margin-left: 4px;
  transition: transform 0.3s;
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 12px var(--black-transparent);
  z-index: 10;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.dropdown.active .dropdown-menu {
  display: block;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem; /* smaller font */
  line-height: 1.3;  /* tighter spacing */
  white-space: normal; /* allow wrapping */
  max-width: 220px;    /* optional width control */
  color: var(--dark-green);
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: var(--off-white);
}

/* ========== Buttons ========== */
.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px var(--black-transparent);
}

.btn-ambassador {
  background: linear-gradient(135deg, var(--mid-green), var(--dark-green));
  color: var(--off-white);
}

.btn-contact {
  background: var(--light-green);
  color: var(--dark-green);
}

/* ========== Hamburger & Mobile Menu ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 3;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--off-white);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: var(--dark-green);
  padding: 30px 20px;
  transition: right 0.4s ease-in-out;
  z-index: 9;
}

.mobile-menu.open {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  font-size: 1.8rem;
  color: var(--off-white);
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu ul li a {
  color: var(--off-white);
  font-size: 1.1rem;
  line-height: 1.2;
}

.mobile-menu ul .dropdown-menu {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  background: transparent;
}

.mobile-menu ul .dropdown:hover .dropdown-menu {
  display: flex;
}

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

.mobile-buttons .btn {
  padding: 14px;
  text-align: center;
  color: var(--off-white);
}
.mobile-menu ul .dropdown-menu {
  display: none;
  flex-direction: column;
  margin-left: 15px;
  background: #4fc874;
  padding: 10px;
  border-radius: 8px;
}

.mobile-menu ul .dropdown:hover .dropdown-menu {
  display: flex;
}

.mobile-menu ul .dropdown-menu li a {
  color: #f4ffec;
  padding: 8px 10px;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.mobile-menu ul .dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ——— HERO TITLE TEXT ——— */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--off-white);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* ——— INTRO SECTION ——— */
.intro-section {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 60px 5%;
  text-align: center;
}
.intro-text {
  font-size: 2rem;
  margin-bottom: 20px;
}
.we-are {
  font-weight: 400;
  color: var(--mid-green);
}
.rotating-text-container {
  position: relative;
}
.rotating-text {
  font-weight: 700;
  color: var(--dark-green);
}

/* Buttons below intro */
.nav-buttons2 {
  margin-top: 20px;
  display: inline-flex;
  gap: 15px;
}
.btn-contact2 {
  background: var(--light-green);
  color: var(--dark-green);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 6rem;
  font-weight: 700;
  color: #f4ffec;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}

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

  .nav-links.active {
    display: flex;
    flex-direction: column;
    background-color: #0e1a2b;
    position: absolute;
    top: 70px;
    right: 5%;
    width: 200px;
    padding: 20px;
  }

  .hamburger {
    display: flex;
  }
}

.intro-section {
  background-color: #f4ffec;
  padding: 60px 5% 80px;
  text-align: center;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 3rem;
  color: #1b382b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.we-are {
  font-weight: 400;
  font-size: 2.8rem;
  color: #4fc874;
}

.rotating-text-container {
  height: 3.6rem;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.rotating-text {
  display: flex;
  flex-direction: column;
  animation: scrollWords 16s ease-in-out infinite;
  font-weight: 700;
  color: #1b382b;
}

.rotating-text div {
  height: 3.6rem;
  line-height: 3.6rem;
  font-size: 3rem;
  text-align: left;
}

@keyframes scrollWords {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-3.6rem); }
  40%  { transform: translateY(-7.2rem); }
  60%  { transform: translateY(-10.8rem); }
  80%  { transform: translateY(-14.4rem); }
  100% { transform: translateY(0); }
}

.intro-paragraph {
  font-size: 1.0rem;
  line-height: 1.5;
  margin-top: 24px;
  color: #2b4a3c;
  font-weight: 400;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-buttons2 {
  padding-top: 20px;
}

.btn-contact2 {
  padding: 15px 50px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #82d89d, #4fc874);
  color: #1b3f31;
  border: none;
}

.mvv-section {
  background: linear-gradient(rgba(27, 56, 43, 0.65), rgba(27, 56, 43, 0.85)),
              url('assets/city.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #f4ffec;
}

.mvv-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mvv-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.mvv-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.mvv-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.mvv-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.mvv-card p,
.mvv-card ul {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #e8fce0;
}

.mvv-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

/* Value Proposition */
.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.value-prop-card {
  background-color: #4fc874;
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.value-prop-card:hover {
  transform: translateY(-5px);
  background-color: #3da962;
}

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

.value-prop-card {
  background-color: #f4ffec;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  font-size: 1.05rem;
  font-weight: 600;
  color: #023023;
  display: inline-block;
  background: linear-gradient(to bottom, #82d89d, #4fc874);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Depth shadow */
  transition: all 0.3s ease;
}

.value-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.success-score-section {
  background: radial-gradient(ellipse at top left, #e7f8ec 0%, #ffffff 100%);
  padding: 100px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  overflow-x: hidden;
}

.success-score-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1b382b;
  margin-bottom: 20px;
}

.success-score-subtext {
  color: #2c4439;
  font-size: 1.1rem;
  margin: 0 auto 60px;
  max-width: 600px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.score-card {
  background: linear-gradient(to bottom right, #1b382b, #2f5c45);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: #ffffff;
  transform: translateY(40px);
  opacity: 0;
  text-align: center;
}

.score-card.visible {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.8s ease;
}

.score-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.counter {
  font-size: 2.6rem;
  font-weight: 700;
  color: #4fc874;
  margin: 8px 0;
}

.score-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #f1fff6;
  margin-top: 12px;
  line-height: 1.5;
}

.property-section {
  background-color: #f4ffec;
  padding: 100px 5% 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.property-header {
  text-align: center;
  margin-bottom: 60px;
}

.property-header h2 {
  font-size: 2.6rem;
  color: #1b382b;
  font-weight: 800;
  margin-bottom: 12px;
}

.property-header p {
  font-size: 1.15rem;
  color: #2c4439;
  max-width: 720px;
  margin: 0 auto;
}

.property-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.property-showcase {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.property-showcase:hover {
  transform: scale(1.01);
}

.property-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 56, 43, 0.8), rgba(0,0,0,0.1));
  z-index: 0;
}

.property-info {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 30px;
  width: 100%;
  backdrop-filter: blur(2px);
}

.property-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.property-info .location {
  font-size: 1rem;
  color: #a4f8c7;
  margin-bottom: 20px;
}

.property-link {
  display: inline-block;
  padding: 10px 24px;
  background-color: #4fc874;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.property-link:hover {
  background-color: #3cb265;
}


/* Founders section */
.founders-section {
  background-color: #ffffff;
  padding: 100px 5% 80px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.founders-header {
  text-align: center;
  margin-bottom: 60px;
}

.founders-header h2 {
  font-size: 2.4rem;
  color: #1b382b;
  font-weight: 800;
}

.founders-header p {
  font-size: 1.1rem;
  color: #4b6156;
  margin-top: 10px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.founder-card {
  background: #f4ffec;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 25px;
}

.founder-card:hover {
  transform: translateY(-6px);
}

.founder-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #4fc874;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(79, 200, 116, 0.4);
}

.founder-details {
  text-align: center;
}

.founder-details h3 {
  font-size: 1.4rem;
  color: #1b382b;
  margin-bottom: 8px;
  font-weight: 700;
}

.founder-details .title {
  font-size: 0.95rem;
  color: #4fc874;
  font-weight: 600;
  margin-bottom: 18px;
}

.bio p {
  font-size: 0.95rem;
  color: #2b4a3c;
  line-height: 1.6;
  margin-bottom: 14px;
}


.testimonial-section {
  background: linear-gradient(to bottom right, #f4ffec, #ffffff);
  padding: 100px 5%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: #1b382b;
  font-weight: 800;
}

.testimonial-header p {
  font-size: 1.1rem;
  color: #2c4439;
  margin-top: 10px;
  max-width: 600px;
  margin: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #d9eedd;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background-color: #f6fff7;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.quote-icon {
  font-size: 3rem;
  color: #4fc874;
  margin-bottom: 10px;
}

.testimonial-card .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #2c4439;
  margin-bottom: 25px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #4fc874;
}

.client-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1b382b;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 0.9rem;
  color: #4fc874;
}

/* Scroll animation */
.animated {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

.ambassador-header h2 {
  font-size: 2.2rem;
  color: #1b382b;
  font-weight: 700;
}

.ambassador-header p {
  font-size: 1.1rem;
  color: #2c4439;
  margin-top: 10px;
}

.ambassador-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ambassador-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.ambassador-card:hover {
  transform: translateY(-5px);
}

.ambassador-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #4fc874;
}

.ambassador-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b382b;
  margin-bottom: 6px;
}

.ambassador-card .recognition {
  font-size: 0.95rem;
  color: #4fc874;
  margin-bottom: 10px;
  font-weight: 600;
}

.ambassador-card .impact {
  font-size: 0.95rem;
  color: #2c4439;
  line-height: 1.5;
}

.animated {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animated.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

.faq-header h2 {
  font-size: 2.4rem;
  color: #1b382b;
  font-weight: 800;
}

.faq-header p {
  font-size: 1.1rem;
  color: #2c4439;
  margin-top: 10px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 820px;
  margin: 50px auto 0;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid #d9eedd;
  background: #f4ffec;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  font-size: 1rem;
  background: none;
  color: #1b382b;
  border: none;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-icon {
  font-size: 1.4rem;
  color: #4fc874;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background-color: #ffffff;
  font-size: 0.95rem;
  color: #2c4439;
  line-height: 1.7;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 22px 20px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.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;
}
