:root {
  --topbar-height: 44px;
  --nav-height: 82px;
  --dark: #061827;
  --dark-2: #0b2234;
  --steel: #173954;
  --gold: #b89148;
  --gold-2: #d9b96f;
  --muted: #6b7280;
  --soft: #f5f7fb;
  --white: #ffffff;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 18px 50px rgba(2, 8, 23, .14);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #142033;
  background: #fff;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: #fff
}

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

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

.top-strip {
  min-height: var(--topbar-height);
  background: linear-gradient(90deg, #061827, #0d324d);
  color: #fff;
  font-size: .88rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1040;
}

.top-strip a {
  opacity: .95;
  transition: .2s ease;
  padding-right: 5px;
}

.top-strip a:hover {
  opacity: 1;
  color: var(--gold-2)
}

.top-strip .sep {
  opacity: .25;
  margin: 0 .72rem
}

.top-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  margin-right: .4rem;
  font-size: .78rem
}

.navbar {
  min-height: var(--nav-height);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(2, 8, 23, .06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark) !important
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--dark), var(--steel));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(6, 24, 39, .22);
}

.navbar .nav-link {
  font-weight: 650;
  color: #233047 !important;
  margin: 0 .18rem
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111827;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(184, 145, 72, .28);
  padding: .85rem 1.2rem;
}

.btn-gold:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  color: #111827
}

.btn-outline-dark-soft {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  padding: .85rem 1.15rem;
  background: rgba(255, 255, 255, .10)
}

.btn-outline-dark-soft:hover {
  background: #fff;
  color: var(--dark)
}

.btn-light-pill {
  border-radius: 999px;
  font-weight: 800;
  padding: .85rem 1.15rem;
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, .25)
}

.btn-light-pill:hover {
  background: #f7f7f7;
  color: var(--dark)
}

.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden
}

.hero .carousel-item {
  height: calc(100vh - var(--topbar-height));
  min-height: 680px;
  background: #061827
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.52) saturate(1.05)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(184, 145, 72, .22), transparent 30%), linear-gradient(90deg, rgba(6, 24, 39, .92), rgba(6, 24, 39, .62), rgba(6, 24, 39, .15))
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 4;
  color: #fff;
  padding-top: var(--nav-height)
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .82rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  font-weight: 800;
  font-size: .86rem;
  color: #f8e6bd
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5.9rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .95;
  margin: 1.15rem 0
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  max-width: 760px;
  color: rgba(255, 255, 255, .86);
  font-weight: 450
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.65rem
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: .78rem .95rem;
  color: #fff;
  font-weight: 750;
  backdrop-filter: blur(10px)
}

.hero-card {
  background: rgba(255, 255, 255, .94);
  color: #172033;
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .38);
}

.hero-card .rating {
  color: #f6b400
}

.hero-card small {
  color: var(--muted)
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0
}

.section {
  padding: 96px 0
}

.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%)
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--dark);
  line-height: 1.02;
  margin-bottom: 1rem
}

.section-kicker {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem
}

.section-desc {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 720px
}

.service-card,
.feature-card,
.staff-card,
.faq-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(2, 8, 23, .06);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.feature-card:hover,
.staff-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 145, 72, .35)
}

.service-card {
  padding: 1.55rem;
  position: relative;
  overflow: hidden
}

.service-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(184, 145, 72, .10)
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #eef4fa, #fff);
  color: var(--gold);
  font-size: 1.55rem;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06)
}

.service-card h3,
.feature-card h3 {
  font-size: 1.18rem;
  font-weight: 850;
  color: var(--dark);
  margin: .95rem 0 .55rem
}

.service-card p,
.feature-card p,
.staff-card p {
  color: var(--muted);
  margin-bottom: 0
}

.stats-row {
  margin-top: -64px;
  position: relative;
  z-index: 7
}

.stats-box {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .07);
  overflow: hidden
}

.stat-item {
  padding: 1.4rem;
  text-align: center;
  border-right: 1px solid rgba(15, 23, 42, .08)
}

.stat-item:last-child {
  border-right: 0
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.04em
}

.stat-label {
  color: var(--muted);
  font-weight: 700
}

.about-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 480px;
  background: #e8eef5
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0
}

.about-floating {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 22px;
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 40px rgba(2, 8, 23, .18);
  max-width: 320px
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0
}

.check-list li {
  display: flex;
  gap: .72rem;
  margin: .82rem 0;
  color: #334155;
  font-weight: 650
}

.check-list i {
  color: var(--gold);
  margin-top: .18rem
}

.feature-card {
  padding: 1.5rem
}

.feature-card .num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(184, 145, 72, .20);
  letter-spacing: -.08em
}

.staff-card {
  overflow: hidden
}

.staff-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  background: #edf2f7
}

.staff-card .staff-body {
  padding: 1.35rem
}

.staff-card h3 {
  font-size: 1.18rem;
  font-weight: 850;
  margin-bottom: .2rem;
  color: var(--dark)
}

.staff-role {
  color: var(--gold);
  font-weight: 800;
  font-size: .93rem;
  margin-bottom: .65rem
}

.cta-band {
  background: linear-gradient(135deg, var(--dark), #0d324d);
  border-radius: 36px;
  color: #fff;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(184, 145, 72, .22)
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1
}

.cta-band p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  max-width: 720px
}

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: .8rem;
  box-shadow: 0 8px 20px rgba(2, 8, 23, .04)
}

.accordion-button {
  font-weight: 850;
  color: var(--dark);
  padding: 1.15rem 1.25rem
}

.accordion-button:not(.collapsed) {
  background: #fff7e6;
  color: var(--dark);
  box-shadow: none
}

.accordion-button:focus {
  box-shadow: 0 0 0 .25rem rgba(184, 145, 72, .20)
}

.accordion-body {
  color: #5b6678;
  line-height: 1.7
}

.map-box {
  border: 0;
  width: 100%;
  min-height: 430px;
  border-radius: 28px;
  box-shadow: var(--shadow)
}

.contact-card {
  padding: 1.35rem
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 850;
  margin-bottom: .35rem;
  color: var(--dark)
}

.contact-card p {
  color: var(--muted);
  margin: 0
}

.footer {
  background: #061827;
  color: #dce5ee;
  padding: 76px 0 28px;
  position: relative;
  overflow: hidden
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(184, 145, 72, .18), transparent 28%);
  pointer-events: none
}

.footer h4 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem
}

.footer a {
  display: block;
  color: #dce5ee;
  opacity: .88;
  margin: .55rem 0;
  transition: .2s ease
}

.footer a:hover {
  opacity: 1;
  color: var(--gold-2);
  transform: translateX(2px)
}

.footer .brand-mini {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 900;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(220, 229, 238, .75);
  font-size: .93rem
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.sticky-actions a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .24)
}

.sticky-whatsapp {
  background: #25d366
}

.sticky-phone {
  background: var(--dark)
}

.sticky-map {
  background: var(--gold)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .65s ease
}

.reveal.show {
  opacity: 1;
  transform: none
}

@media (max-width:991.98px) {
  .top-strip {
    font-size: .78rem;
    padding: .4rem 0
  }

  .top-strip .desktop-only {
    display: none !important
  }

  .hero .carousel-item {
    min-height: 760px
  }

  .hero-content {
    padding-top: 40px;
    text-align: left
  }

  .hero-card {
    margin-top: 2rem
  }

  .stats-row {
    margin-top: 28px
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, .08)
  }

  .stat-item:last-child {
    border-bottom: 0
  }

  .section {
    padding: 70px 0
  }

  .cta-band {
    padding: 2rem;
    border-radius: 28px
  }
}

@media (max-width:575.98px) {
  .hero .carousel-item {
    min-height: 780px
  }

  .hero-badges {
    display: none
  }

  .sticky-actions {
    right: 12px;
    bottom: 12px
  }

  .sticky-actions a {
    width: 52px;
    height: 52px
  }

  .top-strip .container {
    justify-content: center !important
  }
}


/* =========================================================
   ÇELİK OPTİK - MOBİL SAĞ BOŞLUK / RESPONSIVE KOMPLE DÜZELTME
   Bu blok en altta kalmalı. Eski kuralları güvenli şekilde ezer.
   ========================================================= */

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

html {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

.top-strip,
.navbar,
.hero,
.stats-row,
main,
.section,
.footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.navbar .container,
.top-strip .container,
.section .container,
.stats-row .container,
.footer .container {
  min-width: 0;
}

.navbar-brand {
  min-width: 0;
}

.navbar-brand img {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.footer a,
.footer p,
.contact-card p,
.section-desc,
.hero p,
.accordion-body {
  overflow-wrap: anywhere;
  word-break: normal;
}

.sticky-actions {
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
}

/* Tablet ve küçük ekran düzeltmesi */
@media (max-width: 991.98px) {
  .navbar {
    min-height: 72px;
  }

  .navbar .container {
    width: 100%;
    max-width: 100%;
  }

  .navbar-collapse {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-content {
    padding-top: 32px;
  }

  .footer {
    padding-top: 56px;
  }
}

/* Telefon ekranlarında sağ boşluk kesin düzeltme */
@media (max-width: 575.98px) {
  :root {
    --nav-height: 72px;
  }

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

  /* Bazı mobil önizlemelerde oluşan sağ/sol gri boşluğu kapatır */
  .top-strip,
  .navbar,
  .hero,
  .stats-row,
  main,
  .section,
  .footer {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .top-strip {
    min-height: auto;
    padding: 7px 0;
    font-size: .76rem;
  }

  .top-strip .container {
    justify-content: center !important;
    text-align: center;
    gap: 6px !important;
    padding-left: 12px;
    padding-right: 12px;
  }

  .top-strip a {
    line-height: 1.25;
  }

  .navbar {
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar .container,
  .section .container,
  .stats-row .container,
  .footer .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar-brand img {
    max-width: 170px;
    max-height: 52px;
  }

  .navbar-toggler {
    margin-left: auto;
    margin-right: 0;
    padding: 8px 10px;
  }

  .navbar-collapse {
    width: 100%;
    max-width: 100%;
    padding-top: 12px;
  }

  .navbar-nav {
    width: 100%;
  }

  .hero .carousel-item {
  
    height: 900px;
  }

  .hero-content {
    position: absolute;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .hero p.lead {
    font-size: .98rem;
  }

  .hero-card {
    margin-top: 1.2rem;
    margin-bottom: 120px;
  }

  .stats-row {
    margin-top: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
    letter-spacing: -.035em;
  }

  .service-card,
  .feature-card,
  .staff-card,
  .contact-card {
    border-radius: 20px;
  }

  .staff-card img {
    height: 340px;
  }

  .cta-band {
    padding: 1.55rem;
    border-radius: 24px;
  }

  .map-box {
    min-height: 330px;
    border-radius: 22px;
  }

  .footer {
    padding: 46px 0 22px;
  }

  .footer .row {
    --bs-gutter-x: 1.15rem;
    --bs-gutter-y: 2rem;
    margin-left: 0;
    margin-right: 0;
  }

  .footer .row > * {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .footer h4 {
    font-size: 1.35rem;
  }

  .footer a {
    font-size: .98rem;
    line-height: 1.45;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    font-size: .85rem;
  }

  .sticky-actions {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: .55rem;
  }

  .sticky-actions a {
    width: 48px;
    height: 48px;
    font-size: 1.22rem;
  }
}

/* Çok dar telefonlar */
@media (max-width: 380px) {
  .navbar-brand img {
    max-width: 150px;
  }

  .navbar .container,
  .section .container,
  .stats-row .container,
  .footer .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer h4 {
    font-size: 1.22rem;
  }

  .footer a {
    font-size: .94rem;
  }

  .sticky-actions a {
    width: 44px;
    height: 44px;
    font-size: 1.12rem;
  }
}
 
.alt {
  height: auto;
}