/* Fontlar: Helvetica Now Display veya Inter */
*,
*::before,
*::after {
  box-sizing: border-box;
  
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  margin: 0;
  background: #fff;
  color: #111;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }

.menu-bar {
  width: min(calc(100vw - 48px), 1697px);
  max-width: 1697px;
  min-width: 220px;
  height: 64px;
  margin: 26px auto 0 auto;
  border-radius: 32px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 3px 18px 0 rgba(0,0,0,0.05);
  border: 1px solid rgba(156,156,156,0.19);
  backdrop-filter: blur(6px) brightness(100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 0 clamp(20px, 6vw, 40px) 0 clamp(20px, 1vw, 24px);
  transition: width 0.35s cubic-bezier(.6,1.3,.35,1.01), padding 0.3s;
  box-sizing: border-box;
}

.logo-block {
  display: flex;
  align-items: center;
}

.menu-bar .logo {
  height: 38px;
  margin-right: clamp(8px, 12vw, 180px);
}

.main-nav {
  display: flex;
  gap: clamp(8px, 2.5vw, 28px);
  margin-left: auto;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
}

.main-nav a {
  font-size: clamp(13px, 1.1vw, 18px);
  color: #000;
  text-decoration: none;
  padding: 3px clamp(8px, 2vw, 20px);
  border-radius: 18px;
  font-weight: 500;
  transition: background .2s, color .2s;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: border-box;
}

.main-nav a.active,
.main-nav a:hover {
  color: #ffb400;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .menu-bar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: calc(100vw - 12px);
    max-width: 900px;
    min-width: 220px;
    padding: 0 6px;
    height: 64px;
    border-radius: 32px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(156,156,156,0.19);
    box-shadow: 0 3px 18px 0 rgba(0,0,0,0.05);
    backdrop-filter: blur(6px) brightness(100%);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-sizing: border-box;
  }

  .menu-bar .logo {
    display: none !important;
  }

  .main-nav {
    display: none !important;
    gap: clamp(2px, 1vw, 18px);
  }

  .main-nav a {
    font-size: clamp(11px, 1vw, 16px);
    padding: 3px clamp(2px, 1vw, 8px);
  }

  .menu-toggle {
    display: flex !important;
  }

  .mobile-logo {
    display: block !important;
  }
}

@media (max-width: 700px) {
  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    font-size: 10px;
    padding: 2px 2px;
  }
}

.mobile-logo {
  display: none;
  position: fixed;
  top: 38px;
  left: clamp(8px, 6vw, 48px);
  height: 38px;
  z-index: 3001;
  margin: 0;
  pointer-events: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 3000;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 24px;
  top: 38px;
  padding: 0;
  margin: 0;
}

.menu-toggle .bar {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 4px;
  background: #111;
  border-radius: 3px;
  transform: translateX(-50%);
  transition: all .24s cubic-bezier(.6,1.3,.25,1.02);
  opacity: 1;
}

.menu-toggle .bar:nth-child(1) { top: 12px; }
.menu-toggle .bar:nth-child(2) { top: 20px; }
.menu-toggle .bar:nth-child(3) { top: 28px; }

.menu-toggle .close-x {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  pointer-events: none;
}

.menu-toggle.active .bar {
  opacity: 0;
}

.menu-toggle.active .close-x {
  display: block;
  animation: fadeinX .17s both;
}

@keyframes fadeinX {
  from { opacity: 0; scale: 0.8; }
  to   { opacity: 1; scale: 1; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 22px;
  right: 12px;
  width: 124vw;
  max-width: 160px;
  background: rgba(255,255,255,0.66);
  border-radius: 32px;
  box-shadow: 0 8px 52px 0 rgba(30,30,30,0.22);
  z-index: 2001;
  padding: 68px 18px 24px 18px;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  backdrop-filter: blur(18px) brightness(1.05);
  -webkit-backdrop-filter: blur(18px) brightness(1.05);
  align-items: flex-end;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: menuFadeIn .22s both;
}

@keyframes menuFadeIn {
  from { transform: translateY(-18px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  padding: 8px 0;
  border-radius: 16px;
  text-align: right;
  margin: 0;
  background: none;
  transition: none;
}

.mobile-menu a:hover {
  background: none;
  color: #111;
}

.mobile-menu a.active {
  background: none;
  color: #ffb400;
}

/* === HERO GENEL ALANI === */
.hero-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1680px;
  margin: 0 auto;
  padding: 60px 0;
  min-height: 900px;
  box-sizing: border-box;
  position: relative;
  flex-wrap: nowrap;
}

/* Sol referans etiketi */
.ref-label {
  position: absolute;
  left: -265px;
  top: 140px;
  font-size: 24px;
  font-weight: bold;
  color: #ffb400;
  line-height: 1.15;
  width: 240px;
  text-align: left;
  z-index: 10;
  letter-spacing: -0.02em;
}

/* === SOL BLOK === */
.hero-left {
  flex: 0 0 36%;
  padding: 54px 0 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 510px;
}
.hero-left h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 16px;
}
.hero-left h1 span {
  color: #ffb400;
  font-weight: 700;
}
.hero-desc {
  font-size: 18px;
  margin-bottom: 32px;
  color: #222;
}
.about-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 32px #eee;
  padding: 32px 24px 24px 24px;
  margin-top: 0;
  max-width: 360px;
}
.about-card h2 {
  margin: 0 0 10px 0;
  font-size: 23px;
  font-weight: 700;
}
.about-card p {
  font-size: 16px;
  color: #222;
  margin-bottom: 18px;
}
.cta-button {
  background: #ffb400;
  color: #fff;
  font-weight: bold;
  padding: 12px 32px;
  border-radius: 30px 30px 30px 30px;
  text-decoration: none;
  font-size: 17px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s;
}

/* Sticky header yüksekliğine göre ayarla */
#teklif-formu { scroll-margin-top: 90px; }

@media (max-width: 900px) {
  #teklif-formu { scroll-margin-top: 120px; } /* mobil header daha yüksekse arttır */
}

.cta-button:hover {
  background: #e99e00;
}

/* === SAĞ BLOK === */
.hero-right {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-width: auto;
  margin-left: auto;
  transition: all 0.1s ease;
}

/* === SLIDER KUTUSU === */
.ellipse-img {
  width: 902px;
  height: 920px;
  border-bottom-left-radius: 350px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: -150px;
  margin-left: 0px;
  box-shadow: none;
  background: #fff;
}

/* === SLIDER İÇERİĞİ === */
.slider-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.slider-image.active {
  display: block;
}
.slider-dots {
  position: absolute;
  right: 40px;
  bottom: 32px;
  display: flex;
  gap: 12px;
  z-index: 4;
}
.slider-dots .dot {
  width: 15px;
  height: 15px;
  background: #eee;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #fff;
  cursor: pointer;
}
.slider-dots .dot.active {
  background: #ffb400;
}

@media (max-width: 1440px) {
  .hero-right {
    margin-left: 80px;
  }
  .ellipse-img {
    width: 900px;
  }
}

@media (max-width: 1300px) {
  .hero-right {
    margin-left: 40px;
  }
  .ellipse-img {
    width: 720px;
  }
}

@media (max-width: 1140px) {
  .hero-right {
    margin-left: 20px;
  }
  .ellipse-img {
    width: 580px;
  }
}

@media (max-width: 900px) {
  .hero-right {
    margin-left: 0;
  }
  .ellipse-img {
    width: 460px;
  }
}


@media screen and (max-width: 900px) {
  .hero-area {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 19px;
    padding: 30px 13px;
    transform: translateX(-8px); /* bölümü sola kaydırır */
    min-height: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .ref-label {
    display: none;
  }

  .hero-left {
    width: 100%;
    min-width: auto;
    padding: 0;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 28px;
    margin-top: 64px;
    text-align: center;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-top: -24px;
    text-align: center;
    white-space: pre-line; /* --- BURAYI EKLİYORUZ --- */
  }

  .hero-desc br {
    display: none; /* --- <br> öğesini tamamen gizliyoruz --- */
  }

  .about-card {
    text-align: center;
  }

  .hero-right {
    width: 100%;
    min-width: auto;
    margin: 36px 0 0 0;
    justify-content: center;
    transform: translateX(5px); /* bölümü sola kaydırır */
    display: flex;
  }

  .ellipse-img {
    width: 100%;
    height: auto;
    max-height: 410px;
    border-radius: 28px;
    margin: 32px auto 0 auto;
  }

  .slider-dots {
    right: 120px;
    bottom: 20px;
  }
}


/* REFERANS */
.reference-section {
  width: 100%;
  margin: 20px auto 0 auto;
  border-top: 1px solid #eee;
  padding-top: 44px;
  border-bottom: 1px solid solid #eee;
  padding-bottom: 44px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  position: relative; /* ref-label için */
}
.ref-stats {
  width: 900px;
  max-width: 94vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
}
.stat-icon img { width: 38px; }
.stat-value {
  font-size: 2.1rem;
  font-weight: 900;
  margin: 8px 0 2px 0;
}
.stat-desc {
  color: #666;
  font-size: 15px;
}

/* HİZMET KARTLARI */
.services-section {
  width: 100%;
  margin: 120px auto 0 auto;
  padding: 0;
}
.services-section h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 24px;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  box-shadow: 0 7px 22px 0 rgba(48,48,48,0.06);
  width: 320px;
  min-height: 545px;
  padding: 42px 22px 36px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.8px solid #eee;
  position: relative;
  border-top-left-radius: 198px;
  border-top-right-radius: 198px;
  border-bottom-left-radius: 78px;
  border-bottom-right-radius: 78px;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s, border-color 0.22s;
}
.service-card img {
  width: 252px;
  height: 252px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 4px solid #fff;
  box-shadow: 0 2px 10px 0 rgba(100,100,100,0.03);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.service-card h3 {
  font-size: 1.20rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  cursor: pointer;
  transition: color 0.22s;
}
.service-card p {
  color: #222;
  font-size: 15px;
  line-height: 1.38;
  margin: 0;
  margin-bottom: 0;
  transition: color 0.22s;
}
/* En soldaki kart */
.service-card:first-child {
  border-top-left-radius: 198px;
  border-top-right-radius: 198px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 78px;
}
/* En sağdaki kart */
.service-card:last-child {
  border-top-left-radius: 198px;
  border-top-right-radius: 198px;
  border-bottom-left-radius: 78px;
  border-bottom-right-radius: 0;
}

/* --- HOVER: TURUNCU --- */
.service-card:hover,
.service-card:focus-within {
  background: #ffb400 !important;
  border-color: #ffb400 !important;
  color: #fff !important;
  box-shadow: 0 10px 32px 0 rgba(255,180,0,0.13);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:focus-within h3,
.service-card:focus-within p {
  color: #fff !important;
}
.service-card:hover img,
.service-card:focus-within img {
  border-color: #fff;
  box-shadow: 0 2px 20px 0 rgba(255,255,255,0.22);
}
/* Sarı kart hover'da da bozulmaz */
.service-card.yellow:hover,
.service-card.yellow:focus-within {
  background: #ffb400 !important;
  border-color: #ffb400 !important;
}

/* --- MOBİL GÖRÜNÜM --- */
@media screen and (max-width: 900px) {
  .reference-section,
  .services-section {
    display: none !important;
  }

  .mobile-ref-box {
    display: block;
    width: 92%;
    max-width: 500px;
    margin: 32px auto 20px auto;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 24px;
  }

  .mobile-ref-highlight {
    display: block;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    color: #ffb400;
    margin-bottom: 12px;
  }

  .mobile-ref-box h2 {
    font-size: 19px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
  }

  .mobile-ref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    justify-items: center;
    text-align: center;
  }

  .mobile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .mobile-stat .stat-icon img {
    width: 36px;
    height: auto;
  }

  .mobile-stat .stat-value {
    font-size: 18px;
    font-weight: 800;
  }

  .mobile-stat .stat-desc {
    font-size: 13px;
    color: #444;
  }

  .mobile-services-box {
    display: block;
    width: 92%;
    max-width: 500px;
    margin: 24px auto 44px auto;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 24px;
  }

  .mobile-services-box h2 {
    font-size: 19px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
  }

  .mobile-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-service {
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  }

  .mobile-service img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .mobile-service span {
    font-size: 14px;
    font-weight: 600;
    color: #111;
  }
}

@media screen and (min-width: 901px) {
  .mobile-ref-box,
  .mobile-services-box {
    display: none !important;
  }
}

/* PROJELER */
.projects-section {
  margin: 50px 0 0 0;
  width: 100%;
}
.projects-section h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 24px;
}
.project-gallery {
  width: 70vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 140px);
  gap: 10px;
}
.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1.2px solid #eee;
  background: #fafafa;
}

/* --- Galeri Modal / Lightbox --- */
.gallery-modal {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.80);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gallery-modal.active { display: flex; }

.gallery-modal-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(0,0,0,0.23);
  border: 3.5px solid #fff;
  background: #fff;
  object-fit: contain;
  display: block;
  cursor: pointer;
}
.gallery-modal-arrow {
  position: fixed;
  top: 50%;
  font-size: 54px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  background: rgba(0,0,0,0.16);
  border-radius: 100px;
  padding: 8px 18px;
  border: none;
  transition: background .18s, color .13s;
}
.gallery-modal-arrow:hover { background: #ffb400; color: #222; }
.gallery-modal-arrow.left { left: 44px; }
.gallery-modal-arrow.right { right: 44px; }
.gallery-modal-close {
  position: fixed;
  top: 32px; right: 60px;
  font-size: 42px;
  color: #fff;
  background: none;
  border: none;
  z-index: 10001;
  cursor: pointer;
  transition: color .13s;
  text-shadow: 0 2px 12px #000;
}
.gallery-modal-close:hover { color: #ffb400; }

.gallery-modal-arrow img {
  width: 46px;
  height: 46px;
  transition: filter 0.18s;
  filter: brightness(0) saturate(100%) invert(72%) sepia(83%) saturate(3190%) hue-rotate(360deg) brightness(99%) contrast(101%);
  pointer-events: none;
}

.gallery-modal-arrow {
  background: #fff;
  border: 3px solid #ffb400;
  outline: none;
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px 0 rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.16s;
}

.gallery-modal-arrow:hover,
.gallery-modal-arrow:active,
.gallery-modal-arrow.active {
  background: #ffb400;
  border-color: #ffb400;
}
.gallery-modal-arrow:hover img,
.gallery-modal-arrow:active img,
.gallery-modal-arrow.active img {
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .gallery-modal-img { max-width: 98vw; max-height: 64vh; }
  .gallery-modal-arrow.left { left: 5px; }
  .gallery-modal-arrow.right { right: 5px; }
  .gallery-modal-close { top: 13px; right: 10px; font-size: 29px; }
}

/* ========== RESPONSIVE + MOBİL BLOĞU ========== */

/* Masaüstü varsayılan */
.desktop-projects {
  display: block;
}
.mobile-projects {
  display: none;
}

/* Mobilde scrollable grid */
@media (max-width: 900px) {
  .desktop-projects {
    display: none !important;
  }
  .mobile-projects {
    display: block !important;
  }

  .mobile-projects .project-gallery-mobile {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 170px;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 14px;
  }

  .mobile-projects .project-gallery-mobile img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    scroll-snap-align: start;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1.2px solid #eee;
    background: #fafafa;
    cursor: pointer; /* ✅ Tıklanabilir görünüm */
  }

  /* ✅ SADECE MOBİLDE İLK 6 GÖRSEL GÖSTER */
  .project-gallery img:nth-child(n+7) {
    display: none !important;
  }
}

/* ✅ MOBİL GÖRSEL MODAL YAPISI */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 24px rgba(0,0,0,0.2);
  object-fit: contain;
  cursor: grab;
}

.gallery-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  font-weight: bold;
}

@media (max-width: 900px) {
  .gallery-modal-arrow {
    display: none !important;
  }
}



/*======================
=   WEB GÖRÜNÜMÜ       =
======================*/

/* İLETİŞİM + HARİTA (WEB) */
.contact-map-section {
  width: 100vw;
  max-width: 1920px;
  background: #ffb400;
  margin: 120px auto;
  padding: 50px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-map-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-right: 285px;
}

.contact-info {
  color: #fff;
  max-width: 360px;
  min-width: 260px;
  margin-left: 285px;
  flex: 1;
}
.contact-info h3 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-details {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}
.contact-details b {
  color: #fff;
}
.map-block iframe {
  width: 460px;
  height: 215px;
  border-radius: 32px;
  border: none;
  display: block;
  background: #fff;
}


/* FORM (WEB) */
.form-section {
  margin: 120px 0 0 0;
  width: 100%;
}
.form-section h2 {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 18px;
}
.teklif-form {
  max-width: 790px;
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  padding: 20px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 5px 24px 0 rgba(30,30,30,0.07);
}
.input-row {
  display: flex;
  gap: 13px;
  margin-bottom: 8px;
}
.teklif-form input,
.teklif-form textarea {
  font-size: 15px;
  padding: 13px 15px;
  border: 1.2px solid #ddd;
  border-radius: 17px;
  outline: none;
  margin-bottom: 0;
  flex: 1;
  resize: none;
  font-family: inherit;
}
.teklif-form input::placeholder,
.teklif-form textarea::placeholder {
  color: #a9a9a9;
}
.teklif-form textarea {
  min-height: 80px;
  max-height: 120px;
  margin-bottom: 0;
}
.cta-btn {
  display: inline-block;
  background: #ffb400;
  color: #fff;
  font-size: 22px;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 99px;
  padding: 5px 78px;
  cursor: pointer;
  margin: 18px auto 0 auto;
  box-shadow: 0 2px 16px 0 rgba(255,180,0,0.09);
  text-align: center;
  letter-spacing: -0.5px;
  transition: background 0.18s, box-shadow 0.15s, color 0.15s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #ffaa00;
  color: #fff;
  box-shadow: 0 4px 26px 0 rgba(255,180,0,0.19);
  outline: none;
}

/*======================
=   MOBİL GÖRÜNÜMÜ     =
======================*/

/* MOBİL İLETİŞİM BLOĞU */
.contact-map-section-mobile {
  display: none;
  background: #ffb400;
  padding: 36px 20px;
  width: 100vw;
  margin-top: 60px;
  text-align: center;
}
.mobile-contact-title {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.mobile-map-block iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 16px;
}
.mobile-contact-details {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}
.mobile-contact-details b {
  color: #fff;
}

/* MOBİL FORM BLOĞU */
.form-section-mobile {
  display: none;
  padding: 56px 26px;
  background: #fff;
}
.form-section-mobile h2 {
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 16px;
}
.teklif-form-mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.input-row-mobile {
  display: flex;
  gap: 8px;
  flex-direction: row;
}
.teklif-form-mobile input,
.teklif-form-mobile textarea {
  font-size: 14px;
  padding: 11px 1px;
  text-indent: 12px;
  border: 1.2px solid #ccc;
  border-radius: 18px;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.teklif-form-mobile textarea {
  min-height: 80px;
  resize: none;
}
.cta-btn-mobile {
  display: block;
  width: 100%;
  background: #ffb400;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 99px;
  padding: 14px;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.2s ease;
}

@media (max-width: 900px) {
  .cta-btn-mobile {
    width: 100%;        /* formdan taşar ama istediğin buysa olur */
    max-width: 400px;   /* garanti olsun */
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-btn-mobile:hover {
  background: #ffaa00;
}


@media (max-width: 900px) {
  /* Web bloklarını gizle */
  .contact-map-section,
  .form-section {
    display: none !important;
  }

  /* Mobil blokları göster */
  .contact-map-section-mobile,
  .form-section-mobile {
    display: block !important;
  }

  .input-row-mobile {
    flex-direction: column !important;
  }
}

.debug-mobile {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: red;
  color: white;
  padding: 6px 10px;
  font-size: 13px;
  z-index: 9999;
  border-radius: 6px;
  font-family: monospace;
}

@media (max-width: 900px) {
  .debug-mobile {
    display: block !important;
  }
}

/* FOOTER */
.footer-bottom {
  background: #fff;
  border-radius: 999px 999px 0 0;
  margin-top: 120px;
  padding: 30px 0 5px 0;
  box-shadow: 0 -5px 22px 0 rgba(50,50,50,0.06);
}
.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 0px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 28px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-links a {
  color: #222;
  font-size: 15px;
  opacity: 0.90;
  transition: color 0.17s;
}
.footer-links a:hover { color: #ffb400; }
.footer-copyright {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.footer-copyright b { color: #222; font-weight: 700; }

@media screen and (max-width: 900px) {
  .footer-bottom {
    border-radius: 28px 28px 0 0;
    padding: 24px 16px 8px 16px;
    margin-top: 40px;
    box-shadow: 0 -5px 22px rgba(50, 50, 50, 0.06);
  }

  .footer-wrap {
    gap: 18px;
    padding: 0 12px;
  }

  .footer-logo img {
    height: 36px;
    margin-bottom: 4px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 sütun */
    gap: 10px 20px;
    justify-items: start; /* her hücre içeriğini sola yaslar */
    text-align: left;     /* yazıyı sola yaslar */
    margin-bottom: 10px;
    padding: 0 8px;
  }

  .footer-links a {
    font-size: 15px;
    opacity: 0.9;
    color: #222;
    transition: color 0.17s;
  }

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

  .footer-copyright {
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    margin: 6px auto 4px;
    padding: 0 8px;
    color: #444;
  }

  .footer-copyright b {
    color: #111;
  }
}

/* Ekstra: Menü ve bar dışında kalan responsive ayarlar */

@media (max-width: 900px) {
  .hero-area { flex-direction: column; align-items: stretch; }
  .hero-left { padding-left: 4vw; }
  .hero-right { margin: 18px auto 0 auto; justify-content: center; }
  .ellipse-img { width: 95vw; min-width: 210px; height: 220px; border-bottom-right-radius: 80px 80px; }
  .ref-label { position: static; width: auto; text-align: center; margin-bottom: 15px; }
}
@media (max-width: 600px) {
  .ellipse-img { width: 94vw; height: 150px; border-bottom-right-radius: 36px 36px; }
  .footer-links { flex-direction: column; gap: 10px;}
}




