:root {
  --green-dark: #102f1d;
  --green: #1f6b3a;
  --green-soft: #eaf5ed;
  --white: #ffffff;
  --text: #1b1f1d;
  --muted: #66746c;
  --gold: #f4c542;
  --border: rgba(16, 47, 29, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}
	
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 47, 29, 0.95) 0%, rgba(16, 47, 29, 0.72) 46%, rgba(16, 47, 29, 0.35) 100%),
    radial-gradient(circle at 70% 20%, rgba(244, 197, 66, 0.18), transparent 34%);
}
	
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #368100e0;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center; /* Logoyu dikeyde ortalar */
    text-decoration: none;
}

.logo img {
    height: 50px;    /* Logonun yüksekliğini buradan ayarla */
    width: auto;     /* Genişlik orantılı kalsın */
    display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.nav-cta {
  background: #f4c542;
  color: #102f1d;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(31, 107, 58, 0.28);
}

.hero {
  min-height: 100vh;
  padding-top: 76px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 47, 29, 0.95), rgba(16, 47, 29, 0.55)),
    radial-gradient(circle at 72% 22%, rgba(244, 197, 66, 0.22), transparent 32%),
    linear-gradient(135deg, #102f1d, #1f6b3a);
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 90px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f4f8f5;
  font-size: 14px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero p {
  max-width: 620px;
  font-size: 19px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.28);
  color: #102f1d;
  background: rgb(244 197 66);
}

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

.quick-info {
  position: relative;
  z-index: 3;
  margin-top: -56px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.quick-item {
  padding: 18px;
  border-radius: 18px;
  background:#1a5b2c;
  border: 1px solid var(--border);
}

.quick-item strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 4px;
}

.quick-item span {
  color: #bdd1c5;
  font-size: 14px;
}

section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--green-dark);
  max-width: 620px;
}

.section-head p {
  max-width: 440px;
  color: var(--muted);
}

.services {
  background: #fbfdfb;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  min-height: 210px;
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(16, 47, 29, 0.12);
  border-color: rgba(31, 107, 58, 0.28);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 24px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--green-dark);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(31,107,58,0.25), rgba(244,197,66,0.12)),
    url('images/about.jpg') center/cover;
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--green-dark);
  margin-bottom: 22px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--green-dark);
  font-weight: 700;
}

.check::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 900;
  flex: none;
}

.gallery {
  background: var(--green-dark);
  color: var(--white);
}

.gallery .section-head h2 {
  color: var(--white);
}

.gallery .section-head p {
  color: rgba(255,255,255,0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}

.gallery-item {
  min-height: 310px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) {
  background-image:
  linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
  url('images/projekt-1.jpg');
}

.gallery-item:nth-child(2) {
  background-image:
  linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
  url('images/projekt-2.jpg');
}

.gallery-item:nth-child(3) {
  background-image:
  linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
  url('images/projekt-3.jpg');
}

.contact {
  background: var(--green-soft);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info,
form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 12px 34px rgba(16, 47, 29, 0.08);
}

.contact-info h2 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-weight: 800;
  color: var(--green-dark);
}

.contact-line span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
}

label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  margin-bottom: 16px;
  font: inherit;
  outline: none;
  background: #fbfdfb;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 107, 58, 0.08);
}

.form-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--green);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
}

footer {
  padding: 30px 0;
  background: var(--green-dark);
  color: rgba(255,255,255,0.72);
  text-align: center;
  font-size: 14px;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--gold);
  color: var(--green-dark);
  padding: 15px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(0,0,0,0.24);
}

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

  .quick-grid,
  .service-grid,
  .about-layout,
  .gallery-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .about-image {
    min-height: 360px;
  }

  .hero {
    min-height: 92vh;
  }

  .mobile-call {
    display: block;
  }

  .site-footer{
padding:32px 0 45px;
background:#F6F5EF;
}

.footer-line{
height:1px;
background:#d9ddd3;
margin-bottom:28px;
}

.footer-wrap{
max-width:1200px;
margin:auto;
padding:0 30px;
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
}

.footer-left{
font-size:15px;
color:#4f5f51;
}

.footer-right{
display:flex;
gap:34px;
}

.footer-right a{
text-decoration:none;
color:#173314;
font-weight:600;
position:relative;
}

.footer-right a:after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:1px;
background:#173314;
transition:.25s;
}

.footer-right a:hover:after{
width:100%;
}

@media(max-width:768px){

.footer-wrap{
flex-direction:column;
text-align:center;
gap:16px;
}

.footer-right{
gap:22px;
}
 
}
	/* Soft cream background test */
body {
  background: #f4f7ef;
}


