/* ==================================================
   DURMAZ TEKNİK - ANA STYLE.CSS
================================================== */


/* ==================================================
   RENKLER / DEĞİŞKENLER
================================================== */

:root {
  --navy: #0D1B2A;
  --orange: #F97316;
  --gray: #E5E7EB;
  --white: #ffffff;
  --ink: #12202d;
  --muted: #66717b;
  --line: #d9dee3;
  --shadow: 0 18px 50px rgba(13, 27, 42, .12);
}


/* ==================================================
   GENEL
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: 'Montserrat', Arial, sans-serif;

  color: var(--ink);
  background: #ffffff;

  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}


/* ==================================================
   BAŞLIKLAR
================================================== */

h1,
h2,
h3 {
  margin: 0 0 16px;
}

h1 {
  font-family: 'Oswald', sans-serif;

  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.02;

  letter-spacing: .01em;
  text-transform: uppercase;

  color: var(--navy);
}

h1 span {
  color: var(--orange);
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;

  color: var(--navy);
}

h3 {
  font-size: 20px;
  line-height: 1.2;

  color: var(--navy);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .16em;

  font-weight: 800;

  color: var(--orange);
}


/* ==================================================
   HEADER
================================================== */

.site-header {
  position: sticky;
  top: 0;

  z-index: 50;

  background: rgba(255, 255, 255, .96);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid #edf0f2;
}

.nav {
  height: 84px;

  display: flex;
  align-items: center;

  gap: 28px;
}

.brand-logo {
  width: 225px;
  height: auto;

  display: block;
}

.nav nav {
  display: flex;

  gap: 28px;

  margin-left: auto;

  font-weight: 600;
  font-size: 14px;
}

.nav nav a {
  transition: color .2s ease;
}

.nav nav a:hover {
  color: var(--orange);
}

.nav-cta {
  padding: 12px 18px;

  background: var(--navy);
  color: #ffffff;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  transition:
    background .2s ease,
    transform .2s ease;
}

.nav-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
}


/* ==================================================
   MOBİL MENÜ BUTONU
================================================== */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 9px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: #ffffff;

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;
}

.menu-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  background: var(--navy);

  border-radius: 999px;

  transition:
    transform .2s ease,
    opacity .2s ease;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;

  overflow: hidden;

  padding: 72px 0 58px;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f6f8fa 52%,
      #ffffff 100%
    );
}

.hero::after {
  content: "";

  position: absolute;

  right: -140px;
  top: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(249, 115, 22, .14),
      transparent 68%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.05fr .95fr;

  gap: 56px;

  align-items: center;
}

.hero-copy p {
  max-width: 640px;

  font-size: 18px;

  color: #4c5964;
}


/* ==================================================
   HERO BUTONLARI
================================================== */

.hero-actions {
  display: flex;

  gap: 14px;

  margin: 28px 0;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 20px;

  border-radius: 10px;

  font-weight: 800;

  border: 1px solid transparent;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
}

.btn-primary:hover {
  box-shadow:
    0 10px 24px rgba(249, 115, 22, .22);
}

.btn-outline {
  border-color: var(--navy);

  color: var(--navy);
  background: #ffffff;
}

.btn-outline:hover {
  background: var(--navy);
  color: #ffffff;
}


/* ==================================================
   HERO BİLGİ KUTULARI
================================================== */

.hero-points {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-top: 26px;
}

.hero-points div {
  padding: 14px;

  background: #ffffff;

  border: 1px solid var(--line);
  border-radius: 12px;
}

.hero-points strong {
  display: block;

  color: var(--navy);

  font-size: 12px;

  text-transform: uppercase;
}

.hero-points span {
  display: block;

  color: var(--muted);

  font-size: 13px;
}


/* ==================================================
   HERO FOTOĞRAF KARTI
================================================== */

.hero-card {
  padding: 16px;

  background: #ffffff;

  border-radius: 22px;

  box-shadow: var(--shadow);
}

.photo-placeholder {
  position: relative;

  min-height: 230px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 8px;

  text-align: center;

  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      #1c2a37,
      #33424f
    );

  color: #ffffff;

  border:
    1px solid rgba(255, 255, 255, .15);
}

.photo-placeholder::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent 25%,
      rgba(249, 115, 22, .16),
      transparent 60%
    );

  transform: translateX(-20%);

  pointer-events: none;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.photo-placeholder span,
.photo-placeholder small {
  position: relative;
}

.photo-placeholder span {
  font-weight: 800;

  letter-spacing: .09em;

  font-size: 15px;
}

.photo-placeholder small {
  opacity: .75;
}

.large {
  min-height: 370px;
}


/* ==================================================
   KAPASİTE KARTI
================================================== */

.capacity-card {
  margin-top: 14px;

  padding: 18px;

  background: var(--navy);
  color: #ffffff;

  border-radius: 15px;
}

.capacity-label {
  font-size: 11px;

  letter-spacing: .16em;

  color: #c8d1d8;

  font-weight: 800;
}

.capacity-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 14px;
}

.capacity-grid div {
  padding-right: 10px;

  border-right:
    1px solid rgba(255, 255, 255, .14);
}

.capacity-grid div:last-child {
  border-right: 0;
}

.capacity-grid b {
  display: block;

  font-size: 22px;

  color: var(--orange);
}

.capacity-grid span {
  font-size: 11px;

  color: #d4dae0;
}


/* ==================================================
   GENEL SECTION
================================================== */

.section {
  padding: 92px 0;
}

.light {
  background: #f8fafb;
}

.section-head {
  max-width: 760px;

  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);

  font-size: 16px;
}


/* ==================================================
   HİZMETLER
================================================== */

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.service {
  position: relative;

  padding: 26px;

  background: #ffffff;

  border: 1px solid var(--line);
  border-radius: 16px;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.service:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow);

  border-color:
    rgba(249, 115, 22, .35);
}

.service-no {
  margin-bottom: 18px;

  color: var(--orange);

  font-family: 'Oswald', sans-serif;

  font-size: 30px;
}

.service p {
  margin: 0;

  color: var(--muted);
}


/* ==================================================
   BALANS SÜRECİ
================================================== */

.section-dark {
  background: var(--navy);

  color: #ffffff;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark p {
  color: #cbd3d9;
}

.process-grid {
  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 70px;

  align-items: start;
}

.process-list {
  display: grid;

  gap: 12px;
}

.process-item {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 18px;

  padding: 20px;

  border:
    1px solid rgba(255, 255, 255, .13);

  border-radius: 15px;

  background:
    rgba(255, 255, 255, .03);
}

.process-item > span {
  font-family: 'Oswald', sans-serif;

  color: var(--orange);

  font-size: 24px;
}

.process-item p {
  margin: 0;
}


/* ==================================================
   GALERİ
================================================== */

.split-head {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 40px;
}

.split-head p {
  max-width: 480px;
}

.gallery-grid {
  display: grid;

  grid-template-columns: 1.3fr .7fr .7fr;

  grid-auto-rows: 220px;

  gap: 16px;
}

.gallery-grid .photo-placeholder {
  min-height: 0;
}

.gallery-grid .photo-placeholder:first-child {
  grid-row: span 2;
}


/* ==================================================
   CNC & TALAŞLI İMALAT
================================================== */

.cnc-home {
  padding: 84px 0;

  background: #ffffff;

  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
}

.cnc-home-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, .92fr);

  gap: 64px;

  align-items: center;
}


/* CNC SOL TARAF */

.cnc-home-content h2 {
  margin: 0 0 22px;

  font-size: clamp(32px, 4vw, 48px);

  line-height: 1.1;

  color: var(--navy);
}

.cnc-home-content h2 span {
  color: var(--orange);
}

.cnc-home-content p {
  max-width: 680px;

  margin: 0 0 16px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.75;
}

.cnc-home-content .cnc-home-lead {
  color: #46535e;
}

.cnc-home-content p strong {
  color: var(--navy);
}


/* CNC HİZMET KUTULARI */

.cnc-home-services {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 12px;

  margin: 30px 0;
}

.cnc-mini-service {
  min-height: 92px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 16px;

  background: #f8fafb;

  border: 1px solid var(--line);
  border-radius: 14px;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.cnc-mini-service:hover {
  transform: translateY(-3px);

  border-color:
    rgba(249, 115, 22, .55);

  box-shadow:
    0 12px 28px rgba(13, 27, 42, .08);
}

.cnc-mini-service > span {
  flex: 0 0 36px;

  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--navy);

  color: #ffffff;

  font-family: 'Oswald', sans-serif;

  font-size: 14px;
}

.cnc-mini-service strong {
  display: block;

  color: var(--navy);

  font-size: 13px;

  line-height: 1.25;
}

.cnc-mini-service small {
  display: block;

  margin-top: 4px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.3;
}


/* CNC BUTON + KONUM */

.cnc-home-bottom {
  display: flex;

  align-items: center;

  gap: 26px;

  flex-wrap: wrap;
}

.cnc-home-bottom .btn {
  gap: 12px;
}

.cnc-home-bottom .btn span {
  font-size: 19px;

  line-height: 1;
}

.cnc-location {
  padding-left: 18px;

  border-left:
    2px solid var(--orange);
}

.cnc-location strong {
  display: block;

  color: var(--navy);

  font-size: 13px;
}

.cnc-location small {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 11px;
}


/* CNC FOTOĞRAF */

.cnc-home-image {
  position: relative;

  min-height: 430px;

  overflow: hidden;

  border-radius: 20px;

  background: var(--navy);

  box-shadow: var(--shadow);
}

.cnc-home-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 52%,
      rgba(9, 19, 31, .38) 100%
    );

  pointer-events: none;
}

.cnc-home-image img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .45s ease;
}

.cnc-home-image:hover img {
  transform: scale(1.025);
}


/* CNC FOTOĞRAF ETİKETİ */

.cnc-image-badge {
  position: absolute;

  z-index: 2;

  left: 20px;
  bottom: 20px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 16px;

  border:
    1px solid rgba(255, 255, 255, .16);

  border-radius: 12px;

  background:
    rgba(13, 27, 42, .90);

  color: #ffffff;

  backdrop-filter: blur(8px);
}

.cnc-image-badge > span {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: var(--orange);

  color: #ffffff;

  font-size: 11px;
  font-weight: 800;
}

.cnc-image-badge strong {
  display: block;

  color: #ffffff;

  font-size: 13px;
}

.cnc-image-badge small {
  display: block;

  margin-top: 2px;

  color: #cbd3d9;

  font-size: 10px;
}


/* ==================================================
   SIK SORULANLAR
================================================== */

.faq-section {
  background: #ffffff;
}

.faq-grid {
  display: grid;

  grid-template-columns: .85fr 1.15fr;

  gap: 60px;
}

.faq-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.faq {
  padding: 12px 18px;

  border-left:
    3px solid var(--orange);

  background: #f8fafb;
}

.faq h3 {
  font-size: 16px;
}

.faq p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


/* ==================================================
   İLETİŞİM CTA
================================================== */

.cta-section {
  padding: 78px 0;

  background:
    linear-gradient(
      135deg,
      #eff3f6,
      #ffffff
    );
}

.cta-grid {
  display: grid;

  grid-template-columns: 1fr .7fr;

  gap: 50px;

  align-items: center;
}

.contact-card {
  padding: 10px;

  background: var(--navy);

  color: #ffffff;

  border-radius: 18px;
}

.contact-card a {
  display: block;

  padding: 18px 20px;

  border-bottom:
    1px solid rgba(255, 255, 255, .1);

  transition: background .2s ease;
}

.contact-card a:hover {
  background:
    rgba(255, 255, 255, .04);
}

.contact-card a:last-child {
  border-bottom: 0;
}

.contact-card span {
  display: block;

  color: #bfc9d2;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: .08em;
}

.contact-card strong {
  display: block;

  margin-top: 3px;

  font-size: 18px;
}


/* ==================================================
   WHATSAPP SABİT BUTON
================================================== */

.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 60;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #20c063;

  color: #ffffff;

  font-weight: 800;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .2);

  transition:
    transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}


/* ==================================================
   FOOTER
================================================== */

.footer {
  padding-top: 48px;

  background: #09131f;

  color: #cbd3d9;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.3fr 1fr 1fr 1fr;

  gap: 30px;

  padding-bottom: 32px;
}

.footer-logo {
  width: 220px;

  margin-bottom: 6px;

  filter:
    brightness(0)
    invert(1);
}

.footer strong {
  color: #ffffff;
}

.footer p {
  margin: .5rem 0 0;
}

.footer-bottom {
  padding: 18px 0;

  border-top:
    1px solid rgba(255, 255, 255, .08);

  font-size: 12px;

  color: #8f9ba6;
}


/* ==================================================
   TABLET / MOBİL MENÜ
   920 PX
================================================== */

@media (max-width: 920px) {

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: flex;

    margin-left: auto;

    order: 2;
  }

  .nav-cta {
    margin-left: 0;

    order: 3;
  }

  .nav nav {
    display: none;

    position: absolute;

    left: 0;
    right: 0;
    top: 84px;

    width: 100%;

    margin: 0;

    padding: 10px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-top: 0;

    border-radius:
      0 0 14px 14px;

    box-shadow:
      0 18px 40px rgba(13, 27, 42, .14);

    flex-direction: column;

    gap: 0;
  }

  .site-header.menu-open .nav nav {
    display: flex;
  }

  .nav nav a {
    padding: 14px 12px;

    border-bottom:
      1px solid #edf0f2;
  }

  .nav nav a:last-child {
    border-bottom: 0;
  }


  /* Hamburger X */

  .site-header.menu-open
  .menu-toggle span:nth-child(1) {

    transform:
      translateY(7px)
      rotate(45deg);
  }

  .site-header.menu-open
  .menu-toggle span:nth-child(2) {

    opacity: 0;
  }

  .site-header.menu-open
  .menu-toggle span:nth-child(3) {

    transform:
      translateY(-7px)
      rotate(-45deg);
  }


  /* Genel gridler */

  .hero-grid,
  .process-grid,
  .faq-grid,
  .cta-grid {

    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .gallery-grid
  .photo-placeholder:first-child {

    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .large {
    min-height: 290px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .split-head {
    display: block;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

}


/* ==================================================
   CNC TABLET
   1000 PX
================================================== */

@media (max-width: 1000px) {

  .cnc-home-grid {
    grid-template-columns: 1fr;

    gap: 36px;
  }

  .cnc-home-image {
    min-height: 400px;
  }

}


/* ==================================================
   CNC MOBİL
   700 PX
================================================== */

@media (max-width: 700px) {

  .cnc-home {
    padding: 64px 0;
  }

  .cnc-home-services {
    grid-template-columns: 1fr;
  }

  .cnc-mini-service {
    min-height: auto;
  }

  .cnc-home-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

  .cnc-home-bottom .btn {
    width: 100%;
  }

  .cnc-location {
    padding-left: 14px;
  }

  .cnc-home-image {
    min-height: 310px;

    border-radius: 16px;
  }

  .cnc-image-badge {
    left: 14px;
    bottom: 14px;
  }

}


/* ==================================================
   TELEFON
   560 PX
================================================== */

@media (max-width: 560px) {

  .nav {
    height: 72px;

    gap: 10px;
  }

  .brand-logo {
    width: 180px;
  }

  .nav nav {
    top: 72px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }


  /* Hero */

  .hero {
    padding: 42px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }


  /* Hizmetler */

  .services-grid {
    grid-template-columns: 1fr;
  }


  /* Galeri */

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .photo-placeholder {
    min-height: 240px;
  }


  /* Kapasite */

  .capacity-grid {
    grid-template-columns: 1fr;
  }

  .capacity-grid div {
    padding: 10px 0;

    border-right: 0;

    border-bottom:
      1px solid rgba(255, 255, 255, .12);
  }

  .capacity-grid div:last-child {
    border-bottom: 0;
  }


  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
  }


  /* Genel section */

  .section {
    padding: 68px 0;
  }


  /* Başlık */

  h1 {
    font-size:
      clamp(42px, 13vw, 58px);
  }


  /* WhatsApp */

  .whatsapp-float {
    right: 16px;
    bottom: 16px;

    width: 54px;
    height: 54px;
  }

}
/* =========================================
   BASİT CNC BÖLÜMÜ
========================================= */

.cnc-simple {
  background: #ffffff;
  border-top: 1px solid #edf0f2;
}

.cnc-simple-box {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 55px;
  align-items: center;

  padding: 45px;

  background: #f8fafb;

  border: 1px solid #e5e7eb;
  border-radius: 20px;
}

.cnc-simple-content {
  min-width: 0;
}

.cnc-simple-content h2 {
  margin-top: 8px;
  margin-bottom: 18px;
}

.cnc-simple-content p {
  max-width: 650px;

  margin: 0 0 24px;

  color: #66717b;

  font-size: 16px;
  line-height: 1.7;
}

.cnc-simple-content .btn {
  width: auto;
}


/* FOTOĞRAF */

.cnc-simple-photo {
  width: 360px;
  height: 240px;

  overflow: hidden;

  border-radius: 16px;

  background: #0D1B2A;
}

.cnc-simple-photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* TABLET */

@media (max-width: 900px) {

  .cnc-simple-box {
    grid-template-columns: 1fr;
    gap: 30px;

    padding: 32px;
  }

  .cnc-simple-photo {
    width: 100%;
    height: 320px;
  }

}


/* TELEFON */

@media (max-width: 560px) {

  .cnc-simple-box {
    padding: 24px 20px;
  }

  .cnc-simple-photo {
    width: 100%;
    height: 220px;
  }

  .cnc-simple-content .btn {
    width: 100%;
  }

}