﻿/* ============================================================
   SÜLEYMANPAŞA TAKS — MAIN STYLESHEET
   Modern, conversion-focused, mobile-first
   ============================================================ */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:   #FFD600;
  --yellow-d: #F5C800;
  --dark:     #0D0D0D;
  --dark2:    #1A1A1A;
  --dark3:    #242424;
  --gray:     #6B7280;
  --light:    #F9FAFB;
  --white:    #FFFFFF;
  --green:    #25D366;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 12px 48px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Utility ── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: .5rem auto 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(13,13,13,.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.navbar-brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff !important;
}
.navbar-brand span { color: var(--yellow); }
.navbar .nav-link {
  color: rgba(255,255,255,.75) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .45rem .75rem !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--yellow) !important;
  background: rgba(255,214,0,.08);
}
.navbar .dropdown-menu {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  min-width: 240px;
}
.navbar .dropdown-item {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  border-radius: 8px;
  padding: .5rem .75rem;
  transition: background .15s, color .15s;
}
.navbar .dropdown-item:hover {
  background: rgba(255,214,0,.12);
  color: var(--yellow);
}
.navbar .dropdown-divider { border-color: rgba(255,255,255,.08); }
.dropdown-menu-cols { max-height: 400px; overflow-y: auto; }
.dropdown-menu-cols::-webkit-scrollbar { width: 4px; }
.dropdown-menu-cols::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px; }

/* Navbar CTA butonları */
.btn-nav-wa {
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  font-size: .85rem;
  padding: .45rem 1rem;
  border-radius: 8px;
  border: none;
  transition: opacity .2s, transform .15s;
}
.btn-nav-wa:hover { opacity: .9; transform: translateY(-1px); color: #fff !important; }

.btn-nav-phone {
  background: var(--yellow);
  color: #000 !important;
  font-weight: 700;
  font-size: .85rem;
  padding: .45rem 1rem;
  border-radius: 8px;
  border: none;
  transition: opacity .2s, transform .15s;
}
.btn-nav-phone:hover { opacity: .9; transform: translateY(-1px); color: #000 !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Diagonal sarı şerit */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .07;
  pointer-events: none;
}

/* Grid desen */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,214,0,.12);
  border: 1px solid rgba(255,214,0,.3);
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: fadeUp .6s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  animation: fadeUp .6s .1s ease both;
}
.hero-title .accent { color: var(--yellow); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeUp .6s .2s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .6s .3s ease both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--yellow);
  color: #000 !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 32px rgba(255,214,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,214,0,.5);
  color: #000 !important;
}

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(37,211,102,.15);
  border: 1.5px solid rgba(37,211,102,.4);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}
.btn-hero-wa:hover {
  background: rgba(37,211,102,.25);
  transform: translateY(-3px);
  color: #fff !important;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeUp .6s .4s ease both;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero sağ kart */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  animation: fadeUp .6s .2s ease both;
}
.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-card .btn-block {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: transform .2s, opacity .2s;
  text-decoration: none;
}
.hero-card .btn-block:hover { transform: translateY(-2px); opacity: .92; }
.hero-card .btn-call { background: var(--yellow); color: #000 !important; }
.hero-card .btn-wa   { background: var(--green);  color: #fff !important; margin-top: .75rem; }
.hero-card .btn-block i { font-size: 1.2rem; }
.hero-card-info {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-card-info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .5rem;
}
.hero-card-info-item i { color: var(--yellow); font-size: 1rem; }

/* ============================================================
   SECTION GENEL
   ============================================================ */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ============================================================
   HZMETLER
   ============================================================ */
.services-section { background: var(--light); }

.service-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,214,0,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--yellow-d);
  transition: background .25s;
}
.service-card:hover .service-icon-wrap { background: var(--yellow); color: #000; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--dark); }
.service-card p  { font-size: .88rem; color: var(--gray); margin: 0; }

/* ============================================================
   NEDEN BZ
   ============================================================ */
.why-section { background: #fff; }

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #E5E7EB;
  transition: box-shadow .2s, border-color .2s;
  background: #fff;
}
.why-item:hover { box-shadow: var(--shadow); border-color: var(--yellow); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-icon.yellow { background: rgba(255,214,0,.12); color: #B8860B; }
.why-icon.blue   { background: rgba(59,130,246,.1);  color: #2563EB; }
.why-icon.green  { background: rgba(34,197,94,.1);   color: #16A34A; }
.why-icon.red    { background: rgba(239,68,68,.1);   color: #DC2626; }
.why-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; color: var(--dark); }
.why-item p  { font-size: .85rem; color: var(--gray); margin: 0; }

/* CTA kutusu */
.cta-box-dark {
  background: var(--dark2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-box-dark h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.cta-box-dark p  { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 1.5rem; }

/* ============================================================
   YORUMLAR
   ============================================================ */
.reviews-section { background: var(--light); }

.review-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #F59E0B; font-size: .9rem; margin-bottom: .75rem; }
.review-text { font-size: .92rem; color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .9rem; color: var(--dark); }

/* ============================================================
   HARTA
   ============================================================ */
.map-section { background: #fff; }
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #E5E7EB;
}

/* ============================================================
   KAPANIŞ CTA
   ============================================================ */
.cta-section {
  background: var(--yellow);
  padding: 5rem 0;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #000;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.cta-section p { color: rgba(0,0,0,.6); font-size: 1.1rem; margin-bottom: 2rem; }
.btn-cta-dark {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #000; color: #fff !important;
  font-weight: 800; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 12px;
  transition: opacity .2s, transform .2s;
}
.btn-cta-dark:hover { opacity: .85; transform: translateY(-2px); color: #fff !important; }
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--green); color: #fff !important;
  font-weight: 800; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 12px;
  transition: opacity .2s, transform .2s;
}
.btn-cta-wa:hover { opacity: .85; transform: translateY(-2px); color: #fff !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}
.site-footer h5, .site-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.site-footer a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color .2s;
  display: block;
  margin-bottom: .5rem;
}
.site-footer a:hover { color: var(--yellow); }
.footer-brand { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.footer-brand span { color: var(--yellow); }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2rem 0 1.5rem; }
.footer-bottom { font-size: .82rem; color: rgba(255,255,255,.35); }

/* ============================================================
   STICKY BUTONLAR
   ============================================================ */
.sticky-buttons {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.sticky-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.sticky-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(0,0,0,.4); color: #fff; }
.sticky-wa    { background: var(--green); }
.sticky-phone { background: var(--yellow); color: #000 !important; }
.sticky-phone:hover { color: #000 !important; }

.sticky-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: .4;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .4; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ============================================================
   HZMET SAYFASI
   ============================================================ */
.hizmet-hero {
  background: var(--dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hizmet-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hizmet-hero .container { position: relative; z-index: 1; }

.hizmet-icerik h2 {
  font-size: 1.45rem; font-weight: 800;
  margin-top: 2.5rem; margin-bottom: .9rem;
  color: var(--dark);
  padding-left: 1rem;
  border-left: 4px solid var(--yellow);
}
.hizmet-icerik h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-top: 1.75rem; margin-bottom: .6rem;
  color: #1F2937;
}
.hizmet-icerik p  { line-height: 1.85; color: #374151; margin-bottom: 1rem; }
.hizmet-icerik ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.hizmet-icerik ul li { margin-bottom: .45rem; color: #374151; line-height: 1.75; }
.hizmet-icerik ul li::marker { color: var(--yellow-d); }

.sticky-sidebar { position: sticky; top: 84px; }

/* ============================================================
   KURUMSAL / BLOG / LETŞM SAYFASI
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff; letter-spacing: -.03em; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 1rem; margin-top: .5rem; }

/* Blog kartları */
.blog-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-body { padding: 1.5rem; }
.blog-card h2 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; line-height: 1.4; }
.blog-card h2 a { color: inherit; }
.blog-card h2 a:hover { color: #B8860B; }
.blog-card p { font-size: .88rem; color: var(--gray); margin-bottom: 1rem; }
.blog-card-footer { padding: 1rem 1.5rem; border-top: 1px solid #F3F4F6; display: flex; justify-content: space-between; font-size: .8rem; color: var(--gray); }

/* letişim */
.contact-icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ============================================================
   ANMASYONLAR
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-wrap {
  background: var(--light);
  border-bottom: 1px solid #E5E7EB;
  padding: .6rem 0;
}
.breadcrumb { margin: 0; font-size: .82rem; }
.breadcrumb-item a { color: var(--gray); }
.breadcrumb-item a:hover { color: #B8860B; }
.breadcrumb-item.active { color: var(--dark); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: #D1D5DB; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar-collapse { padding: 1rem 0; }
  .navbar .nav-link { padding: .5rem 0 !important; }
  .navbar .dropdown-menu { background: rgba(255,255,255,.05); border: none; box-shadow: none; padding-left: 1rem; }
  .navbar .dropdown-item { color: rgba(255,255,255,.7); }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 767px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-wa { justify-content: center; }
  .cta-section { padding: 3.5rem 0; }
}

@media (max-width: 575px) {
  .sticky-btn { width: 52px; height: 52px; font-size: 1.35rem; }
  .hero-section { min-height: 100svh; }
}
/* ── Outfit: Başlıklar için ── */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .navbar-brand,
.hero-card-title, .footer-brand {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
}

/* Başlık letter-spacing ince ayar */
h1, h2 { letter-spacing: -.025em; }
h3, h4  { letter-spacing: -.01em; }

/* Navbar brand biraz daha ağır */
.navbar-brand { font-weight: 800; letter-spacing: -.03em; }

/* Hero title daha güçlü */
.hero-title { letter-spacing: -.04em; line-height: 1.05; }

/* Body text biraz daha rahat */
body { font-size: 15.5px; line-height: 1.65; }
