/* ============================================================
   BOOTSTRAP MINIMAL — sadece dogaletkasap.com'da kullanılan
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.container-fluid {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

/* ============================================================
   GRID
   ============================================================ */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* Gutter */
.g-0  { --bs-gutter-x: 0;      --bs-gutter-y: 0; }
.g-3  { --bs-gutter-x: 1rem;   --bs-gutter-y: 1rem; }
.g-4  { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.gy-4 { --bs-gutter-y: 1.5rem; }

/* Columns - mobile first (all 100%) */
.col-6  { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 768px) {
  .col-md-4  { flex: 0 0 auto; width: 33.33333%; }
  .col-md-6  { flex: 0 0 auto; width: 50%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 auto; width: 16.66667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66667%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333%; }
}

/* ============================================================
   DISPLAY
   ============================================================ */
.d-flex   { display: flex !important; }
.d-block  { display: block !important; }
.d-none   { display: none !important; }
.d-inline-block { display: inline-block !important; }
.d-inline-flex  { display: inline-flex !important; }

@media (min-width: 1200px) {
  .d-xl-none  { display: none !important; }
  .d-xl-block { display: block !important; }
}

/* ============================================================
   FLEXBOX
   ============================================================ */
.align-items-center   { align-items: center !important; }
.align-items-start    { align-items: flex-start !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end     { justify-content: flex-end !important; }
.flex-wrap    { flex-wrap: wrap !important; }
.flex-nowrap  { flex-wrap: nowrap !important; }
.flex-column  { flex-direction: column !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

.gap-1 { gap: .25rem !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

/* ============================================================
   SIZING
   ============================================================ */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* ============================================================
   SPACING — margin
   ============================================================ */
.m-0  { margin: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: .25rem !important; }
.me-2 { margin-right: .5rem !important; }
.me-auto { margin-right: auto !important; }
.ms-auto { margin-left: auto !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.px-1 { padding-right: .25rem !important; padding-left: .25rem !important; }

@media (min-width: 992px) {
  .mt-lg-0 { margin-top: 0 !important; }
}

/* ============================================================
   SPACING — padding
   ============================================================ */
.p-0 { padding: 0 !important; }

/* ============================================================
   TEXT
   ============================================================ */
.text-center { text-align: center !important; }
.text-start  { text-align: left !important; }
.text-end    { text-align: right !important; }

@media (min-width: 992px) {
  .text-lg-end   { text-align: right !important; }
  .text-lg-start { text-align: left !important; }
}

.fw-bold   { font-weight: 700 !important; }
.fw-normal { font-weight: 400 !important; }
.fst-italic { font-style: italic !important; }
.small { font-size: .875em !important; }

/* ============================================================
   POSITION
   ============================================================ */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed    { position: fixed !important; }

/* ============================================================
   OVERFLOW
   ============================================================ */
.overflow-hidden { overflow: hidden !important; }

/* ============================================================
   BORDERS & RADIUS
   ============================================================ */
.rounded        { border-radius: .375rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-3      { border-radius: .5rem !important; }
.border-0       { border: 0 !important; }

/* ============================================================
   SHADOWS
   ============================================================ */
.shadow { box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important; }

/* ============================================================
   IMAGES
   ============================================================ */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   VISUALLY HIDDEN (erişilebilirlik)
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   STICKY
   ============================================================ */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .375rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:hover { color: #212529; }

.btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  border-radius: .25rem;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* ============================================================
   FORM CONTROLS (contact formu için)
   ============================================================ */
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}

/* ============================================================
   ADDRESS
   ============================================================ */
address { font-style: normal; }
/* Responsive margin utilities */
@media (min-width: 1200px) {
  .me-xl-0 {
    margin-right: 0 !important;
  }
}