/* =========================================
   MNY - ANA RENKLER
========================================= */

:root {
  --navy: #081e30;
  --navy-light: #123b58;
  --navy-dark: #051521;

  --orange: #f7941d;
  --orange-dark: #df7d08;

  --white: #ffffff;
  --light: #f5f7f9;

  --text: #172533;
  --gray: #68737d;
}


/* =========================================
   GENEL
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  font-family: Arial, Helvetica, sans-serif;

  color: var(--text);
  background: white;
}

main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

#quarto-content {
  margin: 0 !important;
  padding: 0 !important;
}

p {
  line-height: 1.65;
}

a {
  text-decoration: none;
}


/* =========================================
   HERO / ANA FOTOĞRAF
========================================= */

.hero {
  min-height: 650px;

  background-image:
    linear-gradient(
      90deg,
      rgba(5, 21, 33, 0.98) 0%,
      rgba(5, 21, 33, 0.91) 34%,
      rgba(5, 21, 33, 0.55) 58%,
      rgba(5, 21, 33, 0.08) 100%
    ),
    url("images/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}


.hero-content {
  max-width: 1450px;
  min-height: 650px;

  margin: auto;

  padding: 70px 7%;

  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;
}


.hero-text {
  max-width: 650px;
}


.hero-location {
  color: var(--orange);

  font-size: 18px;
  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 18px;
}


.hero h1 {
  margin: 0;

  color: white;

  font-size: 63px;
  line-height: 1.04;

  font-weight: 850;

  text-shadow:
    0 4px 18px rgba(0,0,0,0.4);
}


.hero h1:nth-of-type(2) {
  color: var(--orange);
}


.hero-description {
  max-width: 570px;

  margin-top: 25px;

  color: #e4eaee;

  font-size: 18px;
  line-height: 1.7;
}


.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 15px;

  margin-top: 34px;
}


.btn {
  min-height: 57px;

  padding: 0 28px;

  border-radius: 35px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;

  transition: 0.25s ease;
}


.btn-orange {
  color: white !important;
  background: var(--orange);
}


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


.btn-whatsapp {
  color: white !important;

  border: 2px solid rgba(255,255,255,0.85);

  background: rgba(255,255,255,0.08);
}


.btn-whatsapp:hover {
  color: var(--navy) !important;
  background: white;
}


.hero-slogan {
  color: white;

  font-size: 30px;
  line-height: 1.4;

  font-weight: 700;
  font-style: italic;

  text-align: right;

  text-shadow:
    0 4px 16px rgba(0,0,0,0.55);
}


.hero-slogan strong {
  color: var(--orange);
}


/* =========================================
   ORTAK BAŞLIKLAR
========================================= */

.section-label {
  margin-bottom: 10px;

  color: var(--orange);

  font-size: 13px;
  font-weight: 850;

  letter-spacing: 2px;
}


.section-title {
  margin-top: 0;
  margin-bottom: 22px;

  color: var(--navy);

  font-size: 42px;
  line-height: 1.15;

  font-weight: 800;
}


.section-inner {
  max-width: 1200px;

  margin: auto;
}


/* =========================================
   HİZMETLER
========================================= */

.services-section {
  max-width: 1300px;

  margin: auto;

  padding: 90px 7%;
}


.services-grid {
  margin-top: 42px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}


.service-card {
  padding: 27px 22px;

  background: white;

  border: 1px solid #e7ecef;
  border-radius: 16px;

  box-shadow:
    0 8px 30px rgba(0,0,0,0.06);

  transition: 0.25s ease;
}


.service-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 14px 35px rgba(0,0,0,0.10);
}


.service-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 17px;

  border-radius: 50%;

  background: #f0f3f5;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 27px;
}


.service-card h3 {
  margin-top: 0;
  margin-bottom: 8px;

  color: var(--navy);

  font-size: 18px;
}


.service-card p {
  margin-bottom: 0;

  color: var(--gray);

  font-size: 14px;
}


/* =========================================
   HAKKIMIZDA
========================================= */

.about-section {
  padding: 90px 7%;

  background: var(--light);
}


.about-text {
  max-width: 800px;

  color: var(--gray);

  font-size: 17px;
}


.features {
  margin-top: 42px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


.feature-card {
  padding: 26px;

  background: white;

  border-radius: 15px;

  box-shadow:
    0 6px 20px rgba(0,0,0,0.04);
}


.feature-icon {
  margin-bottom: 12px;

  color: var(--orange);

  font-size: 26px;
  font-weight: 900;
}


.feature-card h3 {
  margin-top: 0;

  color: var(--navy);

  font-size: 17px;
}


.feature-card p {
  margin-bottom: 0;

  color: var(--gray);

  font-size: 14px;
}


/* =========================================
   USTALAR
========================================= */

.masters-section {
  max-width: 1200px;

  margin: auto;

  padding: 90px 7%;
}


.masters {
  margin-top: 35px;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}


.master-card {
  padding: 28px;

  background: white;

  border: 1px solid #e7ecef;
  border-radius: 16px;

  box-shadow:
    0 7px 25px rgba(0,0,0,0.05);
}


.master-icon {
  width: 65px;
  height: 65px;

  margin-bottom: 15px;

  border-radius: 50%;

  background: var(--navy);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
}


.master-card h3 {
  margin-bottom: 5px;

  color: var(--navy);
}


.master-card p {
  margin-bottom: 8px;

  color: var(--gray);

  font-size: 13px;
}


.master-phone {
  color: var(--orange) !important;

  font-weight: 800;
}


/* =========================================
   HİZMET BÖLGELERİ
========================================= */

.areas-section {
  padding: 90px 7%;

  background: var(--light);
}


.area-description {
  max-width: 800px;

  color: var(--gray);

  font-size: 17px;
}


.districts {
  margin-top: 35px;

  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}


.districts p {
  margin: 0;

  padding: 11px 18px;

  background: white;

  border: 1px solid #e1e6e9;
  border-radius: 30px;

  color: var(--navy);

  font-size: 14px;
}


.all-ankara {
  display: inline-block;

  margin-top: 28px;

  padding: 13px 22px;

  border-radius: 30px;

  background: var(--navy);

  color: white;

  font-weight: 800;
}


/* =========================================
   GOOGLE MAPS
========================================= */

.map-section {
  max-width: 1200px;

  margin: auto;

  padding: 90px 7%;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 50px;

  align-items: center;
}


.map-info h3 {
  color: var(--navy);
}


.map-info p {
  color: var(--gray);
}


.shop-address {
  color: var(--navy);

  font-size: 17px;
  font-weight: 800;
}


.map-container {
  overflow: hidden;

  border-radius: 20px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.12);
}


.map-container iframe {
  display: block;

  width: 100%;

  border: 0;
}


/* =========================================
   İLETİŞİM
========================================= */

.contact-section {
  padding: 80px 7%;
}


.contact-box {
  max-width: 1150px;

  margin: auto;

  padding: 55px;

  box-sizing: border-box;

  border-radius: 24px;

  background:
    linear-gradient(
      110deg,
      var(--navy),
      var(--navy-light)
    );

  color: white;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;
}


.contact-left h2 {
  margin-top: 0;

  max-width: 550px;

  color: white;

  font-size: 39px;
  line-height: 1.15;
}


.contact-left p {
  color: #c8d4dc;
}


.contact-people {
  min-width: 310px;
}


.contact-person {
  margin-bottom: 14px;

  padding: 15px 18px;

  background: white;

  border-radius: 12px;
}


.contact-person > p:first-child {
  margin-bottom: 3px;

  color: var(--gray);

  font-size: 13px;
}


.contact-number {
  color: var(--navy) !important;

  font-size: 18px;

  font-weight: 850;
}


.contact-whatsapp {
  display: inline-block;

  margin-top: 8px;

  padding: 14px 22px;

  border-radius: 30px;

  background: var(--orange);

  color: white !important;

  font-weight: 800;
}


/* =========================================
   FOOTER - YENİ PROFESYONEL HALİ
========================================= */

.footer {
  padding: 58px 7% 24px;

  background: var(--navy-dark);

  color: #aebbc4;

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 45px;
}


.footer-brand h2 {
  margin-top: 0;
  margin-bottom: 6px;

  color: white;

  font-size: 32px;
}


.footer-brand strong {
  color: var(--orange);
}


.footer-brand p {
  max-width: 380px;

  color: #9eacb6;

  font-size: 14px;
}


.footer-column > p:first-child {
  color: white;

  font-weight: 800;

  letter-spacing: 1px;
}


.footer-column p {
  margin-bottom: 8px;

  color: #aebbc4;

  font-size: 14px;
}


.footer a {
  color: #dce4e9 !important;
}


.footer a:hover {
  color: var(--orange) !important;
}


.footer-bottom {
  grid-column: 1 / -1;

  margin-top: 15px;

  padding-top: 22px;

  border-top:
    1px solid rgba(255,255,255,0.12);

  color: #7f909b;

  font-size: 12px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .hero h1 {
    font-size: 48px;
  }

  .hero-slogan {
    display: none;
  }

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

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

  .map-section {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 650px) {

  .hero {
    min-height: 680px;

    background-position: 58% center;
  }

  .hero-content {
    min-height: 680px;

    padding: 55px 25px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .btn {
    width: 100%;

    box-sizing: border-box;
  }

  .services-grid,
  .features,
  .masters {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .map-section {
    padding: 65px 25px;
  }

  .contact-box {
    padding: 35px 25px;

    flex-direction: column;

    align-items: stretch;
  }

  .contact-people {
    min-width: 0;
  }

  .footer {
    padding: 45px 25px 25px;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    grid-column: auto;
  }

}