:root {
  --primary: #fbbf24;
  --primary-dark: #d97706;
  --bg-dark: #020617;
  --bg-section: #0b1120;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #22c55e;
  --max-width: 1100px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(15,23,42,0.9);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1d2536 0, #020617 50%, #020617 100%);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Top Bar */
.top-bar {
  background: rgba(15,23,42,0.95);
  border-bottom: 1px solid rgba(148,163,184,0.2);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fef9c3, #facc15, #b45309);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 0 0 2px rgba(15,23,42,0.8),
              0 10px 25px rgba(234,179,8,0.4);
}

.logo-text-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.logo-text-main {
  font-size: 0.95rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--text-muted);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav a:hover {
  color: #f9fafb;
}

.nav a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(250,204,21,0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.2s ease;
  color: #111827;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(250,204,21,0.45);
  background: linear-gradient(135deg, #fde047, var(--primary-dark));
}

.btn-outline {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-weight: 500;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(148,163,184,0.6);
  cursor: pointer;
  background: rgba(15,23,42,0.85);
  color: var(--text-main);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(15,23,42,0.95);
  color: #f9fafb;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(148,163,184,0.5);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
  background: rgba(15,23,42,0.9);
  color: var(--text-main);
  font-size: 0.85rem;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.7rem 1rem 1rem;
  font-size: 0.9rem;
  background: rgba(15,23,42,0.97);
  border-top: 1px solid rgba(148,163,184,0.3);
}

.nav-mobile a {
  color: var(--text-muted);
}

/* Hero */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1rem 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(52,211,153,0.7);
  color: #bbf7d0;
  background: radial-gradient(circle at 0 0, rgba(22,163,74,0.4), transparent 65%);
}

.hero-heading {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

.hero-heading span {
  color: var(--primary);
  text-shadow: 0 0 25px rgba(250,204,21,0.6);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 32rem;
}

.hero-cta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.hero-info {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-info strong {
  color: #e5e7eb;
}

.hero-phone {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f9fafb;
}

.hero-phone a {
  color: inherit;
  text-decoration: none;
}

.hero-phone a:hover {
  text-decoration: underline;
}

/* Hero Card */
.hero-card {
  background: radial-gradient(circle at top, #111827, #020617 60%);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148,163,184,0.4);
  position: relative;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 20%, rgba(250,204,21,0.09), transparent 60%),
    radial-gradient(circle at 80% 0, rgba(59,130,246,0.1), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-car-title {
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.hero-car-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.chip {
  font-size: 0.7rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  color: var(--text-muted);
  background: rgba(15,23,42,0.85);
}

.chip.hot {
  border-color: rgba(250,204,21,0.8);
  color: #fef9c3;
  background: rgba(250,204,21,0.08);
}

.hero-card-footer {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,0.9);
}

.hero-car-mock {
  margin-top: 0.9rem;
  border-radius: 18px;
  padding: 0.8rem;
  background: radial-gradient(circle at 10% 0, rgba(250,204,21,0.16), #020617);
  border: 1px solid rgba(30,64,175,0.7);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mock-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.mock-label {
  color: var(--text-muted);
}

.mock-value {
  font-weight: 600;
  color: #f9fafb;
}

.mock-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.7rem;
}

.mock-pill {
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px dashed rgba(148,163,184,0.6);
  color: var(--text-muted);
}

/* Sections */
section {
  margin-top: 3.5rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 34rem;
}

/* Fiyatlar */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 1rem;
}

.price-card {
  background: rgba(15,23,42,0.9);
  border-radius: var(--radius-lg);
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(148,163,184,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.price-route {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-tag {
  font-weight: 700;
  color: var(--primary);
}

.price-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cta-bar {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Ayrıcalıklar */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 1rem;
}

.perk-card {
  background: rgba(15,23,42,0.9);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(55,65,81,0.8);
  font-size: 0.86rem;
}

.perk-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.perk-icon {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* Hizmetler */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1rem;
}

.service-card {
  background: radial-gradient(circle at 0 0, rgba(59,130,246,0.1), rgba(15,23,42,0.9));
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(55,65,81,0.9);
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.service-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.service-tag {
  font-size: 0.7rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.6);
  color: var(--text-muted);
}

.service-footer {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Yorumlar */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1rem;
}

.testimonial-card {
  background: rgba(15,23,42,0.9);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(55,65,81,0.9);
  font-size: 0.86rem;
  position: relative;
  overflow: hidden;
}

.testimonial-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15,23,42,1);
  border: 1px solid rgba(148,163,184,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.testimonial-text {
  font-size: 0.84rem;
  color: #e5e7eb;
}

/* Galeri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 0.8rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(55,65,81,0.9);
  background: #020617;
  min-height: 110px;
  position: relative;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.5rem;
  text-align: center;
}

/* İletişim/CTA */
.contact-box {
  background: radial-gradient(circle at 0 0, rgba(34,197,94,0.1), rgba(15,23,42,0.95));
  border-radius: 26px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(148,163,184,0.7);
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0,2.3fr) minmax(0,2fr);
  gap: 1.5rem;
  align-items: center;
}

.contact-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 30rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.contact-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.contact-right {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-phone {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f9fafb;
  margin-bottom: 0.3rem;
}

.contact-phone a {
  color: inherit;
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  border-top: 1px solid rgba(55,65,81,0.9);
  margin-top: 2.8rem;
  padding-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  align-items: center;
}

/* Mobile bottom bar */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,23,42,0.97);
  border-top: 1px solid rgba(30,64,175,0.9);
  padding: 0.5rem 0.75rem;
  display: none;
  z-index: 40;
}

.mobile-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.mobile-cta-inner a {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(148,163,184,0.8);
  font-weight: 500;
  font-size: 0.85rem;
  background: rgba(15,23,42,0.9);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }

  .contact-box {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  main {
    padding-bottom: 4.5rem;
  }

  .mobile-cta-bar {
    display: block;
  }

  .hero-heading {
    font-size: 1.7rem;
  }

  .hero-card {
    margin-top: 0.3rem;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 1rem;
  }

  .section-title {
    font-size: 1.15rem;
  }
}
/* Kopyalamaya karşı metin seçimini kapat */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

