:root {
  --bg-main: #f4f1ea;
  --bg-soft: #faf8f3;
  --text-dark: #0e0e0e;
  --text-muted: #6a6862;
  --accent-dark: #2f2c27;
  --accent-soft: #8c857a;
  --border: rgba(47, 44, 39, 0.12);
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(14, 14, 14, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: "Montserrat", Arial, sans-serif;
}

a {
  color: inherit;
}

/* =========================
   HEADER - BYROOT STYLE
========================= */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(244, 241, 234, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
}

.nav-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 35px rgba(14, 14, 14, 0.08);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy h1 {
  margin: 0;
  color: var(--text-dark);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
}

.brand-copy span {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--accent-dark);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-dark);
}

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

.nav-contact {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--bg-main) !important;
  border: 1px solid var(--accent-dark);
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  background: transparent;
  color: var(--accent-dark) !important;
}

/* =========================
   HERO - BYROOT STYLE
========================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-main);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(244, 241, 234, 0.94) 0%,
      rgba(244, 241, 234, 0.82) 45%,
      rgba(244, 241, 234, 0.24) 100%
    ),
    url("/images/build.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  bottom: -160px;
  background: rgba(47, 44, 39, 0.08);
  border-radius: 50%;
  filter: blur(8px);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 44px;
  padding: 110px 0;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
}

.hero-badge::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent-dark);
}

.hero-content h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -2.4px;
}

.hero-content p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--accent-dark);
  color: var(--bg-main);
  border: 1px solid var(--accent-dark);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(47, 44, 39, 0.18);
}

.btn-outline {
  color: var(--accent-dark);
  border: 1px solid rgba(47, 44, 39, 0.28);
  background: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.hero-card {
  padding: 32px;
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
}

.hero-card h3 {
  margin: 14px 0 12px;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
}

.hero-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
   TRUST
========================= */

.trust-section {
  background: var(--bg-main);
  padding: 48px 0;
}

.trust-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(14, 14, 14, 0.04);
}

.trust-item {
  padding: 36px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item h3 {
  margin: 0 0 22px;
  color: rgba(47, 44, 39, 0.18);
  font-size: 42px;
  font-weight: 300;
}

.trust-item h4 {
  margin: 0 0 10px;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.trust-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.services-section {
  padding: 105px 0;
  background: var(--bg-main);
}

.section-heading {
  width: min(780px, 92%);
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading span,
.project-left span,
.mission-content span,
.cta-box span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.section-heading h2,
.project-left h2,
.mission-content h2,
.cta-box h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1px;
}

.section-heading p {
  margin: 20px auto 0;
  max-width: 590px;
  color: var(--text-muted);
  line-height: 1.85;
}

.services-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  transition: 0.28s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: var(--accent-dark);
  color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  color: var(--bg-main);
  font-size: 22px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
   PROJECT SHOWCASE
========================= */

.projects-showcase {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 105px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 58px;
  align-items: center;
}

.project-left p,
.mission-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin: 22px 0 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 6px;
}

.project-right {
  display: grid;
  gap: 18px;
}

.project-image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-image-card {
  border-radius: 30px;
  overflow: hidden;
  min-height: 215px;
  background: #ddd;
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(14, 14, 14, 0.08);
}

.project-image-card.large {
  min-height: 400px;
}

.project-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.45s ease;
  filter: saturate(0.9) contrast(1.02);
}

.project-image-card:hover img {
  transform: scale(1.045);
}

/* =========================
   MISSION
========================= */

.mission-section {
  background: var(--accent-dark);
  padding: 100px 0;
  color: var(--bg-main);
}

.mission-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.mission-content span {
  color: rgba(244, 241, 234, 0.62);
}

.mission-content h2 {
  color: var(--bg-main);
}

.mission-content p {
  color: rgba(244, 241, 234, 0.68);
}

.mission-stats {
  display: grid;
  gap: 18px;
}

.mission-stats div {
  padding: 31px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 26px;
  backdrop-filter: blur(12px);
}

.mission-stats strong {
  display: block;
  color: var(--bg-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 400;
}

.mission-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(244, 241, 234, 0.58);
  font-size: 14px;
}

/* =========================
   CTA
========================= */

.cta-section {
  padding: 95px 0;
  background: var(--bg-main);
}

.cta-box {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 76px 34px;
  border-radius: 38px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(47, 44, 39, 0.82), rgba(47, 44, 39, 0.82)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.cta-box span {
  color: rgba(244, 241, 234, 0.62);
}

.cta-box h2 {
  color: var(--bg-main);
  max-width: 760px;
  margin: 0 auto;
}

.cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--bg-main);
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.cta-box a:hover {
  background: var(--white);
  transform: translateY(-3px);
}

/* =========================
   FOOTER - BYROOT STYLE
========================= */

.site-footer {
  background: var(--bg-main);
  color: var(--text-dark);
  padding: 78px 0 0;
  border-top: 1px solid var(--border);
}

.footer-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  gap: 52px;
}

.footer-brand {
  max-width: 370px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(14, 14, 14, 0.07);
  flex-shrink: 0;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo-text h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
}

.footer-logo-text span {
  display: block;
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 7px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
}

.footer-col h4 {
  margin: 0 0 22px;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col li,
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.7;
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: var(--text-dark);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact li i {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dark);
  color: var(--bg-main);
  font-size: 15px;
  flex-shrink: 0;
}

.footer-contact li span {
  display: block;
  margin-bottom: 3px;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-bottom {
  width: 100%;
  margin: 58px 0 0;
  padding: 22px 4%;
  background: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(244, 241, 234, 0.58);
  font-size: 13px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 241, 234, 0.62);
  text-decoration: none;
  font-size: 13px;
  transition: 0.25s ease;
}

.footer-social a:hover {
  color: var(--bg-main);
}

.footer-social a i {
  font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .hero-container,
  .projects-showcase,
  .mission-container {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 440px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-container {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .navbar {
    min-height: auto;
    padding: 18px 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 22px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 130px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-section::before {
    background:
      linear-gradient(
        rgba(244, 241, 234, 0.92),
        rgba(244, 241, 234, 0.84)
      ),
      url("/images/build.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero-container {
    padding: 78px 0;
  }

  .hero-content h2 {
    font-size: 41px;
    letter-spacing: -1.3px;
  }

  .hero-content p {
    font-size: 15px;
  }

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

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .brand-copy h1 {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .brand-copy span {
    font-size: 8px;
    letter-spacing: 6px;
  }

  .nav-links {
    gap: 13px 16px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .services-grid,
  .project-image-row {
    grid-template-columns: 1fr;
  }

  .services-section,
  .projects-showcase,
  .mission-section,
  .cta-section {
    padding: 72px 0;
  }

  .project-image-card.large {
    min-height: 300px;
  }

  .project-image-card {
    min-height: 240px;
  }

  .cta-box {
    padding: 52px 24px;
    border-radius: 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    margin-top: 42px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   BYROOT STYLE - INNER PAGES
   Contact / Hizmetler / İnşaatlar / Misyon
========================================================= */

/* Ortak sayfa hero */
.page-hero,
.mission-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 20px;
  overflow: hidden;
  background: var(--accent-dark);
  color: var(--bg-main);
}

.page-hero::before,
.mission-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(47, 44, 39, 0.78), rgba(47, 44, 39, 0.88)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero::after,
.mission-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -180px;
  bottom: -220px;
  background: rgba(244, 241, 234, 0.08);
  z-index: 2;
}

.page-hero-content,
.mission-hero-content {
  position: relative;
  z-index: 3;
  width: min(850px, 92%);
  text-align: center;
}

.page-hero-content span,
.mission-hero-content span {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(244, 241, 234, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
}

.page-hero-content h1,
.mission-hero-content h1 {
  margin: 0;
  color: var(--bg-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
}

.page-hero-content p,
.mission-hero-content p {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(244, 241, 234, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

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

.contact-section {
  padding: 105px 0 70px;
  background: var(--bg-main);
}

.contact-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.contact-profile-card {
  min-height: 100%;
  padding: 42px;
  border-radius: 34px;
  background: var(--accent-dark);
  color: var(--bg-main);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-profile-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.08);
}

.profile-logo {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg-main);
  border: 1px solid rgba(244, 241, 234, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  margin-bottom: 32px;
}

.profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-profile-card > span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(244, 241, 234, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.contact-profile-card h2 {
  margin: 0;
  color: var(--bg-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-profile-card p {
  margin: 22px 0 0;
  color: rgba(244, 241, 234, 0.68);
  line-height: 1.85;
  font-size: 15px;
}

.profile-socials {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.profile-socials a {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent-dark);
  background: var(--bg-main);
  transition: 0.25s ease;
}

.profile-socials a:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.contact-info-area {
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 55px rgba(14, 14, 14, 0.04);
}

.contact-heading span,
.form-left span,
.map-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.contact-heading h2,
.form-left h2,
.map-card h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1px;
}

.contact-heading p,
.form-left p,
.map-card p {
  margin: 20px 0 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.contact-info-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-info-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-main);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(14, 14, 14, 0.07);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--accent-dark);
  color: var(--bg-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--text-dark);
}

.contact-form-section {
  padding: 40px 0 100px;
  background: var(--bg-main);
}

.contact-form-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.form-left {
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.52);
}

.contact-form {
  padding: 38px;
  border-radius: 34px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-success {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(47, 44, 39, 0.08);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.text-danger {
  color: #9b2c2c;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 16px;
  background: var(--bg-main);
  color: var(--text-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  outline: none;
  transition: 0.25s ease;
}

.form-group textarea {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 44, 39, 0.06);
}

.contact-form button {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--bg-main);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: 0.25s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(47, 44, 39, 0.18);
}

.map-section {
  padding: 0 0 105px;
  background: var(--bg-main);
}

.map-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.map-card,
.map-placeholder {
  border-radius: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.52);
  padding: 42px;
}

.map-card > i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--accent-dark);
  color: var(--bg-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 24px;
}

.map-placeholder {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(244, 241, 234, 0.78), rgba(244, 241, 234, 0.78)),
    repeating-linear-gradient(
      45deg,
      rgba(47, 44, 39, 0.08) 0,
      rgba(47, 44, 39, 0.08) 1px,
      transparent 1px,
      transparent 16px
    );
  text-align: center;
}

.map-placeholder i {
  font-size: 42px;
  color: var(--accent-dark);
}

.map-placeholder h3 {
  margin: 16px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.map-placeholder p {
  margin: 0;
  color: var(--text-muted);
}

/* =========================================================
   SERVICES PAGE
========================================================= */

.services-intro,
.projects-intro,
.mission-intro-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 100px 0 55px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.services-intro-left span,
.projects-intro-left span,
.mission-intro-left span,
.process-heading span,
.mission-values-heading span,
.mission-image-content span,
.vision-card span,
.services-cta-box span,
.mission-cta-box span {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
}

.services-intro-left h2,
.projects-intro-left h2,
.mission-intro-left h2,
.process-heading h2,
.mission-values-heading h2,
.mission-image-content h2,
.vision-card h2,
.services-cta-box h2,
.mission-cta-box h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -1px;
}

.services-intro-right p,
.projects-intro-right p,
.mission-intro-right p,
.process-heading p,
.mission-image-content p,
.vision-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.mission-intro-right p + p {
  margin-top: 18px;
}

.service-detail-section {
  padding: 35px 0 100px;
  background: var(--bg-main);
}

.service-detail-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-detail-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  transition: 0.28s ease;
}

.service-detail-card:hover {
  transform: translateY(-7px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-detail-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--accent-dark);
  color: var(--bg-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-detail-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(47, 44, 39, 0.32);
  font-size: 28px;
  font-weight: 300;
}

.service-detail-content h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.service-detail-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-detail-content ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.service-detail-content li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.service-detail-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-dark);
}

.service-process {
  padding: 100px 0;
  background: var(--accent-dark);
}

.process-heading {
  width: min(780px, 92%);
  margin: 0 auto 56px;
  text-align: center;
}

.process-heading span {
  color: rgba(244, 241, 234, 0.62);
}

.process-heading h2 {
  color: var(--bg-main);
}

.process-heading p {
  margin: 20px auto 0;
  color: rgba(244, 241, 234, 0.68);
}

.process-line {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 241, 234, 0.12);
}

.process-step strong {
  display: block;
  color: rgba(244, 241, 234, 0.38);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 24px;
}

.process-step h3 {
  margin: 0 0 12px;
  color: var(--bg-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: rgba(244, 241, 234, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.services-cta,
.mission-cta {
  padding: 95px 0;
  background: var(--bg-main);
}

.services-cta-box,
.mission-cta-box {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 72px 34px;
  border-radius: 38px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.services-cta-box h2,
.mission-cta-box h2 {
  max-width: 780px;
  margin: 0 auto;
}

.services-cta-box a,
.mission-cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 32px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--bg-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.services-cta-box a:hover,
.mission-cta-box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(47, 44, 39, 0.18);
}

/* =========================================================
   PROJECTS PAGE
========================================================= */

.projects-intro {
  padding-bottom: 40px;
}

.project-filter-section {
  padding: 0 0 38px;
  background: var(--bg-main);
}

.project-filter-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.54);
  color: var(--text-muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-dark);
  color: var(--bg-main);
  border-color: var(--accent-dark);
}

.projects-list-section {
  padding: 0 0 110px;
  background: var(--bg-main);
}

.projects-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.58);
  transition: 0.28s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #ddd;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.project-status {
  position: absolute;
  top: 18px;
  left: 18px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--bg-main);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.project-status.ongoing {
  background: var(--accent-dark);
  color: var(--bg-main);
}

.project-content {
  padding: 30px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.project-meta span {
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-meta small {
  color: var(--text-muted);
  font-size: 12px;
}

.project-content h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.15;
}

.project-content p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.project-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-main);
}

.project-features div {
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.project-features div:last-child {
  border-right: none;
}

.project-features strong {
  display: block;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.project-features span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 11px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.project-link i {
  transition: 0.25s ease;
}

.project-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   MISSION PAGE
========================================================= */

.mission-intro-section {
  background: var(--bg-main);
}

.mission-values-section {
  padding: 50px 0 100px;
  background: var(--bg-main);
}

.mission-values-heading {
  width: min(780px, 92%);
  margin: 0 auto 54px;
  text-align: center;
}

.mission-values-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mission-value-card {
  padding: 32px 26px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  transition: 0.28s ease;
}

.mission-value-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mission-value-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: var(--accent-dark);
  color: var(--bg-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.mission-value-card h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.mission-value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.mission-image-section {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 0 0 110px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.mission-image {
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mission-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.mission-image-content {
  padding: 10px 0;
}

.mission-image-content p {
  margin-top: 22px;
}

.mission-image-content ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.mission-image-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
}

.mission-image-content li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--bg-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-section {
  padding: 100px 0;
  background: var(--accent-dark);
}

.vision-container {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.vision-card {
  padding: 42px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 241, 234, 0.12);
}

.vision-card span {
  color: rgba(244, 241, 234, 0.62);
}

.vision-card h2 {
  color: var(--bg-main);
}

.vision-card p {
  margin-top: 22px;
  color: rgba(244, 241, 234, 0.68);
}

.vision-stats {
  display: grid;
  gap: 18px;
}

.vision-stats div {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 241, 234, 0.12);
}

.vision-stats strong {
  display: block;
  color: rgba(244, 241, 234, 0.36);
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 10px;
}

.vision-stats span {
  color: var(--bg-main);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

/* =========================================================
   RESPONSIVE - INNER PAGES
========================================================= */

@media (max-width: 1050px) {
  .contact-container,
  .contact-form-container,
  .map-container,
  .services-intro,
  .projects-intro,
  .mission-intro-container,
  .mission-image-section,
  .vision-container {
    grid-template-columns: 1fr;
  }

  .contact-info-grid,
  .service-detail-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .process-line,
  .mission-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-profile-card,
  .contact-info-area,
  .form-left,
  .contact-form,
  .map-card,
  .map-placeholder {
    padding: 34px;
  }
}

@media (max-width: 700px) {
  .page-hero,
  .mission-hero {
    min-height: 360px;
    padding: 80px 20px;
  }

  .page-hero-content h1,
  .mission-hero-content h1 {
    font-size: 48px;
  }

  .contact-section {
    padding: 76px 0 40px;
  }

  .contact-form-section {
    padding: 30px 0 76px;
  }

  .map-section {
    padding-bottom: 76px;
  }

  .form-row,
  .contact-info-grid,
  .process-line,
  .mission-values-grid,
  .project-features {
    grid-template-columns: 1fr;
  }

  .project-features div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .project-features div:last-child {
    border-bottom: none;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .projects-intro,
  .mission-intro-container {
    padding: 76px 0 42px;
    gap: 28px;
  }

  .service-detail-section,
  .service-process,
  .mission-values-section,
  .vision-section,
  .services-cta,
  .mission-cta {
    padding: 76px 0;
  }

  .projects-list-section {
    padding-bottom: 76px;
  }

  .mission-image-section {
    padding-bottom: 76px;
  }

  .mission-image,
  .mission-image img {
    min-height: 340px;
  }

  .project-image {
    height: 250px;
  }

  .contact-profile-card,
  .contact-info-area,
  .form-left,
  .contact-form,
  .map-card,
  .map-placeholder,
  .vision-card {
    padding: 28px;
    border-radius: 28px;
  }

  .services-cta-box,
  .mission-cta-box {
    padding: 52px 24px;
    border-radius: 30px;
  }
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}