@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Lora:wght@400;700&display=swap');

/* ==== THEME VARIABLES ==== */
:root {
  --main-bg: #f8f1e3;
  --main-dark: #274439;
  --main-green: #2e5649;
  --accent: #79bca7;
  --text: #274439;
  --text-light: #f8f1e3;
  --box-shadow: 0 4px 24px 0 rgba(20,40,26,0.12);
  --radius-lg: 1.2rem;
  --radius: 0.7rem;
  --transition: all .22s cubic-bezier(.4,0,.2,1);
  --font-main: 'Segoe UI', 'Lora', serif;
  --font-title: 'Cinzel', 'Constantia', serif;
}

/* ==== GLOBAL BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--main-bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

/* ==== NAVBAR ==== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: var(--main-bg);
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 5vw, 4rem);
  z-index: 100;
  box-shadow: 0 1px 0 0 rgba(39,68,57,.07);
  transition: var(--transition);
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--main-dark);
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-main);
  font-size: 1.05rem;
  color: var(--main-dark);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a:focus {
  background: var(--main-dark);
  color: var(--main-bg);
}
.navbar.alt-background {
  background: var(--main-green) !important;
}
.navbar.alt-background .nav-links a {
  color: var(--main-bg) !important;
}
@media (max-width: 850px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    background: var(--main-bg);
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 28px -10px rgba(39,68,57,0.09);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .navbar {
    height: 56px;
    padding: 0 1.3rem;
  }
  .logo {
    height: 34px;
  }
}

/* ==== HERO ==== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  height: auto;
  width: 100%;
  background: linear-gradient(140deg, var(--main-green) 0 40%, var(--main-bg) 100%);
  text-align: center;
  overflow: hidden;
  padding: clamp(2rem,10vw,5rem) 0 2rem 0;
  padding-top: 120px;  /* Adjust this based on your navbar height */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);  /* Semi-transparent black layer */
  z-index: 1;  /* Make sure the overlay is below the text but above the background */
}

.hero-content {
  z-index: 2;
  max-width: 700px;
  margin: auto;
}
.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  font-weight: 900;
  color: var(--main-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-content .building,
.hero-content .for-tomorrow {
  color: var(--main-bg);
  padding: 0 0.5rem;
  border-radius: 0.3em;
}
.hero-content .foundations {
  color: var(--main-green);
  opacity: 0.75;
}
.hero-content .subtitle {
  font-size: clamp(1rem,2vw,1.3rem);
  margin: 1rem 0 2.2rem 0;
  color: var(--main-dark);
  opacity: .92;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.story-btn, .get-started-btn {
  background: var(--main-bg);
  color: var(--main-green);
  border: 2px solid var(--main-green);
  padding: 0.95em 2em;
  border-radius: var(--radius-lg);
  font-size: 1.09rem;
  font-family: var(--font-main);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.get-started-btn {
  background: var(--main-green);
  color: var(--main-bg);
  border: 2px solid var(--main-green);
}
.story-btn:hover, .get-started-btn:hover {
  background: var(--accent);
  color: var(--main-bg);
  border-color: var(--accent);
}

/* ==== FEATURES ROW ==== */
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}
.feature-box {
  background: var(--main-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  min-width: 160px;
  max-width: 320px;
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: .7rem 0;
  flex: 1 1 220px;
}
.feature-title {
  font-family: var(--font-title);
  color: var(--main-green);
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.feature-desc {
  color: var(--main-dark);
  font-size: 1rem;
  opacity: .9;
  font-family: var(--font-main);
}

/* ==== ABOUT SECTION ==== */
.about-purpose-section {
  background: var(--main-bg);
  padding: clamp(2.2rem, 6vw, 4rem) 0;
}
.about-purpose-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 760px;
  margin-inline: auto;
}
.about-purpose-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 5vw, 2.4rem);
  color: var(--main-green);
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: .7rem;
}
.citation-source {
  font-size: 1.03em;
  color: var(--main-green);
  font-weight: 700;
}
.about-purpose-subtitle {
  font-size: 1.09rem;
  font-family: 'Lora', serif;
  color: #274439;
  margin: 0 auto;
  max-width: 900px;
  font-weight: 400;
  line-height: 1.55;
}
.about-purpose-bar {
  width: 74px;
  height: 4px;
  background: #5b4c42;
  border-radius: 2px;
  margin: 0 auto 22px auto;
}
.about-purpose-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}
.about-purpose-img-col { flex: 0 1 320px; }
.about-purpose-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: #fff;
  width: 100%;
  aspect-ratio: 4/6;
  max-width: 360px;
}
.about-purpose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.about-purpose-cards {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.purpose-card {
  background: var(--main-green);
  color: var(--main-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: 1rem;
}
.purpose-card-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--main-bg);
  margin-bottom: .2rem;
}
.purpose-card-desc {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--main-bg);
  opacity: .95;
  font-weight: 400;
}
.purpose-values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem 1.2rem;
  list-style: none;
  padding: 0;
  margin: .7rem 0 0 0;
  font-size: .99rem;
}
@media (max-width: 1050px) {
  .about-purpose-content {
    flex-direction: column;
    gap: 1.2rem;
  }
  .about-purpose-img-wrapper {
    max-width: 95vw;
    aspect-ratio: 16/10;
  }
}
@media (max-width: 850px) {
  .about-purpose-img-wrapper { max-width: 98vw; }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  .about-purpose-header h2 { font-size: 1.03rem; }
  .about-purpose-img-wrapper { aspect-ratio: 16/8; }
  .purpose-card { padding: .8rem .5rem; }
}
@media (max-width: 500px) {
  .purpose-values-list {
    grid-template-columns: 1fr;
  }
}

/* ==== SUSTAINABILITY SECTION ==== */
.sustainability-section {
  background: var(--main-green);
  padding: 56px 0 64px 0;
  width: 100%;
}
.sustainability-header {
  text-align: center;
  margin-bottom: 38px;
}
.sustainability-header h2 {
  font-family: var(--font-title);
  font-size: 2.35rem;
  color: var(--text-light);
  font-weight: 900;
  margin: 0 0 12px 0;
  letter-spacing: 0.01em;
}
.sustainability-underline {
  width: 74px;
  height: 4px;
  background: var(--text-light);
  border-radius: 2px;
  opacity: 0.18;
  margin: 0 auto 18px auto;
}
.sustainability-subtitle {
  font-size: 1.05rem;
  font-family: 'Lora', serif;
  color: var(--text-light);
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.93;
}
.sustainability-main-img-wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 38px auto 36px auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 38px 0 rgba(20,40,26,0.13);
}
.sustainability-main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.sustainability-cards-row {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.sustainability-card {
  background: rgba(248,241,227,0.22);
  border-radius: 18px;
  box-shadow: 0 5px 26px 0 rgba(20,40,26,0.10);
  padding: 30px 24px 23px 24px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: var(--text-light);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.12);
  transition: box-shadow 0.18s;
}
.sustainability-card:hover {
  box-shadow: 0 9px 36px 0 rgba(20,40,26,0.17);
}
.sustainability-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.sustainability-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sustainability-card-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
}
.sustainability-card-desc {
  font-family: 'Lora', serif;
  font-size: 0.97rem;
  line-height: 1.52;
  color: var(--text-light);
  font-weight: 400;
  opacity: 0.97;
}
@media (max-width: 1150px) {
  .sustainability-main-img-wrapper {
    max-width: 98vw;
  }
  .sustainability-cards-row {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .sustainability-header h2 { font-size: 1.2rem; }
  .sustainability-main-img-wrapper { max-width: 100vw; }
  .sustainability-main-img { height: 150px; }
  .sustainability-cards-row { grid-template-columns: 1fr; gap: 16px; }
  .sustainability-card { padding: 16px 7px 10px 7px; }
  .sustainability-card-title { font-size: 0.98rem; }
  .sustainability-card-desc { font-size: 0.91rem; }
}

/* ==== TEAM SECTION ==== */
.team-section {
  background: var(--main-bg);
  width: 100%;
  padding: 64px 0 56px 0;
}
.team-header {
  text-align: center;
  margin-bottom: 38px;
}
.team-header h2 {
  font-family: var(--font-title);
  font-size: 2.3rem;
  color: var(--main-green);
  font-weight: 800;
  margin: 0 0 7px 0;
  letter-spacing: 0.01em;
}
.team-underline {
  width: 75px;
  height: 4px;
  background: var(--main-green);
  border-radius: 3px;
  opacity: 0.15;
  margin: 0 auto 18px auto;
}
.team-subtitle {
  color: var(--main-dark);
  font-size: 1.13rem;
  font-weight: 400;
  font-family: 'Lora', serif;
  margin: 0;
  line-height: 1.5;
}
.leadership-card-row {
  display: flex;
  justify-content: center;
  margin: 0 auto 54px auto;
}
.leadership-card {
  border-radius: 22px;
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  width: 100%;
  padding: 0;
}
.leadership-card-left {
  flex: 1.5;
  padding: 38px 34px 32px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadership-card-title {
  font-family: var(--font-title);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--main-dark);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.leadership-card-desc {
  font-family: 'Lora', serif;
  font-size: 1.03rem;
  line-height: 1.56;
  color: var(--main-dark);
  font-weight: 400;
}
.leadership-card-list {
  margin-top: 18px;
  list-style: none;
  padding: 0;
}
.leadership-card-list li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--main-dark);
}
.leadership-svgicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  vertical-align: middle;
}
.leadership-svgicon svg {
  width: 23px; height: 23px; display: block;
}
.leadership-card-right {
  flex: 1.5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 230px;
  padding: 24px 32px 24px 0;
}
.leadership-card-img-wrapper {
  background: var(--main-bg);
  border-radius: 14px;
  overflow: hidden;
  width: 450px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-cards-row {
  max-width: 880px;
  margin: -30px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  justify-content: center;
}
.team-card {
  background: linear-gradient(180deg, var(--accent) 0%, var(--main-green) 100%);
  border-radius: 18px;
  box-shadow: 0 5px 24px 0 rgba(20,40,26,0.10);
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  min-width: 300px;
}
.team-card-avatar {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-avatar-img {
  width: 252px;
  height: 378px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(20,40,26,0.11);
  background: #fff;
  display: block;
}
.team-card-name {
  font-family: var(--font-title);
  font-size: 1.09rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.01em;
}
.team-card-role {
  font-size: 0.98rem;
  font-family: 'Lora', serif;
  color: #b8e0cf;
  margin-bottom: 11px;
  text-align: center;
}
@media (max-width: 900px) {
  .leadership-card {
    flex-direction: column;
    padding: 0;
    max-width: 99vw;
  }
  .leadership-card-left, .leadership-card-right {
    max-width: 100%;
    border-radius: 22px;
    padding: 30px 18px 22px 18px;
  }
  .leadership-card-img-wrapper {
    width: 100%;
    max-width: 270px;
    height: 130px;
    margin: 0 auto;
  }
  .team-cards-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ==== CONTACT SECTION ==== */
.contact-section {
  background-color: var(--main-green);
  background-image: radial-gradient(rgba(184,224,207,0.10) 1.4px, transparent 0);
  background-size: 56px 56px;
  background-position: 0 0, 28px 28px;
  padding: 64px 0 56px 0;
}
.contact-header {
  text-align: center;
  margin-bottom: 32px;
}
.contact-header h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--text-light);
  font-weight: 800;
  margin: 0 0 8px 0;
}
.contact-underline {
  width: 74px;
  height: 4px;
  background: var(--text-light);
  border-radius: 2px;
  opacity: 0.14;
  margin: 0 auto 20px auto;
}
.contact-subtitle {
  color: var(--text-light);
  font-size: 1.14rem;
  font-family: 'Lora', serif;
  font-weight: 400;
  opacity: 0.94;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}
.contact-main-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  max-width: 1100px;
  margin: 48px auto 0 auto;
  flex-wrap: wrap;
}
.contact-form {
  background: #345e50;
  border-radius: 18px;
  padding: 36px 36px 28px 36px;
  box-shadow: 0 6px 28px 0 rgba(20,40,26,0.11);
  width: 420px;
  min-width: 300px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form-title {
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.19rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 0;
}
.contact-form label {
  color: var(--text-light);
  font-size: 0.97rem;
  font-family: 'Lora', serif;
  margin-bottom: 2px;
  opacity: 0.91;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  background: #fff;
  color: var(--main-green);
  font-family: 'Lora', serif;
  box-shadow: 0 1px 7px 0 rgba(20,40,26,0.03);
  transition: border 0.14s;
  margin-bottom: 2px;
  resize: none;
}
.contact-form textarea { min-height: 70px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1.5px solid var(--accent);
}
.contact-send-btn {
  margin-top: 14px;
  background: var(--main-green);
  color: var(--text-light);
  border: none;
  border-radius: 9px;
  font-size: 1.11rem;
  font-weight: 700;
  padding: 14px 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  font-family: var(--font-title);
  letter-spacing: 0.02em;
  width: 100%;
}
.contact-send-btn:hover {
  background: #17402b;
  color: #fff;
}
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 290px;
  max-width: 370px;
  width: 100%;
}
.contact-info-card {
  background: linear-gradient(120deg, rgba(120,188,167,0.14) 10%, rgba(208,224,210,0.13) 90%);
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(20,40,26,0.09);
  padding: 34px 30px 26px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-title {
  font-family: var(--font-title);
  font-size: 1.13rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-light);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}
.contact-info-icon {
  min-width: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}
.contact-why-card {
  background: var(--main-bg);
  border-radius: 14px;
  padding: 26px 23px 20px 23px;
  color: var(--main-green);
  box-shadow: 0 2px 15px 0 rgba(20,40,26,0.05);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-why-title {
  font-family: var(--font-title);
  font-size: 1.11rem;
  font-weight: 800;
  margin-bottom: 13px;
}
.contact-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--main-green);
  font-size: 1.02rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-why-icon {
  color: var(--accent);
  margin-right: 10px;
  font-size: 1.18em;
}
@media (max-width: 1100px) {
  .contact-main-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .contact-form, .contact-info-column { width: 100%; max-width: 480px; }
}
@media (max-width: 700px) {
  .contact-header h2 { font-size: 1.15rem; }
  .contact-form, .contact-info-column, .contact-info-card, .contact-why-card {
    padding-left: 12px;
    padding-right: 12px;
  }
  .contact-info-title, .contact-why-title { font-size: 1rem; }
  .contact-info-card, .contact-why-card { padding: 18px 8px 12px 8px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ==== FOOTER ==== */
.footer-section {
  background: var(--main-bg);
  color: var(--main-green);
  font-family: 'Lora', 'Segoe UI', Arial, sans-serif;
  padding: 60px 0 24px 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1450px;
  margin: 0 auto 18px auto;
  gap: 68px;
  flex-wrap: wrap;
}

/* ==== FOOTER ABOUT SECTION ==== */
.footer-about {
  flex: 2.1;
  min-width: 320px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 18px;
  background: var(--main-bg);
}

.footer-description {
  font-size: 1.17rem;
  color: var(--main-dark);
  line-height: 1.7;
  margin-bottom: 28px;
  margin-top: 10px;
}

.footer-socials {
  display: flex;
  gap: 24px;
  margin-bottom: 7px;
  justify-content: center;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  overflow: hidden;
}

.footer-social-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-social-icon:hover {
  background: #58a387;
}

/* ==== FOOTER LINKS ==== */
.footer-links {
  flex: 1.2;
  min-width: 220px;
  text-align: left;
  margin-top: 150px;
  margin-left: 170px;
}

.footer-links-title {
  font-family: var(--font-title);
  font-size: 1.28rem;
  color: var(--main-green);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.01em;
}

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

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

.footer-links a {
  color: var(--main-dark);
  font-size: 1.12rem;
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-link-arrow {
  font-size: 1.1em;
  margin-right: 8px;
  color: var(--accent);
  font-weight: bold;
}

/* ==== FOOTER CONTACT INFO ==== */
.footer-contact {
  flex: 1.2;
  min-width: 220px;
  text-align: left;
}

.footer-contact-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--main-dark);
  font-size: 1rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contact li span {
  font-size: 1rem;
}

/* ==== FOOTER BOTTOM ==== */
.footer-bottom {
  margin-top: 34px;
  text-align: center;
}

.footer-bottom-bar {
  width: 92%;
  height: 2px;
  margin: 0 auto 20px auto;
  background: var(--main-green);
  opacity: 0.22;
  border-radius: 2px;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1450px;
  margin: 0 auto;
  align-items: center;
  font-size: 1.03rem;
}

.footer-copyright {
  color: var(--main-dark);
  font-size: 1rem;
}

.footer-bottom-links {
  color: var(--main-green);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}

.footer-bottom-links a {
  color: var(--main-green);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-bottom-links span {
  color: var(--main-dark);
  margin: 0 10px;
  font-weight: 200;
}

/* ==== RESPONSIVE FOOTER ==== */
@media (max-width: 1100px) {
  .footer-content {
    flex-direction: column;
    gap: 44px;
    align-items: center;
    text-align: center;
  }

  .footer-links, .footer-contact {
    text-align: center;
    margin-top: 16px;
    margin-left: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-links ul, .footer-contact ul {
    align-items: center;
  }

  .footer-links li, .footer-contact li {
    justify-content: center;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 11px;
    text-align: center;
  }
}


/* ==== BACK TO TOP BUTTON ==== */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 56px;
  height: 56px;
  background: var(--main-dark);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 22px 0 rgba(20,40,26,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, background 0.22s;
  z-index: 120;
  cursor: pointer;
}
.back-to-top svg { display: block; }
.back-to-top:hover { background: var(--accent); }
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 700px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ==== UTILITY CLASSES ==== */
.flex { display: flex; }
.center { justify-content: center; align-items: center; }
.hide-mobile { display: block; }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
