/* ===============================
   BASE / RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}


a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {color: #111827;}


/* ================================
   NAVIGATION 
================================ */
/* FIX HEADER LAYOUT */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* KEEP LOGO + TOGGLE INLINE */
.logo {
  display: flex;
  align-items: center;
}

/* MOBILE TOGGLE POSITION */
.mobile-nav-toggle {
  display: none;
  font-size: 38px;
  cursor: pointer;
}

@media (max-width: 992px) {

  .mobile-nav-toggle {
    display: block;
  }

  /* HIDE DESKTOP MENU */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
  }

  /* IMPORTANT: prevent nav from pushing layout */
  .navmenu ul {
    display: flex;
    flex-direction: column;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  padding: 12px 0;
  transition: 0.3s ease;
	border-bottom: 1px solid #ccc
}

/* SCROLL EFFECT */
.header.scrolled {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img {
  height: 90px;
}

/* DESKTOP MENU */
.navmenu ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */
.navmenu a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
	font-weight: 600
}

/* CTA */
.cta-btn {
  border: 1px solid #4caf6d;
  padding: 10px 18px;
  border-radius: 999px;
background: #4caf6d;

}
a.cta-btn {color: #ffffff;
font-size: 12px; font-weight: bold;}

/* TOGGLE */

.mobile-nav-toggle {
  color: #222;
}.mobile-nav-toggle:hover {
  color: #4caf6d;
}

/* ================================
   MOBILE FIX (THIS WAS BROKEN)
================================ */
@media (max-width: 992px) {

  .mobile-nav-toggle {
    display: block;
    z-index: 10001;
  }

  /* MENU PANEL */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;

    background: #0c1f1a;
    padding: 80px 30px;

    transition: right 0.3s ease;
    z-index: 10000;
  }

  /* SHOW MENU */
  .navmenu.active {
    right: 0;
  }

  /* LIST */
  .navmenu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* LINKS */
  .navmenu a {
    color: #fff;
    font-size: 18px;
  }

  /* CTA */
  .cta-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: #4caf6d;
    color: #fff;
  }
}


/* =========================================
   BODY OFFSET (PREVENT OVERLAP)
========================================= */
body {
  padding-top: 90px;
}
/* ===============================
   HERO (AI LEVEL CLEAN)
================================ */
/* HERO BASE */
.hero {
  position: relative;
  background: #0E241E;
  padding: 80px 0 120px 0;
  overflow: hidden;
  color: #fff;
}

.hero::before,
.hero::after {
  pointer-events: none;
  max-width: 100vw;
}

/* SMALL GREEN GLOW — TOP RIGHT ONLY */


.hero::before {
  content: "";
  position: absolute;

  top: -400px;
  right: -400px;

  width: 800px;
  height: 800px;

  background: linear-gradient(
    135deg,
    rgba(140,255,58,0.18),
    rgba(140,255,58,0.08),
    transparent 60%
  );

  filter: blur(80px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;

  top: -280px;
  right: -400px;

  width: 1000px;
  height: 1000px;

 background: url('../images/building.svg') no-repeat center;
  mask-size: contain;

    opacity: 0.03;
 
 

	pointer-events: none;}

/* TEXT */
.hero-label {
  color: #5edc88;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 32px;
	color: #ffffff;
	letter-spacing: -0.5px
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 80px;font-weight: 200;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
	margin-top: 24px;
}

.btn-primary-custom {
  background: #4caf6d;
  color: #000;
  border-radius: 30px;
  padding: 12px 22px;
  font-weight: 600;
  border: none;
}

.btn-outline-light {
  border-radius: 30px;
  padding: 12px 22px;
  border: 1px solid #3A3A3C;
  color: #fff;
  text-decoration: none;
}

/* TAGS */
.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
	align-items: center; /* keeps alignment clean */
	margin-bottom: 50px; margin-top: 24px
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 20px 16px;
  border-radius: 12px;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);

  color: rgba(255,255,255,0.85);
  font-size: 13px;

  max-width: 200px;   /* controls wrapping */
  text-align: center;

  transition: all 0.25s ease;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 4px 12px rgba(0,0,0,0.3);
}
.hero-tags span {
  min-height: 82px; /* keeps consistent height */
}
.hero-tags span:hover {
  border-color: rgba(140,255,58,0.6);
  color: #dfffcc;

  transform: translateY(-2px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 12px rgba(140,255,58,0.25),
    0 6px 18px rgba(0,0,0,0.4);
}.hero-tags span {
  backdrop-filter: blur(6px);
}

/* HERO CARDS WRAPPER */
.hero-cards {margin-left: auto; /* pushes it right */
}

.hero .row {
  align-items: flex-end;
}

.card-glass {
  padding: 24px 26px;
  border-radius: 18px;
 background: rgba(20, 25, 35, 0.55);
  backdrop-filter: blur(18px);
border: 1px solid rgba(255,255,255,0.08);
box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 20px 50px rgba(0,0,0,0.5);
color: #ffffff;
display: flex;
 flex-direction: column;
height: 100%;
transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}

/* only Plan taller */
.card-plan {min-height: 220px}
.card-glass {
  height: 100%;
}

/* LABEL */
.card-label {
  color: #5edc88;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}


/* TEXT */
.card-glass p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

/* EXECUTE CARD (full width feel) */
.card-wide {
  padding: 26px 28px;
}


.card-glass:hover {
  transform: translateY(-8px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 70px rgba(0,0,0,0.65);
}
.card-glass:hover {
  transform: translateY(-8px) scale(1.015);
}



/* ===============================
   SECTION (LIGHT)
================================ */
.section-light {
  background: #ffffff;
  padding: 80px 0;
}
.section-green {
  color: #2f9e5a;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
	font-weight:700
}
.section-label {
   color: var(--accent, #5edc88);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
	font-weight:700
}

.section-title {
  font-size: 36px;
  font-weight: 600;
}.section-text {
  color: #6b7280;
}

.section-subtext {
  color: #6b7280;
}
.approach-box {
  height: 140px; /* forces equal height */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  text-align: center;

  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);

  background: #F4F4F4; /* subtle light background */
  color: #0b0f12;
  font-weight: 500;

  transition: all 0.25s ease;
}
.approach-box:hover {
  border-color: #4ade80;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===============================
   SECTION TESTIMONIAL
================================ */

/* SECTION */


.section-testimonial {
  background: #0f1115;
}
.testimonial {
  position: relative;
  padding: 120px 0;
  color: white;

  background: url('../images/hero.jpg') center/cover no-repeat;
  background-attachment: fixed; /* parallax */
}
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;

background: linear-gradient(
  to right,
  rgba(10,15,25,0.85),
  rgba(10,15,25,0.35)
);}
.testimonial::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;

  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(94,243,140,0.12), transparent 70%);
  filter: blur(80px);

  pointer-events: none;
}
.testimonial-content {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.testimonial-content {
  position: relative;
  z-index: 1;

  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #7CFF9E;
  margin-bottom: 16px;
}

.testimonial h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 16px;
	color: #ffffff
}
@media (max-width: 768px) {
  .testimonial {
    background-attachment: scroll;
  }
}
/* ===============================
   CARDS (COMMUNITIES)
================================ */
.community-card {
  background: #F4F4F4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #DEDEDE;
  transition: 0.25s;
color:#111827;
width: 100%;
height: 100%
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-image {
  height: 200px;
  overflow: hidden;
	position: relative
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #000;
  color: #5edc88;
}

.card-body {
  padding: 18px;
}

.location {
  font-size: 13px;
  color: #CCCCCC;
}
.card-body .location {
  color: #000000;
}
.community-card a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #4caf6d; /* your brand green */
  text-decoration: none;
  font-weight: 600;

  display: inline-block;
  margin-top: 10px;

  transition: all 0.2s ease;
}
.communities-section {
  position: relative;
  overflow: hidden;
}





/* ===============================
   CTA STRIP
================================ */
.cta-strip {
  background: #f8fafc;
  padding: 100px 0;
  text-align: center;
}

.cta-strip h3 {
  font-size: 28px;
  font-weight: 600;
}

.cta-strip p {
  color: #6b7280;
}

/* ===============================
   FOOTER
================================ */
.footer {
  background: #050607;
  color: #9ca3af;
  padding: 80px 0 30px;
}

.footer-logo {
  height: 90px;
  filter: brightness(0) invert(1);
}

.footer-title {
  color: #fff;
  margin-bottom: 20px;
}

.footer-links a {
  color: #9ca3af;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

/* =========================
   LEFT MEDIA COLUMN CLEAN
========================= */

/* MAIN ROW */
.community-page .community-row {
  display: flex;
  flex-direction: row; /* 👈 force side by side */
  min-height: 100vh;
}


/* COLUMNS */
.community-page .media-column,
.community-page .content-column {
  flex: 1;
}

.community-page .media-column {
  flex: 1;
  background: var(--bg-left);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* GRID (video + images) */
.media-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr; /* 👈 FIXED (wider video) */
  gap: 20px;
  height: 85vh;
  width: 100%;
  max-width: 900px; /* 👈 IMPORTANT */
}
.media-column {
  flex: 1.1;
}

.content-column {
  flex: 1;
}
.community-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.media-right {
  gap: 20px;
}

/* VIDEO */
.media-video {
  border-radius: 4px;
  overflow: hidden;
}

.media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 makes it feel wide */
}

/* RIGHT IMAGES */
.media-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  flex: 1;
}
/* RIGHT CONTENT COLUMN */
.community-page .content-column {
  display: flex;
  align-items: flex-start;   /* 👈 stays at top */
  justify-content: flex-start;
  background: var(--bg-right);
  color: #fff;
}

.community-page .content-inner {
  padding: 60px;
  max-width: 700px;
}
@media (max-width: 992px) {

  .community-page .community-row {
    flex-direction: column;
  }

  /* 👇 THIS is what you want */
  .community-page .content-column {
    order: 1;
  }

  .community-page .media-column {
    order: 2;
  }

  .community-page .media-column {
    height: auto;
    padding: 20px;
  }

  .media-grid {
    height: auto;
  }
}
/* =========================
   TYPOGRAPHY
========================= */
.community-page .eyebrow {
  color: #5edc88;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 20px;
}

.community-page h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
	color:#ffffff
}
.community-page .location {
  opacity: 0.7;
  margin-bottom: 20px;
}

.community-page .desc {
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.6;
}


/* =========================
   BUTTON
========================= */
.community-page .btn-primary {
    display: inline-block;
    color: #5edc88;
    padding: 12px 21px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    margin-top: 30px;
    border: 1px solid #219847;
    text-transform: uppercase;
    font-size: 10px;
}
.community-btn {
  box-shadow: 0 10px 25px rgba(80, 200, 120, 0.25);
  transition: all 0.3s ease;
}

.community-btn:hover {
  transform: translateY(-2px);
}

/* HORIZONTAL VIDEO LAYOUT */
.media-horizontal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* VIDEO */
 .media-horizontal .media-video {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
}

 .media-horizontal .media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IMAGES UNDER VIDEO */
 .media-horizontal .media-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

 .media-horizontal .media-bottom img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .community-row {
    flex-direction: column;
  }

  .content-column {
    order: 1;
  }

  .media-column {
    order: 2;
  }
}
 .media-horizontal .media-video {
  aspect-ratio: 16 / 9;
  height: auto;
}
/* ONLY horizontal layout */
.media-horizontal {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* BIG VIDEO / IMAGE (LEFT) */
.media-horizontal .media-video {
  grid-row: span 2;
  border-radius: 16px;
  overflow: hidden;
}

.media-horizontal .media-video video,
.media-horizontal .media-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE IMAGES */
.media-horizontal .media-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media-horizontal .media-bottom img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 14px;
  flex: 1;
}
@media (max-width: 768px) {
  .media-horizontal {
    display: flex;
    flex-direction: column;
  }

  .media-horizontal .media-video {
    height: 250px;
  }

  .media-horizontal .media-bottom {
    flex-direction: row;
  }

  .media-horizontal .media-bottom img {
    height: 120px;
  }
}











.theme-dark {
  --bg-left: #F9EBE6;
  --bg-right: #322d2c;
  --accent: #5edc88;
}
.theme-coastal {
  --bg-left: #D6E4E1;
  --bg-right: #1D2C28;
  --accent: #4fd1c5;
}
.theme-neutral {
  --bg-left: #E3F0F4;
  --bg-right: #1B3C45;
  --accent: #7ed957;
}
.theme-gray {
  --bg-left: #E3F0F4;
  --bg-right: #222c2e;
  --accent: #7ed957;
}


.community-btn {
  background: var(--accent);
	color: #000;}
.community-row {
  background: linear-gradient(
    to right,
    var(--bg-left) 50%,
    var(--bg-right) 50%
  );
}

/* GALLERY ITEM WRAPPER */
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

/* IMAGE */
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* HOVER EFFECT */
.gallery a:hover img {
  transform: scale(1.08); /* 👈 zoom */
  filter: brightness(0.95);
}

/* SUBTLE CARD LIFT */
.gallery a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
}

.gallery a:hover::after {
  background: rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .gallery img {
    height: 160px;
  }
}
/* CLOSE BUTTON (X) */
/* BUTTONS (base) */
.glightbox-container .gclose,
.glightbox-container .gprev,
.glightbox-container .gnext {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.7);
  border-radius: 10%;
  opacity: 1;
  transition: all 0.3s ease;
}

/* ICONS (SVG inside) */
.glightbox-container .gclose svg,
.glightbox-container .gprev svg,
.glightbox-container .gnext svg {
  width: 22px;
  height: 22px;
  stroke-width: 5.5; 
}

/* HOVER */
.glightbox-container .gclose:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gnext:hover {
  background: rgba(0,0,0,0.85);
  transform: scale(1.1);
}

/* HOVER ICON COLOR */
.glightbox-container .gclose:hover svg,
.glightbox-container .gprev:hover svg,
.glightbox-container .gnext:hover svg {
  stroke: #5edc88;
}
.about-hero {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #0c1f1a, #102a23);
  color: #fff;
  margin-bottom: 35px;
}

.about-hero h1,
.about-philosophy h3 {
  color: #fff;
}

/* SECTIONS */

.about-intro,
.about-operations,
.about-experience,
.about-story {
  padding: 40px 0;
  background: #fff;
  color: #4a4f55;
}

.about-philosophy {
  padding: 80px 0;
  background: linear-gradient(135deg, #0c1f1a, #102a23);
  color: #fff;
  margin: 30px 0;
}

/* TYPOGRAPHY */

h2,
h3 {
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

h3 {
  font-size: 34px;
}

.about-story p,
.about-intro p,
.about-operations p {
  line-height: 1.9;
  margin-bottom: 24px;
  color: #4a4f55;
}

.about-philosophy .big {
  font-size: 22px;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}
.confidence-list {
   margin: 40px;
  max-width: 820px;

  padding-left: 30px;
  border-left: 4px solid #4caf6d;
}

.confidence-list p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;

  color: rgba(255,255,255,0.92);

  margin-bottom: 12px;
}

.confidence-list p:last-child {
  margin-bottom: 0;
}

.hero-intro {
  max-width: 860px;
  margin: 35px auto 0;

  font-size: 22px;
  line-height: 1.9;

  color: #111827;;
}

/* FEATURE CARDS */

.feature-card {
  background: #fff;
  border: 1px solid #e6e9ee;
  padding: 22px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* STATS */

.stat-box h2 {
  font-size: 64px;
  color: #4caf6d;
}

/* FOUNDER */

.founder-section {
  background: #fff;
  padding: 80px 0;
}

.founder-card {
  max-width: 820px;
  margin: auto;

  background: #f4f6f8;
  border: 1px solid #e8ebef;

  border-radius: 24px;

  padding: 40px;

  display: flex;
  align-items: center;
  gap: 30px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.founder-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-quote {
  font-size: 24px;
  line-height: 1.5;
  color: #111;
  margin-bottom: 20px;
}

.founder-content h5 {
  margin-bottom: 4px;
}

.founder-content span {
  color: #777;
}

/* STORY SEPARATORS */

.about-operations .col-lg-8,
.about-intro .col-lg-8, 
.about-founder .col-lg-8,
.about-different .col-lg-8 {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d6dce4;
}

.about-operations .col-lg-8 p:last-child {
  border-bottom: none;
}
.section-accent {
  width: 48px;
  height: 3px;

  background: #4caf6d;

  border-radius: 999px;

  margin-bottom: 22px;
}

/* MOBILE */

@media (max-width: 768px) {

  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .founder-quote {
    font-size: 20px;
  }

}
/* SAFE MOBILE FIX */

html,
body {
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

@media (max-width: 768px) {

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .community-page .community-row {
    flex-direction: column;
  }

  .media-grid,
  .media-horizontal {
    width: 100%;
    max-width: 100%;
  }

}

/* =========================
   SERVICES SECTION
========================= */

.our-services {margin-bottom: 65px}
.our-services .col-lg-8 {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #d6dce4;
}
.service-hero {
padding: 100px 0 70px;
background:linear-gradient(135deg,#0c1f1a,#162b25
);
  color: #fff;
  margin-bottom: 35px;
}
.service-hero h1,
.service-philosophy h3 {
  color: #fff;
}

.services-intro {
  padding: 30px 0;
  background: #f8f9fb;
}

/* MOBILE */
@media (max-width: 991px) {

  .service-col-2,
  .service-col-3 {
    margin-top: 0;
  }

  .services-intro {
    padding: 80px 0;
  }


}
/* =========================
   CTA SECTION
========================= */

.cta-section {
  padding: 100px 0;

  background:
    linear-gradient(
      135deg,
      #0f1f1b,
      #162923
    );

  position: relative;

  overflow: hidden;
}

/* subtle glow */
.cta-section::before {
  content: "";

  position: absolute;

  top: -200px;
  right: -200px;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      rgba(94,220,136,0.12),
      transparent 70%
    );

  pointer-events: none;
}

/* CONTENT */

.cta-inner {
  max-width: 760px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* SMALL LABEL */

.sub-title {
  display: inline-block;

  color: #5edc88;

  font-size: 13px;
  letter-spacing: 1.5px;

  margin-bottom: 20px;
}

/* HEADING */

.cta-inner h2 {
  color: #fff;

  font-size: 42px;
  line-height: 1.15;

  letter-spacing: -1px;

  margin-bottom: 24px;
}

/* TEXT */

.cta-inner p {
  color: rgba(255,255,255,0.72);

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 38px;
}

/* BUTTON */

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border-radius: 999px;

  background: #4caf6d;
  color: #fff;

  font-weight: 500;

  transition: 0.3s ease;
}

/* HOVER */

.theme-btn:hover {
  background: #5edc88;

  transform: translateY(-2px);

  color: #fff;
}


/* MOBILE */

@media (max-width: 768px) {

  .cta-section {
    padding: 80px 0;
  }

  .cta-inner h2 {
    font-size: 34px;
  }

}
/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
  padding: 90px 0;
  background: #f8f9fb;
}

.contact-hero h1 {
  font-size: 54px;
  line-height: 1.05;
  margin-bottom: 28px;

  letter-spacing: -1px;
}

.contact-hero p {
  font-size: 17px;
  line-height: 1.9;

  color: #4a4f55;

  margin-bottom: 40px;
}

/* LEFT INFO */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item strong {
  display: block;

  font-size: 13px;
  letter-spacing: 1px;

  color: #4caf6d;

  margin-bottom: 6px;
}

.info-item span {
  color: #222;
  font-size: 17px;
}

/* FORM CARD */

.contact-form-wrap {
  background: #fff;

  border: 1px solid #e4e9ee;
  border-radius: 28px;

  padding: 48px;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.04);
}

.contact-form-wrap h3 {
  margin-bottom: 32px;
  font-size: 34px;
}

/* FORM */

.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
  width: 100%;

  border: 1px solid #dfe5eb;
  border-radius: 14px;

  padding: 16px 18px;

  background: #fff;

  font-size: 15px;

  transition: 0.3s ease;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  outline: none;

  border-color: #4caf6d;

  box-shadow:
    0 0 0 4px rgba(76,175,109,0.08);
}

.contact-form-wrap textarea {
  resize: none;
}


/* MOBILE */

@media (max-width: 768px) {

  .contact-hero {
    padding: 90px 0;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

}
.contact-note {
  margin-top: 24px;
  padding-top: 24px;

  border-top: 1px solid #dfe5eb;

  color: #4a4f55;

  font-size: 12px;
  line-height: 1.2;
}