* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #f57c00;
}

.nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #f57c00;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #2a2a2f, #1f1f23);
  color: #fff;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e0e0e0;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #4F8178;
}

.logo span {
  color: #4F8178; 
}

.logo-icon {
  width: 42px;
  height: 42px;
  margin-right: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1); 
}

.nav {
  display: flex;
  gap: 28px;
  transition: all 0.3s ease;
}

.nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #4F8178;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4F8178;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #2a2a2f;
    flex-direction: column;
    width: 240px;
    padding: 25px;
    gap: 18px;
    border-left: 3px solid #4F8178;
    transition: right 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.3rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
}
.hero-epic {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px) 0 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(28,28,30,0.9) 0%, rgba(28,28,30,0.65) 60%);
}

.hero-epic__bg.animate {
  transform: scale(1.08);
}

.hero-epic__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.hero-epic__left { max-width: 720px; }

.eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: .08em;
  color: #4F8178;
  margin-bottom: 12px;
  font-size: 13px;
}

.hero-title {
  font-size: clamp(28px, 4.8vw, 56px);
  line-height: 1.02;
  margin: 6px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f5f5f5;
}

.hero-title__accent {
  display: block;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
  color: #4F8178;
  margin-top: 8px;
}

.hero-sub {
  max-width: 56ch;
  margin-bottom: 20px;
  color: rgba(245,245,245,0.9);
  font-size: 16px;
}

.hero-ctas { 
  display: flex; 
  gap: 14px; 
  margin-bottom: 22px; 
  flex-wrap: wrap; 
}

.btn--primary {
  background: linear-gradient(90deg,#4F8178,#3c6b66);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(79,129,120,0.25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn--primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 18px 30px rgba(79,129,120,0.35); 
}

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  list-style: none;
  font-weight: 600;
  color: rgba(245,245,245,0.95);
  font-size: 14px;
}

.hero-epic__visual {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
  transform-origin: center;
}

.hero-epic__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform .9s ease;
}

.hero-epic__visual:hover img { transform: scale(1.07); }

.visual-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(28,28,30,0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  backdrop-filter: blur(4px);
}

.hero-wave { 
  display: block; 
  width: 100%; 
  height: 60px; 
  position: relative; 
  z-index: 3; 
  fill: #f5f5f5; 
  margin-top: 6px; 
}

@media (max-width: 1100px) {
  .hero-epic__inner { grid-template-columns: 1fr 420px; }
}
@media (max-width: 880px) {
  .hero-epic__inner { grid-template-columns: 1fr; gap: 18px; padding-bottom: 6px; }
  .hero-epic__visual { order: -1; height: 320px; }
  .hero-title { font-size: clamp(28px, 6.6vw, 44px); }
}

.hero-epic + * { margin-top: -6px; }

.build-services {
  background: #101010;
  color: #fff;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.build-services__container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.build-services__title {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #4F8178; 
  text-transform: uppercase;
  letter-spacing: 2px;
}

.build-services__subtitle {
  color: #c0c0c0;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.build-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
}

.build-services__card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: all 0.5s ease;
  transform: translateY(40px);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.build-services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(79,129,120,0.3);
}

.build-services__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid rgba(79,129,120,0.3);
}

.build-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.build-services__card:hover img {
  transform: scale(1.1);
}

.build-services__card-title {
  font-size: 1.25rem;
  color: #4F8178; 
  margin: 20px 0 10px;
  padding: 0 18px;
  text-align: left;
}

.build-services__card-text {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 0 18px 25px;
  text-align: left;
  flex-grow: 1;
}

.build-services__card.show {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.9s ease;
}

@media (max-width: 1100px) {
  .build-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .build-services__title {
    font-size: 2rem;
  }

  .build-services__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .build-services__image {
    height: 220px;
  }

  .build-services__card-title {
    font-size: 1.15rem;
    padding: 0 15px;
  }

  .build-services__card-text {
    padding: 0 15px 25px;
  }
}
.build-about {
  position: relative;
  background: #101010;
  color: #fff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.build-about__wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 50px 20px;
}

.build-about__image {
  position: relative;
  overflow: hidden;
  height: 550px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.build-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  filter: brightness(75%);
  transition: transform 1.5s ease, filter 1s ease;
  border-radius: 20px;
}

.build-about:hover .build-about__image img {
  transform: scale(1.15);
  filter: brightness(80%);
}

.build-about__content {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  padding: 60px 50px;
  border-radius: 20px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(60px);
  opacity: 0;
  transition: all 1s ease;
  box-shadow: 0 15px 40px rgba(79,129,120,0.3);
}

.build-about__content.show {
  transform: translateX(0);
  opacity: 1;
}

.build-about__title {
  font-size: 2.6rem;
  color: #4F8178;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.build-about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c0c0c0;
  margin-bottom: 25px;
}

.build-about__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  border: 2px solid #4F8178;
  color: #4F8178;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.build-about__btn:hover {
  background: #4F8178;
  color: #101010;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .build-about__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .build-about__image {
    height: 350px;
  }

  .build-about__content {
    padding: 50px 25px;
    transform: translateY(30px);
  }

  .build-about__title {
    font-size: 2rem;
  }

  .build-about__btn {
    padding: 12px 26px;
  }
}

.projects-section {
  background: #101010;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.projects-section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-section__title {
  font-size: 2.8rem;
  color: #4F8178;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.projects-section__subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 60px;
  line-height: 1.6;
}

.projects-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.projects-section__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.projects-section__card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  border-radius: 18px;
}

.projects-section__card:hover img {
  transform: scale(1.08);
  filter: brightness(80%);
}

.projects-section__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: #4F8178;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
}

.projects-section__card:hover .projects-section__info {
  opacity: 1;
  transform: translateY(0);
}

.projects-section__info h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.projects-section__info p {
  font-size: 1rem;
  color: #c0c0c0;
  line-height: 1.4;
}

.projects-section__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(79,129,120,0.4);
}

@media (max-width: 1024px) {
  .projects-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-section__grid {
    grid-template-columns: 1fr;
  }

  .projects-section__card img {
    height: 250px;
  }
}
.faq-section {
  background: #0f0f0f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

.faq-section__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-section__title {
  font-size: 2.5rem;
  color: #4F8178;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.faq-section__subtitle {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-bottom: 50px;
  line-height: 1.6;
}

.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.faq-item {
  background: #121212;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(79,129,120,0.35);
}

.faq-item__question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: #4F8178;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item__question:hover {
  background: rgba(79,129,120,0.08);
  color: #77A899;
}

.faq-item__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  color: #FFD700;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding: 15px 24px 20px;
}

@media (max-width: 768px) {
  .faq-section__title {
    font-size: 2rem;
  }
  .faq-item__question {
    font-size: 1rem;
  }
  .faq-item__answer {
    font-size: 0.95rem;
  }
}
.contact-section {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 20px;
}

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

.contact-section__title {
  font-size: 2.6rem;
  color: #4F8178;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-section__subtitle {
  font-size: 1.1rem;
  color: #bcbcbc;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-section__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-section__info {
  background: #121212;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-section__info p {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-section__info a {
  color: #4F8178;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-section__info a:hover {
  color: #77A899;
}

.contact-icon {
  font-size: 1.3rem;
}

.contact-section__form {
  background: #121212;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-section__form input,
.contact-section__form textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  background: #1c1c1c;
  color: #fff;
  font-size: 1rem;
  resize: none;
  transition: background 0.3s ease;
}

.contact-section__form input:focus,
.contact-section__form textarea:focus {
  outline: none;
  background: #232323;
}

.contact-section__form button {
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid #4F8178;
  background: #4F8178;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-section__form button:hover {
  background: transparent;
  color: #4F8178;
  transform: scale(1.05);
  border-color: #77A899;
}

@media (max-width: 1024px) {
  .contact-section__columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-section__subtitle {
    font-size: 1rem;
  }
}

.footer {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 30px;
  position: relative;
}

.footer__top {
  text-align: center;
  margin-bottom: 40px;
}

.footer__top .logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.footer__top .logo span {
  color: #4F8178;
  margin-left: 4px;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer__section h4 {
  font-size: 1.2rem;
  color: #4F8178;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__section p,
.footer__section li {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.footer__section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: #4F8178;
}

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

.footer__social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social-icons a img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer__social-icons a:hover img {
  transform: scale(1.2);
}

.footer__bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social-icons {
    justify-content: center;
  }
}

.policy {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
  line-height: 1.7;
}

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

.policy__title {
  font-size: 2.8rem;
  color: #4F8178;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.policy__updated {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-bottom: 40px;
  font-style: italic;
}

.policy__section {
  margin-bottom: 35px;
}

.policy__section h2 {
  font-size: 1.6rem;
  color: #4F8178;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.policy__section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #4F8178;
  border-radius: 50%;
}

.policy__section p,
.policy__section li {
  color: #d0d0d0;
  font-size: 1rem;
}

.policy__section ul {
  padding-left: 20px;
  list-style: disc;
  margin-top: 10px;
}

.policy__section a {
  color: #4F8178;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy__section a:hover {
  color: #76b2a7;
}

@media (max-width: 768px) {
  .policy__title {
    font-size: 2.2rem;
  }

  .policy__section h2 {
    font-size: 1.4rem;
  }
}

.contact-hero {
  background: url('images/contact-hero.jpg') center/cover no-repeat;
  padding: 180px 20px;
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(79,129,120,0.75), rgba(79,129,120,0.45));
  mix-blend-mode: overlay;
}

.contact-hero-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease forwards;
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.35);
  background: linear-gradient(120deg, #4F8178, #3b615a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-hero p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0f2f1;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.25);
}

.contact-hero .cta-btn {
  display: inline-block;
  padding: 18px 45px;
  background: #4F8178;
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
  transition: all 0.5s ease;
}

.contact-hero .cta-btn:hover {
  background: #3b615a;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
}

.contact-location {
  padding: 140px 20px;
  background: linear-gradient(140deg, #e0f7f6, #ffffff);
}

.location-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.location-info {
  flex: 1 1 500px;
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.location-info:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.28);
}

.location-info h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #4F8178;
  font-weight: 900;
}

.location-info p {
  font-size: 1.2rem;
  color: #2c4d48;
  line-height: 1.9;
  margin-bottom: 25px;
}

.route-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #4F8178;
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 36px rgba(0,0,0,0.25);
  transition: all 0.5s ease;
}

.route-btn:hover {
  background: #3b615a;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}

.location-map {
  flex: 1 1 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 120px rgba(0,0,0,0.22);
  transition: transform 0.5s ease;
}

.location-map img {
  width: 100%;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.location-map:hover {
  transform: scale(1.04);
}

.trusted-section {
  background: linear-gradient(150deg, #f0f7f6, #ffffff);
  padding: 160px 20px;
  text-align: center;
  overflow: hidden;
}

.trusted-section h2 {
  font-size: 3.2rem;
  color: #4F8178;
  margin-bottom: 30px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-shadow: 1px 2px 12px rgba(0,0,0,0.18);
}

.trusted-subtitle {
  color: #2c4d48;
  font-size: 1.3rem;
  max-width: 750px;
  margin: 0 auto 70px auto;
  line-height: 1.9;
}

.trusted-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
}

.trusted-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 35px 120px rgba(0,0,0,0.2);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  position: relative;
}

.trusted-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 50px 160px rgba(0,0,0,0.28);
}

.trusted-quote {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.trusted-quote::before,
.trusted-quote::after {
  content: '“';
  font-size: 3.5rem;
  color: #4F8178;
  position: absolute;
  opacity: 0.2;
}

.trusted-quote::before { top: -25px; left: -10px; }
.trusted-quote::after { content:'”'; bottom: -35px; right: -10px; }

.trusted-author {
  display: block;
  font-weight: 800;
  color: #4F8178;
  font-size: 1.05rem;
}

.why-us {
  background: linear-gradient(160deg, #e0f7f6, #ffffff);
  padding: 160px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 3rem;
  color: #4F8178;
  margin-bottom: 70px;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 1px 2px 12px rgba(0,0,0,0.15);
}

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

.why-item {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.18);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.why-item:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow: 0 50px 140px rgba(0,0,0,0.28);
}

.why-item h3 {
  color: #4F8178;
  font-size: 1.6rem;
  margin-bottom: 25px;
  font-weight: 900;
}

.why-item p {
  color: #2c4d48;
  line-height: 1.9;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .contact-hero h1 { font-size: 3.2rem; }
  .contact-hero p { font-size: 1.3rem; }
  .trusted-section h2, .why-us h2 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  .location-wrapper, .trusted-cards, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero { padding: 120px 20px; }
}

@media (max-width: 480px) {
  .contact-hero h1 { font-size: 2.4rem; }
  .contact-hero p { font-size: 1.05rem; }
  .location-info, .location-map, .trusted-card, .why-item { padding: 40px 25px; }
}

.projects-hero {
  background: url('images/progects/progect6.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.projects-hero-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
}

.projects-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.projects-hero p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #e0f0ef;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.projects-gallery {
  padding: 120px 20px;
  background: #fdfdfd;
  text-align: center;
}

.projects-gallery h2 {
  font-size: 2.6rem;
  color: #4F8178;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(79,129,120,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.project-process {
  background: linear-gradient(135deg, #eaf1ef, #ffffff);
  padding: 120px 20px;
  text-align: center;
}

.project-process h2 {
  font-size: 2.6rem;
  margin-bottom: 70px;
  color: #4F8178;
  font-weight: 700;
  letter-spacing: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.step-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #4F8178;
  position: absolute;
  top: 20px;
  right: 25px;
  opacity: 0.15;
}

.step h3 {
  color: #4F8178;
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.step p {
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .projects-hero h1 {
    font-size: 3rem;
  }
  .projects-hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .projects-hero h1 {
    font-size: 2.2rem;
  }
  .projects-hero p {
    font-size: 1rem;
  }

  .process-steps {
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .projects-hero {
    padding: 100px 15px;
  }
  .gallery-item .overlay h3 {
    font-size: 1.3rem;
  }
  .step {
    padding: 35px 20px;
  }
  .step h3 {
    font-size: 1.2rem;
  }
}

.services-hero {
  position: relative;
  background: url('images/progects/progect6.jpg') center/cover no-repeat;
  padding: 160px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 34, 30, 0.6);
  backdrop-filter: blur(2px);
}

.services-hero-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}

.services-hero p {
  font-size: 1.15rem;
  color: #e9f0ed;
  line-height: 1.8;
  margin-bottom: 35px;
}

.services-hero .cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #4F8178;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.services-hero .cta-btn:hover {
  background: #3e6d65;
  transform: translateY(-3px);
}

.services-list {
  background: #f7f9f8;
  padding: 100px 20px;
  text-align: center;
}

.services-list h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #223330;
  margin-bottom: 60px;
}

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

.service-item {
  background: #fff;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid #e2e6e4;
  transition: all 0.35s ease;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
  color: #4F8178;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-item p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.services-process {
  background: linear-gradient(180deg, #e8f0ed 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
}

.services-process h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #223330;
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 45px 30px;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid #4F8178;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #4F8178;
  opacity: 0.2;
  font-weight: 800;
}

.step h3 {
  color: #4F8178;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step p {
  color: #555;
  line-height: 1.6;
}

.services-cta {
  background: #4F8178;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.services-cta h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #e6f4f1;
}

.services-cta .cta-btn {
  background: #fff;
  color: #4F8178;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.services-cta .cta-btn:hover {
  background: #dff1ed;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .services-hero {
    padding: 120px 15px;
  }
  .services-hero h1 {
    font-size: 2.4rem;
  }
  .services-hero p {
    font-size: 1rem;
  }
  .services-list h2,
  .services-process h2,
  .services-cta h2 {
    font-size: 1.8rem;
  }
  .service-item,
  .step {
    padding: 30px 20px;
  }
}

.about-hero {
  position: relative;
  background: url('images/about/bg-about.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 20, 0.7) 0%, rgba(17, 24, 20, 0.9) 100%);
  backdrop-filter: blur(2px);
}

.about-hero-content {
  position: relative;
  text-align: center;
  max-width: 850px;
  animation: fadeInUp 1.2s ease both;
}

.about-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #F5F5F5;
}

.about-hero p {
  font-size: 1.2rem;
  color: #e3f2ef;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-hero .cta-btn {
  display: inline-block;
  padding: 14px 42px;
  background: #4F8178;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.about-hero .cta-btn:hover {
  background: #3e6c63;
  transform: translateY(-4px);
}

.about-history-premium {
  background: #f6f8f7;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.about-history-premium h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: #223330;
}

.history-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.history-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(79, 129, 120, 0.3);
  transform: translateY(-50%);
  z-index: 1;
}

.history-item {
  position: relative;
  width: calc(25% - 20px);
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.history-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.history-year {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #4F8178;
  margin-bottom: 12px;
}

.history-item p {
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-values {
  background: #ffffff;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.about-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #4F8178;
}

.about-values h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #223330;
  margin: 70px 0 70px;
}

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

.value-item {
  background: linear-gradient(180deg, #f9fbfa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 45px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #4F8178;
  opacity: 0.85;
  transition: width 0.3s ease;
}

.value-item:hover::before {
  width: 100%;
  opacity: 0.1;
}

.value-item:hover {
  transform: translateY(-6px);
}

.value-item h3 {
  color: #4F8178;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.value-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .history-content {
    flex-direction: column;
    gap: 30px;
  }
  .history-content::before {
    display: none;
  }
  .history-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.4rem; }
  .about-hero p { font-size: 1rem; }
  .about-values h2, .about-history-premium h2 { font-size: 2rem; }
}


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

.team-member {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #b88a44;
  margin-bottom: 8px;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
}

.about-values {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about-values h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #222;
}

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

.value-item {
  background: #faf7f2;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.value-item h3 {
  color: #b88a44;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-item p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }
  .about-history h2, .about-team h2, .about-values h2 { font-size: 1.8rem; }
  .history-container p, .team-member p, .value-item p { font-size: 0.95rem; }
  .team-member, .value-item { padding: 25px 15px; }
}
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2b2b2b, #111);
  color: #f5f5f5;
  padding: 20px 15px;
  text-align: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  border-top: 3px solid #4F8178;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookies-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookies-content {
  max-width: 1024px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.cookies-content p {
  margin: 0;
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookies-content a {
  color: #4F8178;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookies-content a:hover {
  color: #76b2a7;
}

.cookies-btn {
  background: #4F8178;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cookies-btn:hover {
  background: #76b2a7;
  transform: scale(1.05);
}

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

  .cookies-btn {
    margin-top: 10px;
  }
}