* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fffaf2;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: auto;
}

/* HEADER */

.site-header {
  background: #075c2b;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  max-height: 58px;
}

.main-menu {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

.main-menu a {
  transition: .25s;
}

.main-menu a:hover {
  color: #ffc400;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffc400;
  color: #111;
  padding: 12px 20px;
  border-radius: 16px;
  font-weight: 700;
}

.header-call i {
  font-size: 22px;
}

.header-call span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.header-call strong {
  font-size: 18px;
}

/* HERO */

.hero {
  background: linear-gradient(90deg, #fffaf2 0%, #fffaf2 42%, #ffe6a3 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 620px;
  gap: 30px;
}

.hero-text h1 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.05;
  color: #075c2b;
  margin-bottom: 22px;
}

.hero-text h1 span {
  color: #ff5b00;
  display: block;
}

.hero-text p {
  font-size: 21px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .25s;
}

.btn.primary {
  background: #087c34;
  color: #fff;
  box-shadow: 0 10px 24px rgba(8,124,52,.25);
}

.btn.outline {
  border: 2px solid #087c34;
  color: #087c34;
  background: #fff;
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-features {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-features div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-features i {
  color: #ff8a00;
  font-size: 26px;
}

.hero-features strong {
  font-size: 15px;
}

.hero-features small {
  color: #555;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,.28));
}

.badge {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #ff5b00;
  color: #ff5b00;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.badge span {
  font-size: 12px;
  color: #111;
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title small {
  color: #ff5b00;
  font-weight: 900;
  letter-spacing: .5px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: #075c2b;
}

/* SERVICES */

.services {
  padding: 70px 0;
  background: #fffaf2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  border: 1px solid rgba(255,91,0,.18);
  transition: .25s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.service-card .icon {
  width: 70px;
  height: 70px;
  margin: -35px auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5b00, #ffc400);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.service-card p {
  padding: 0 22px 26px;
  line-height: 1.6;
  color: #333;
}

/* PRICES */

.prices {
  padding: 70px 0;
  background: #ffc400;
  position: relative;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  transition: .25s;
}

.price-card:hover,
.price-card.active {
  transform: translateY(-8px);
  background: #075c2b;
  color: #fff;
}

.price-card i {
  font-size: 28px;
  color: #ff5b00;
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 46px;
  color: #075c2b;
}

.price-card.active h3,
.price-card:hover h3 {
  color: #ffc400;
}

.price-card span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-card strong {
  font-size: 32px;
}

/* WHY US */

.why-us {
  padding: 70px 0;
  background: #f8f4ee;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-grid div {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid #ece6de;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  transition: .25s;
}

.why-grid div:hover {
  transform: translateY(-5px);
}

.why-grid i {
  font-size: 42px;
  margin-bottom: 16px;
}

/* ICON RENKLERİ */

.why-grid div:nth-child(1) i {
  color: #1da1ff;
}

.why-grid div:nth-child(2) i {
  color: #68b300;
}

.why-grid div:nth-child(3) i {
  color: #ff7a00;
}

.why-grid div:nth-child(4) i {
  color: #7a42ff;
}

.why-grid div:nth-child(5) i {
  color: #ff4d73;
}

.why-grid h4 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #1f1f1f;
  font-weight: 800;
}

.why-grid p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* MOBİL */

@media (max-width: 1100px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .why-grid {
    grid-template-columns: 1fr;
  }

}

/* COMMENTS */

.comments {
  padding: 70px 0;
  background: #fffaf2;
}

.comment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.comment-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border: 1px solid rgba(255,91,0,.25);
}

.stars {
  color: #ffc400;
  margin-bottom: 14px;
}

.comment-card p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.comment-card strong {
  color: #087c34;
}

/* GALLERY */

.gallery {
  padding: 65px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* FOOTER */

.footer {
  background: #075c2b;
  color: #fff;
  padding: 55px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-logo {
  max-height: 58px;
  margin-bottom: 16px;
}

.footer h4 {
  color: #ffc400;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.footer i {
  color: #ffc400;
  margin-right: 8px;
}

.whatsapp-box {
  border: 1px solid #ffc400;
  border-radius: 18px;
  padding: 22px;
}

.whatsapp-box a i {
  font-size: 42px;
  color: #25d366;
}

/* FIXED WHATSAPP */

.fixed-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  z-index: 9999;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

/* MOBILE */

@media (max-width: 992px) {
  .main-menu {
    display: none;
  }

  .header-call {
    padding: 10px 14px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 45px 0;
  }

  .service-grid,
  .price-grid,
  .why-grid,
  .comment-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .header-inner {
    min-height: 72px;
  }

  .logo img {
    max-height: 46px;
  }

  .header-call span {
    display: none;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .hero-features {
    gap: 18px;
  }

  .badge {
    width: 96px;
    height: 96px;
    font-size: 22px;
  }

  .badge span {
    font-size: 10px;
  }

  .service-grid,
  .price-grid,
  .why-grid,
  .comment-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card h3 {
    font-size: 42px;
  }
}
/* HERO VİDEO ALANI */

.hero-media {
  width: 100%;
}

.hero-video-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  background: #000;
}

.hero-video-box video {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.hero-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.hero-mini-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

/* MOBİL HERO VİDEO */

@media (max-width: 700px) {

  .hero-media {
    margin-top: 15px;
  }

  .hero-video-box {
    border-radius: 18px;
  }

  .hero-video-box video {
    height: 240px;
  }

  .hero-mini-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-mini-gallery img {
    height: 95px;
    border-radius: 14px;
  }

}
/* ALT SAYFA GENEL */

.page-hero {
  background: linear-gradient(90deg, #fffaf2 0%, #fff4d6 100%);
  padding: 70px 0;
  overflow: hidden;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 40px;
}

.page-hero span {
  color: #ff5b00;
  font-weight: 900;
  letter-spacing: .5px;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 70px);
  color: #075c2b;
  margin: 10px 0 18px;
}

.page-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
}

.page-hero img {
  width: 100%;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

/* HİZMETLER SAYFASI */

.sub-services {
  padding: 70px 0;
  background: #fff;
}

.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.sub-service-card {
  background: #fffaf2;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0,0,0,.09);
  border: 1px solid rgba(255, 91, 0, .18);
  transition: .25s;
}

.sub-service-card:hover {
  transform: translateY(-6px);
}

.sub-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ff5b00, #ffc400);
  color: #fff;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 22px;
}

.sub-service-card h2 {
  color: #075c2b;
  font-size: 26px;
  margin-bottom: 14px;
}

.sub-service-card p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.sub-service-card ul {
  list-style: none;
}

.sub-service-card li {
  margin-bottom: 10px;
  font-weight: 700;
}

.sub-service-card li i {
  color: #087c34;
  margin-right: 8px;
}

.service-process {
  padding: 70px 0;
  background: #ffc400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.process-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
}

.process-card span {
  position: absolute;
  top: 18px;
  left: 22px;
  color: rgba(7,92,43,.12);
  font-size: 46px;
  font-weight: 900;
}

.process-card i {
  font-size: 42px;
  color: #ff5b00;
  margin-bottom: 20px;
}

.process-card h3 {
  color: #075c2b;
  font-size: 24px;
  margin-bottom: 12px;
}

.process-card p {
  color: #444;
  line-height: 1.6;
}

.cta-section {
  padding: 55px 0;
  background: #075c2b;
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 18px;
  color: #fff4d6;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-section .btn.outline {
  border-color: #fff;
}

/* MOBİL ALT SAYFA */

@media (max-width: 900px) {
  .page-hero-inner,
  .sub-service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* FİYATLAR SAYFASI */

.price-page-section {
  padding: 80px 0;
  background: #fffaf2;
}

.price-page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.price-box {
  background: #fff;
  border-radius: 24px;
  padding: 34px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  transition: .25s;
}

.price-box:hover {
  transform: translateY(-8px);
}

.price-box.featured {
  background: #075c2b;
  color: #fff;
  transform: scale(1.04);
}

.featured-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff5b00;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px;
}

.price-top i {
  font-size: 34px;
  color: #ff5b00;
  margin-bottom: 14px;
}

.price-top h3 {
  font-size: 56px;
  color: #075c2b;
  line-height: 1;
}

.price-box.featured .price-top h3 {
  color: #ffc400;
}

.price-top span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-box strong {
  display: block;
  font-size: 38px;
  margin: 26px 0;
}

.price-food {
  width: 120px;
  margin: 18px auto 10px;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
  transition: .25s;
}

.price-box:hover .price-food {
  transform: scale(1.08);
}

.price-box ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-box ul li {
  margin-bottom: 14px;
  font-weight: 700;
}

.price-box ul li i {
  color: #087c34;
  margin-right: 8px;
}

.price-box.featured ul li i {
  color: #ffc400;
}

.price-btn {
  display: inline-block;
  background: #ff5b00;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s;
}

.price-btn:hover {
  transform: translateY(-3px);
}

.included-section {
  padding: 80px 0;
  background: #fff;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.included-card {
  background: #fffaf2;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.included-card i {
  font-size: 42px;
  color: #ff5b00;
  margin-bottom: 18px;
}

.included-card h3 {
  color: #075c2b;
  margin-bottom: 10px;
}

.included-card p {
  line-height: 1.7;
  color: #444;
}

.price-faq {
  padding: 80px 0;
  background: #ffc400;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.faq-item h3 {
  color: #075c2b;
  margin-bottom: 14px;
  font-size: 22px;
}

.faq-item p {
  line-height: 1.7;
  color: #444;
}

/* MOBİL */

@media (max-width: 1100px) {

  .price-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .price-page-grid,
  .included-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .price-box.featured {
    transform: none;
  }

}
/* GALERİ SAYFASI */

.gallery-page {
  padding: 80px 0;
  background: #fffaf2;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15)
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

/* İSTATİSTİK */

.gallery-stats {
  padding: 80px 0;
  background: #075c2b;
}

.gallery-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-stat-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px;
  text-align: center;
  color: #fff;
}

.gallery-stat-card i {
  font-size: 42px;
  color: #ffc400;
  margin-bottom: 16px;
}

.gallery-stat-card h3 {
  font-size: 42px;
  margin-bottom: 8px;
}

.gallery-stat-card p {
  color: #fff4d6;
}

/* VİDEO */

.video-section {
  padding: 80px 0;
  background: #fff;
}

.video-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
}

.video-box img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 42px;
  border: 2px solid rgba(255,255,255,.35);
  transition: .25s;
}

.play-button:hover {
  transform: scale(1.08);
}

/* MOBİL */

@media (max-width: 1000px) {

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .gallery-page-grid,
  .gallery-stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: auto;
  }

  .video-box img {
    height: 320px;
  }

  .play-button {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

}
/* HAKKIMIZDA SAYFASI */

.about-section {
  padding: 90px 0;
  background: #fffaf2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.experience-box {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ff5b00, #ffc400);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.experience-box strong {
  font-size: 54px;
  line-height: 1;
}

.experience-box span {
  font-weight: 700;
  margin-top: 10px;
}

.mini-title {
  display: inline-block;
  color: #ff5b00;
  font-weight: 900;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: clamp(34px, 5vw, 54px);
  color: #075c2b;
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-content p {
  line-height: 1.9;
  margin-bottom: 18px;
  color: #444;
  font-size: 17px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.about-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.about-features i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #087c34;
  color: #fff;
  display: grid;
  place-items: center;
}

/* MİSYON */

.mission-section {
  padding: 90px 0;
  background: #075c2b;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mission-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  color: #fff;
}

.mission-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff5b00, #ffc400);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 38px;
}

.mission-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.mission-card p {
  color: #fff4d6;
  line-height: 1.8;
}

/* TİMELİNE */

.timeline-section {
  padding: 90px 0;
  background: #fff;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-item {
  background: #fffaf2;
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ff5b00, #ffc400);
}

.timeline-item span {
  font-size: 48px;
  font-weight: 900;
  color: rgba(7,92,43,.12);
}

.timeline-item h3 {
  color: #075c2b;
  margin: 10px 0 14px;
}

.timeline-item p {
  line-height: 1.8;
  color: #444;
}

/* TEAM */

.team-section {
  padding: 90px 0;
  background: #fffaf2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.team-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.team-content {
  padding: 28px;
  text-align: center;
}

.team-content h3 {
  color: #075c2b;
  font-size: 28px;
  margin-bottom: 8px;
}

.team-content span {
  display: block;
  color: #ff5b00;
  font-weight: 800;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.team-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fffaf2;
  display: grid;
  place-items: center;
  color: #075c2b;
  transition: .25s;
}

.team-social a:hover {
  background: #ff5b00;
  color: #fff;
}

/* MOBİL */

@media (max-width: 1000px) {

  .about-grid,
  .mission-grid,
  .timeline-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .experience-box {
    right: 10px;
    bottom: 10px;
  }

}

@media (max-width: 700px) {

  .experience-box {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }

  .experience-box strong {
    font-size: 34px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 320px;
  }

}
/* SSS SAYFASI */

.faq-page-section {
  padding: 90px 0;
  background: #fffaf2;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 45px;
  align-items: flex-start;
}

.faq-left {
  background: #075c2b;
  color: #fff;
  padding: 42px;
  border-radius: 28px;
  position: sticky;
  top: 110px;
  box-shadow: 0 16px 36px rgba(0,0,0,.13);
}

.faq-left h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.faq-left p {
  color: #fff4d6;
  line-height: 1.8;
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-row {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  border: 1px solid rgba(255,91,0,.16);
}

.faq-row h3 {
  color: #075c2b;
  font-size: 21px;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-row h3 i {
  color: #ff5b00;
  margin-top: 3px;
}

.faq-row p {
  color: #444;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .faq-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-left {
    position: static;
  }
}
/* İLETİŞİM SAYFASI */

.contact-section {
  padding: 90px 0;
  background: #fffaf2;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 45px;
}

.contact-left {
  background: #075c2b;
  color: #fff;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.contact-left h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  margin: 14px 0 18px;
}

.contact-left p {
  color: #fff4d6;
  line-height: 1.8;
  margin-bottom: 34px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  padding: 20px;
  border-radius: 20px;
}

.contact-icon {
  min-width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff5b00, #ffc400);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 6px;
}

.contact-info-item span {
  color: #fff4d6;
}

.social-contact {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.social-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  transition: .25s;
}

.social-contact a:hover {
  background: #ff5b00;
}

/* FORM */

.contact-form-box {
  background: #fff;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
}

.form-title small {
  color: #ff5b00;
  font-weight: 900;
}

.form-title h3 {
  font-size: 42px;
  color: #075c2b;
  margin: 10px 0 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  background: #fffaf2;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 16px;
  outline: none;
  transition: .25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff5b00;
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-submit {
  border: none;
  background: linear-gradient(135deg, #ff5b00, #ffc400);
  color: #fff;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s;
}

.contact-submit:hover {
  transform: translateY(-3px);
}

/* HARİTA */

.map-section {
  padding: 90px 0;
  background: #fff;
}

.map-box {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}

.map-box iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* ÇALIŞMA SAATLERİ */

.working-hours {
  padding: 90px 0;
  background: #ffc400;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hour-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.hour-card h3 {
  color: #075c2b;
  margin-bottom: 14px;
  font-size: 28px;
}

.hour-card span {
  font-size: 22px;
  font-weight: 900;
  color: #ff5b00;
}

/* MOBİL */

@media (max-width: 950px) {

  .contact-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {

  .contact-left,
  .contact-form-box {
    padding: 28px;
  }

  .form-title h3 {
    font-size: 34px;
  }

  .map-box iframe {
    height: 320px;
  }

}
/* REFERANSLAR SAYFASI */

.reference-stats {
  padding: 80px 0;
  background: #075c2b;
}

.reference-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reference-stat-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  color: #fff;
}

.reference-stat-box i {
  font-size: 42px;
  color: #ffc400;
  margin-bottom: 16px;
}

.reference-stat-box h3 {
  font-size: 42px;
  margin-bottom: 10px;
}

.reference-stat-box p {
  color: #fff4d6;
}

/* YORUMLAR */

.customer-comments {
  padding: 90px 0;
  background: #fffaf2;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.customer-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  position: relative;
}

.featured-review {
  background: #075c2b;
  color: #fff;
  transform: scale(1.03);
}

.best-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff5b00;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 0 0 18px 0;
}

.comment-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.comment-top img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-top h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.comment-top span {
  color: #ff5b00;
  font-weight: 700;
}

.featured-review .comment-top span {
  color: #ffc400;
}

.customer-card p {
  line-height: 1.8;
}

/* MARKALAR */

.brands-section {
  padding: 90px 0;
  background: #fff;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.brand-box {
  background: #fffaf2;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  place-items: center;
  min-height: 140px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.brand-box img {
  max-width: 120px;
  opacity: .75;
  transition: .25s;
}

.brand-box:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* VİDEO */

.video-testimonial {
  padding: 90px 0;
  background: #ffc400;
}

.video-reference-box {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.video-reference-box img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 42px;
  border: 2px solid rgba(255,255,255,.28);
}

/* GOOGLE */

.google-review-section {
  padding: 90px 0;
  background: #fff;
}

.google-review-box {
  background: #fffaf2;
  border-radius: 34px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.google-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.google-left img {
  width: 90px;
}

.google-left h3 {
  color: #075c2b;
  font-size: 34px;
  margin-bottom: 8px;
}

.google-left span {
  color: #666;
}

.google-stars {
  display: flex;
  gap: 8px;
  color: #ffc400;
  font-size: 34px;
}

/* MOBİL */

@media (max-width: 1100px) {

  .reference-stats-grid,
  .customer-grid,
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .reference-stats-grid,
  .customer-grid,
  .brands-grid {
    grid-template-columns: 1fr;
  }

  .featured-review {
    transform: none;
  }

  .video-reference-box img {
    height: 320px;
  }

  .video-play-btn {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

  .google-review-box {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .google-left {
    flex-direction: column;
  }

}
/* BÖLGE SAYFALARI */

.district-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #fffaf2, #ffe8b2);
  overflow: hidden;
}

.district-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.district-hero span {
  color: #ff5b00;
  font-weight: 900;
}

.district-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  color: #075c2b;
  line-height: 1.05;
  margin: 14px 0 20px;
}

.district-hero p {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  max-width: 620px;
}

.district-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.district-image img {
  width: 100%;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.16));
}

/* İÇERİK */

.district-info {
  padding: 90px 0;
  background: #fff;
}

.district-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.district-left h2 {
  font-size: clamp(34px, 4vw, 54px);
  color: #075c2b;
  line-height: 1.15;
  margin: 14px 0 20px;
}

.district-left p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.district-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.district-feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.district-feature-list i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #087c34;
  color: #fff;
  display: grid;
  place-items: center;
}

.district-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.district-card {
  background: #fffaf2;
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.district-card i {
  font-size: 42px;
  color: #ff5b00;
  margin-bottom: 18px;
}

.district-card h3 {
  color: #075c2b;
  margin-bottom: 14px;
}

.district-card p {
  color: #555;
  line-height: 1.7;
}

/* GALERİ */

.district-gallery {
  padding: 90px 0;
  background: #fffaf2;
}

.district-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.district-gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

/* YORUMLAR */

.district-comments {
  padding: 90px 0;
  background: #075c2b;
}

.district-comment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.district-comment-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 34px;
  color: #fff;
}

.featured-district-comment {
  background: linear-gradient(135deg, #ff5b00, #ff8a00);
}

.district-comment-card p {
  line-height: 1.9;
  margin: 18px 0;
}

.district-comment-card strong {
  color: #ffc400;
}

/* MOBİL */

@media (max-width: 1000px) {

  .district-hero-grid,
  .district-info-grid,
  .district-comment-grid,
  .district-gallery-grid {
    grid-template-columns: 1fr;
  }

  .district-right {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {

  .district-feature-list {
    grid-template-columns: 1fr;
  }

}
/* FİYAT KART TELEFON BUTONU */

.price-call-btn {
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(135deg, #ff5b00, #ff8800);
  color: #fff;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  transition: .25s;
  box-shadow: 0 10px 20px rgba(255,91,0,.22);
}

.price-call-btn:hover {
  transform: translateY(-3px);
}

.price-box.active .price-call-btn {
  background: #fff;
  color: #075c2b;
}