@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding-top: 92px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f5f7f9;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 124px;
}
@media (max-width: 640px) {
  .section {
    padding: 48px 0;
    scroll-margin-top: 110px;
  }
}

.section-card {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  padding: 44px;
}
@media (max-width: 640px) {
  .section-card {
    padding: 26px 18px;
    border-radius: 18px;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: #072b41;
}
.section-head::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #c89b3c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: #c89b3c;
  color: #111827;
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

.site-header,
.mobile-menu,
main {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  overflow-x: hidden;
  box-sizing: border-box;
  background: rgba(7, 43, 65, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
  width: min(100% - 32px, 1280px);
  max-width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header__brand img {
  width: 185px;
  height: auto;
  max-height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}
.site-header__nav a:hover, .site-header__nav a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
@media (max-width: 1100px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.site-header__toggle span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1100px) {
  .site-header__toggle {
    display: inline-flex;
  }
}

.mobile-menu {
  display: none;
}
@media (max-width: 1100px) {
  .mobile-menu {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    box-sizing: border-box;
    background: rgba(7, 43, 65, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: max-height 240ms ease;
  }
  .mobile-menu.is-open {
    max-height: 420px;
  }
}

.mobile-menu__nav {
  width: calc(100% - 24px);
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 8px;
  padding-block: 14px 18px;
  overflow: hidden;
}
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}
.mobile-menu__nav a:hover, .mobile-menu__nav a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 4px 0 0 #c89b3c;
}

@media (max-width: 640px) {
  .site-header__inner {
    width: calc(100% - 24px);
    gap: 12px;
  }
  .site-header__brand img {
    width: 170px;
    max-height: 58px;
  }
  .site-header__toggle {
    flex: 0 0 46px;
  }
}
.site-footer {
  background: #072b41;
  color: rgba(255, 255, 255, 0.82);
  padding: 30px 0;
}

.site-footer__inner {
  position: relative;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.92rem;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  transition: color 180ms ease;
}
.site-footer__legal a:hover {
  color: #c89b3c;
}
.site-footer__legal span {
  color: rgba(255, 255, 255, 0.38);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.95rem;
}

.footer-credit {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-credit__link {
  color: #ffffff;
  font-weight: 800;
  transition: color 180ms ease;
}
.footer-credit__link:hover {
  color: #c89b3c;
}

.site-footer__top {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-top: 4px;
  border-radius: 999px;
  color: #111827;
  background: #c89b3c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.site-footer__top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  background: rgb(206.732, 167.24, 83.868);
}

@media (max-width: 640px) {
  .site-footer {
    padding: 28px 0 92px;
  }
}
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 12px;
}

.floating-actions__btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.floating-actions__btn svg {
  width: 31px;
  height: 31px;
}
.floating-actions__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.28);
}

.floating-actions__btn--whatsapp {
  background: #25d366;
}

.floating-actions__btn--call {
  background: #0b3d5c;
}

@media (max-width: 640px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
  }
  .floating-actions__btn {
    width: 52px;
    height: 52px;
  }
  .floating-actions__btn svg {
    width: 28px;
    height: 28px;
  }
}
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: calc(100vh - 92px);
  isolation: isolate;
  overflow: hidden;
  background: #072b41;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 640px) {
  .hero {
    width: 100%;
    max-width: 100%;
    height: 520px;
    min-height: 520px;
    background: #d9e3e7;
    overflow: hidden;
  }
  .hero__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #d9e3e7;
    background-image: url("../img/hero.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 215%;
  }
  .hero__media img {
    display: none;
  }
  .hero::after {
    background: rgba(7, 43, 65, 0.12);
  }
}
@media (max-width: 950px) and (orientation: landscape) {
  .hero {
    width: 100%;
    max-width: 100%;
    height: 400px;
    min-height: 400px;
    background: #d9e3e7;
    overflow: hidden;
  }
  .hero__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #d9e3e7;
    background-image: url("../img/hero.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .hero__media img {
    display: none;
  }
  .hero::after {
    background: rgba(7, 43, 65, 0.04);
  }
}
.about {
  background: #f5f7f9;
}

.about__card {
  text-align: center;
}
.about__card p {
  max-width: 880px;
  margin: 0 auto;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
.about__card p + p {
  margin-top: 18px;
}

.about__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.about__logo img {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
}

.vision-mission {
  background: linear-gradient(180deg, #f5f7f9 0%, #eef3f6 100%);
}

.vision-mission__card {
  display: grid;
  gap: 34px;
}

.vision-mission__logo {
  display: flex;
  justify-content: center;
}
.vision-mission__logo img {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
}

.vision-mission__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 900px) {
  .vision-mission__grid {
    grid-template-columns: 1fr;
  }
}

.info-box {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 61, 92, 0.04), rgba(255, 255, 255, 0)), #ffffff;
  padding: 34px;
  min-height: 240px;
  text-align: center;
}
.info-box h3 {
  margin: 0 0 16px;
  color: #072b41;
  font-size: 1.45rem;
  text-align: center;
}
.info-box p {
  margin: 0;
  color: #667085;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}

.services {
  background: #f5f7f9;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.image-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  min-height: 300px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}
.image-card:hover .image-card__img {
  transform: scale(1.04);
}

.image-card__img {
  display: block;
  width: 100%;
  height: clamp(210px, 15vw, 280px);
  background: #eaf2f7;
  -o-object-position: center;
     object-position: center;
  transition: transform 280ms ease;
}

/* Yatay panoramik görsel: tamamı görünsün */
.image-card__img--yeni-insa {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 8px;
}

/* Dikey/gövde odaklı görseller: kartı doldursun */
.image-card__img--refit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 38%;
     object-position: center 38%;
}

.image-card__img--yat-insa {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 42%;
     object-position: center 42%;
}

.image-card__img--proje-yonetimi {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 48%;
     object-position: center 48%;
}

/* Projelerimiz görselleri */
.image-card__img--project-fireboat {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 42%;
     object-position: center 42%;
}

.image-card__img--project-refit {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 8px;
}

.image-card__img--project-ambar {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 50%;
     object-position: center 50%;
}

.image-card__img--project-kreyn {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 8px;
}

.image-card__body {
  padding: 22px 18px 24px;
  text-align: center;
}
.image-card__body h3 {
  margin: 0;
  color: #072b41;
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .image-card__img {
    height: 280px;
  }
}
@media (max-width: 640px) {
  .image-card__img {
    height: 250px;
  }
}
.projects {
  background: linear-gradient(180deg, #f5f7f9 0%, #eef3f6 100%);
}

.contact {
  background: #f5f7f9;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
  min-width: 0;
}
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact__info h3 {
  margin: 0 0 12px;
  color: #072b41;
  font-size: 1.45rem;
}
.contact__info p {
  margin: 0 0 22px;
  color: #667085;
}
.contact__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.contact__info li {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(11, 61, 92, 0.06);
  color: #1f2933;
}

.contact-form {
  display: grid;
  gap: 16px;
  min-width: 0;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #072b41;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: 14px 15px;
  background: #ffffff;
  color: #1f2933;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 155, 60, 0.9);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.16);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .btn {
  justify-self: start;
}

.contact-form__botcheck {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__message {
  margin: 4px 0 0;
  font-weight: 700;
}

.contact-form__message.is-success {
  color: #15803d;
}

.contact-form__message.is-error {
  color: #b91c1c;
}

.legal-page {
  padding: 72px 0;
  background: #f5f7f9;
}

.legal-page__card {
  max-width: 920px;
  margin-inline: auto;
}

.legal-page__title {
  margin: 0 0 16px;
  color: #072b41;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  text-align: center;
}
.legal-page__title::after {
  content: "";
  display: block;
  width: min(100%, 920px);
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #c89b3c;
}

.legal-page__content {
  margin-top: 28px;
}
.legal-page__content h2 {
  margin: 30px 0 10px;
  color: #072b41;
  font-size: 1.25rem;
}
.legal-page__content p,
.legal-page__content li {
  color: #1f2933;
  text-align: justify;
}
.legal-page__content ul {
  padding-left: 22px;
}
.legal-page__content a {
  color: #0b3d5c;
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */