:root {
  --bg: #f6f7fb;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;

  /* LOGO UYUMLU ALTIN TONLAR */
  --brand: #b8892f; /* gold */
  --brand2: #e2c16b; /* light gold */
  --brand3: #7a5a1a; /* deep gold */

  --shadow: 0 16px 40px rgba(17, 24, 39, 0.1);
  --shadow2: 0 12px 26px rgba(17, 24, 39, 0.08);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(
      900px 420px at 15% 10%,
      rgba(226, 193, 107, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 85% 12%,
      rgba(184, 137, 47, 0.14),
      transparent 60%
    ),
    var(--bg);
  color: var(--ink);
}

/* Top bar */
.topbar {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}
.topbar a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.topbar a:hover {
  color: #fff;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar .nav-link {
  color: #111827;
}
.navbar .nav-link:hover {
  color: var(--brand);
}

/* ✅ NAVBAR LOGO BOOST */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  height: 72px; /* navbar yüksekliğiyle uyumlu */
}
.nav-logo {
  height: 72px;
  width: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 9px 6px 5px rgba(0, 0, 0, 0.18);
  object-fit: contain;
}
@media (max-width: 992px) {
  .nav-logo {
    height: 52px;
  }
}
/* (İsteğe bağlı) container padding azaltma */
.navbar .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Section */
section {
  padding: 30px 0;
}
.section-title {
  font-weight: 850;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  max-width: 68ch;
}

/* Cards */
.paper {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

/* HERO SLIDER */
.hero-wrap {
  padding-top: 120px;
}
.hero-card {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.hero-card.full-width {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.hero-visual {
  min-height: 460px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0) 76%
  );
}
.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 38px;
  color: #fff;
  z-index: 2;
}
.hero-copy h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 56ch;
}
.hero-card .carousel-control-prev,
.hero-card .carousel-control-next {
  width: 8%;
  opacity: 1;
  z-index: 6;
}
.hero-card .carousel-control-prev {
  left: 0;
}
.hero-card .carousel-control-next {
  right: 0;
}
.hero-features {
  margin-top: -70px;
  padding-top: 0;
  padding-bottom: 40px;
  position: relative;
  z-index: 5;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-media {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0b4b70;
  color: #fff;
  font-size: 22px;
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  box-shadow: 0 14px 26px rgba(11, 18, 32, 0.28);
  border: 3px solid #fff;
}
.feature-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 34px;
  margin-bottom: 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 600;
  font-size: 0.92rem;
}
.btn-brand {
  border: 0;
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  font-weight: 800;
  color: #071018;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.2);
}
.btn-ghost {
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* SERVICES like screenshot */
.service-card {
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid #e7e8ee;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  padding: 18px 18px;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand2);
}
.service-card--media {
  padding: 0;
  overflow: hidden;
}
.service-media {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-media-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111827;
  font-size: 20px;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.18);
  transform: translateY(6px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}
.service-card--media .service-body {
  padding: 14px 16px 16px;
}
.service-card--media .service-title {
  margin-bottom: 6px;
}
.service-card--media:hover .service-media {
  transform: scale(1.08);
}
.service-card--media:hover .service-media::after {
  opacity: 1;
}
.service-card--media:hover .service-media-icon {
  transform: translateY(0);
  background: var(--brand2);
  color: #1a1206;
}
.service-title {
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}
.service-ico {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid var(--line);
  color: #111827;
  font-size: 15px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.service-card:hover .service-ico {
  background: var(--brand2);
  color: #1a1206;
  border-color: transparent;
}
.service-desc {
  color: var(--muted);
  margin: 0;
}

/* PORTFOLIO slider (2 rows per slide) */
.portfolio-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.1);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  height: 100%;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}
.pimg {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ptag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #111827;
}
.price {
  font-weight: 950;
  letter-spacing: -0.02em;
}
.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

footer {
  border-top: 1px solid var(--line);
  background: #ffffffcc;
  backdrop-filter: blur(10px);
}
/* MODERN MENU */
.modern-menu .modern-link {
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: #111827;
  transition: all 0.2s ease;
}

.modern-menu .modern-link:hover {
  background: rgba(14, 165, 233, 0.12);
  color: var(--brand);
}

/* CTA BUTTON (İletişim) */
.menu-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff !important;
  font-weight: 800;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.25);
  border: none;
}

.menu-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.35);
}

/* Mobile uyum */
@media (max-width: 992px) {
  .modern-menu {
    gap: 8px;
    padding-top: 12px;
  }
  .menu-cta {
    width: 100%;
    text-align: center;
  }
}
